Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

【hydra No.19】改造 phylstm #579

Merged
merged 10 commits into from
Oct 20, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix
  • Loading branch information
co63oc committed Oct 19, 2023
commit 744235fde88649313051b4ffcf729c66a05d8798
16 changes: 12 additions & 4 deletions examples/phylstm/conf/phylstm2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ hydra:
job:
name: ${mode} # name of logfile
chdir: false # keep current working direcotry unchaned
config:
override_dirname:
exclude_keys:
- TRAIN.checkpoint_path
- TRAIN.pretrained_model_path
- EVAL.pretrained_model_path
- mode
- output_dir
- log_freq
sweep:
# output directory for multirun
dir: ${hydra.run.dir}
Expand All @@ -21,10 +30,9 @@ DATA_FILE_PATH: data_boucwen.mat

# model settings
MODEL:
phylstm2_net:
input_size: 1
hidden_size: 100
model_type: 2
input_size: 1
hidden_size: 100
model_type: 2

# training settings
TRAIN:
Expand Down
16 changes: 12 additions & 4 deletions examples/phylstm/conf/phylstm3.yaml
co63oc marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ hydra:
job:
name: ${mode} # name of logfile
chdir: false # keep current working direcotry unchaned
co63oc marked this conversation as resolved.
Show resolved Hide resolved
config:
override_dirname:
exclude_keys:
- TRAIN.checkpoint_path
- TRAIN.pretrained_model_path
- EVAL.pretrained_model_path
- mode
- output_dir
- log_freq
sweep:
# output directory for multirun
dir: ${hydra.run.dir}
Expand All @@ -21,10 +30,9 @@ DATA_FILE_PATH: data_boucwen.mat

# model settings
MODEL:
phylstm3_net:
input_size: 1
hidden_size: 100
model_type: 3
input_size: 1
hidden_size: 100
model_type: 3

# training settings
TRAIN:
Expand Down