Skip to content

Instantly share code, notes, and snippets.

@jasonge27
Created September 28, 2018 23:41
Show Gist options
  • Save jasonge27/7b0915de05a2611c1b0370016656ed24 to your computer and use it in GitHub Desktop.
Save jasonge27/7b0915de05a2611c1b0370016656ed24 to your computer and use it in GitHub Desktop.
version: 1
experiments:
lr_search:
image: tensorflow/tensorflow:1.11.0
parameters:
lr: '0.2-0.5'
sampling: random # | grid | bayesian
command:
python train.py --lr {{lr}}
arch_search:
image: tensorflow/tensorflow:1.11.0
parameters:
lr: '0.2'
arch: ['cnn', 'lstm', 'rnn']
samples: 3
command:
python train.py --lr {{lr}} --arch {{arch}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment