Last active
August 19, 2017 11:43
-
-
Save andrewschreiber/ef877460f2a25cf193f3c93a34823754 to your computer and use it in GitHub Desktop.
Example Hyperdash expanded SDK
This file contains hidden or 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
# From CLI: | |
# hyperdash run -n 'mymodel' python mymodel.py | |
import hyperdash as hd | |
learning_rate = hd.param('learning rate', default=0.01) # Setup hyperparameters | |
# Model code here | |
hd.metric('loss', training_loss) # Record a metric | |
# Params and metrics are pretty printed at end of experiment | |
richardartoul
commented
Aug 19, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment