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:28:50 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
fcec987b2179d195be4f6f410a5139b0dc78d7f1
fcec987b
1 parent
27446096
Upload new file
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
56 additions
and
0 deletions
2DCNN/src/shell/table1.sh
2DCNN/src/shell/table1.sh
0 → 100644
View file @
fcec987
#!/usr/bin/env sh
# DEFINE
DATA_ROOT_PATH
=
""
DEVICE
=
"cuda"
################ Table 1 #######################################################
#### commands to train the model with full training data
################################################################################
# 3D-CNN
python3 -m src.scripts.main -c config/config.py
\
--exp_name 3d_cnn
\
-r result/3d_cnn/
\
--device
$DEVICE
--wandb.use 0
\
--model.arch.file src/arch/brain_age_3d.py
\
--data.root_path
"
$DATA_ROOT_PATH
"
# 2D-slice-lstm
python3 -m src.scripts.main -c config/config.py
\
--exp_name 2d_slice_lstm
\
-r result/2d_slice_lstm/
\
--device
$DEVICE
--wandb.use 0
\
--model.arch.file src/arch/brain_age_slice_lstm.py
\
--data.root_path
"
$DATA_ROOT_PATH
"
\
--train.gradient_norm_clip 1
# 2D-slice-attention
python3 -m src.scripts.main -c config/config.py
\
--exp_name 2d_slice_attention
\
-r result/2d_slice_attention
\
--device
$DEVICE
--wandb.use 0
\
--model.arch.file src/arch/brain_age_slice_set.py
\
--model.arch.attn_dim 32 --model.arch.attn_num_heads 1
\
--model.arch.attn_drop 1 --model.arch.agg_fn
"attention"
\
--data.root_path
"
$DATA_ROOT_PATH
"
# 2D-slice-mean
python3 -m src.scripts.main -c config/config.py
\
--exp_name 2d_slice_mean
\
-r result/2d_slice_mean
\
--device
$DEVICE
--wandb.use 0
\
--model.arch.file src/arch/brain_age_slice_set.py
\
--model.arch.attn_dim 32 --model.arch.attn_num_heads 1
\
--model.arch.attn_drop 1 --model.arch.agg_fn
"mean"
\
--data.root_path
"
$DATA_ROOT_PATH
"
# 2D-slice-max
python3 -m src.scripts.main -c config/config.py
\
--exp_name 2d_slice_max
\
-r result/2d_slice_max
\
--device
$DEVICE
--wandb.use 0
\
--model.arch.file src/arch/brain_age_slice_set.py
\
--model.arch.attn_dim 32 --model.arch.attn_num_heads 1
\
--model.arch.attn_drop 1 --model.arch.agg_fn
"max"
\
--data.root_path
"
$DATA_ROOT_PATH
"
Please
register
or
login
to post a comment