Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hyunji
/
A-Performance-Evaluation-of-CNN-for-Brain-Age-Prediction-Using-Structural-MRI-Data
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Hyunji
2021-12-20 04:18:54 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
05246fb572269e35e9863c76db99cdf6d592fd65
05246fb5
1 parent
ead4244d
config
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
45 additions
and
0 deletions
2DCNN/config/config.py
2DCNN/config/config.py
0 → 100644
View file @
05246fb
config
=
{
"debug"
:
False
,
"seed"
:
0
,
"wandb.use"
:
False
,
"wandb.run_id"
:
None
,
"project"
:
"brain-age"
,
"result_folder"
:
"result"
,
"mode"
:
[
"test"
,
"train"
],
"data.name"
:
"brain_age"
,
"data.root_path"
:
"**data root path"
,
"data.train_csv"
:
"**data train csv"
,
"data.test_csv"
:
"**data test csv"
,
"data.valid_csv"
:
"**data valid csv"
,
"data.train_num_sample"
:
-
1
,
"data.frame_keep_style"
:
"random"
,
"data.frame_keep_fraction"
:
1
,
"data.frame_dim"
:
1
,
"data.impute"
:
"drop"
,
"model.name"
:
"regression"
,
"model.arch.file"
:
"src/arch/brain_age_3d.py"
,
"model.arch.lstm_feat_dim"
:
2
,
"model.arch.lstm_latent_dim"
:
128
,
"model.arch.attn_dim"
:
32
,
"model.arch.attn_num_heads"
:
1
,
"model.arch.attn_drop"
:
False
,
"model.arch.agg_fn"
:
"attention"
,
"train.batch_size"
:
8
,
"train.patience"
:
100
,
"train.max_epoch"
:
100
,
"train.optimizer"
:
"adam"
,
"train.lr"
:
1e-4
,
"train.weight_decay"
:
1e-4
,
"train.save_strategy"
:
[
"best"
,
"last"
],
"train.log_every"
:
100
,
"train.stopping_criteria"
:
"loss"
,
"train.stopping_criteria_direction"
:
"lower"
,
"train.gradient_norm_clip"
:
-
1
,
"test.batch_size"
:
8
,
"test.eval_model"
:
"best"
,
}
Please
register
or
login
to post a comment