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

Initial prototype for wandb sweep #1249

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
40 changes: 40 additions & 0 deletions ivadomed/scripts/train_wandb_sweep_hyperparam.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#!/usr/bin/env python
"""
Launcher for training with the possibility to specify hyperparameters. This script is to be used by wandb-sweep.
https://docs.wandb.ai/guides/sweeps

Input: template JSON ivadomed config file, which will be edited by this script to insert the random parameters.

Resumption of interrupted runs with
python train_wandb_sweep_hyperparam.py --resume

"""

import sys

import wandb
from wandb.keras import WandbCallback


defaults = dict(
dropout=0.2,
hidden_layer_size=128,
layer_1_size=16,
layer_2_size=32,
learn_rate=0.01,
decay=1e-6,
momentum=0.9,
epochs=27,
)

resume = sys.argv[-1] == "--resume"
wandb.init(config=defaults, resume=resume)

# This is where the parameters are read from the YAML file
config = wandb.config

# Build ivadomed's config file based on the generated parameters
# TODO

# Call to ivadomed
ivadomed.main()
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

need to add input params there