-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rework BareConfig to allow for easier loading and parsing
- Loading branch information
1 parent
16c8154
commit 667b2c0
Showing
13 changed files
with
134 additions
and
234 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"cluster": { | ||
"orchestrator": { | ||
"wait_for_clients": true, | ||
"service": "fl-server.test.svc.cluster.local", | ||
"nic": "eth0" | ||
}, | ||
"client": { | ||
"prefix": "client", | ||
"tensorboard_active": true | ||
} | ||
}, | ||
"execution_config": { | ||
"experiment_prefix": "cloud_experiment", | ||
"tensorboard_active": true, | ||
"cuda": false, | ||
"net": { | ||
"save_model": false, | ||
"save_temp_model": false, | ||
"save_epoch_interval": 1, | ||
"save_model_path": "models", | ||
"epoch_save_start_suffix": "start", | ||
"epoch_save_end_suffix": "end" | ||
}, | ||
"reproducibility": { | ||
"torch_seed": 42, | ||
"arrival_seed": 123 | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.