Skip to content

Commit

Permalink
Add replications to jinja templates to allow for setting correct logg…
Browse files Browse the repository at this point in the history
…ing directory
  • Loading branch information
JMGaljaard committed Sep 6, 2022
1 parent 30adc09 commit d43d1fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion experiments/dist_node.jinja.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
replication: {{ replication }}
batch_size: {{ task.get_hyper_param(tpe, 'bs') }}
test_batch_size: {{ task.get_hyper_param(tpe, 'test_bs') }}
cuda: {{ task.get_learn_param('cuda') }}
Expand All @@ -13,4 +14,3 @@ learning_rate: {{ task.get_optimizer_param(tpe, 'lr') }}
learning_rate_decay: {{ task.get_hyper_param(tpe, 'lr_decay') }}
seed: {{ task.get_net_param('seed') }}
loss: {{ task.get_net_param('loss_function').value }}

1 change: 1 addition & 0 deletions experiments/node.jinja.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
replication: {{ replication }}
batch_size: {{ task.get_hyper_param(tpe, 'bs') }}
test_batch_size: {{ task.get_hyper_param(tpe, 'test_bs') }}
cuda: {{ task.get_learn_param('cuda') }}
Expand Down

0 comments on commit d43d1fc

Please sign in to comment.