hydra-article-code icon indicating copy to clipboard operation
hydra-article-code copied to clipboard

hydra-article-code

This repo contains a few examples from Hydra — A fresh look at configuration for machine learning projects.

Check out the repo, and install hydra with pip install hydra-core.

You can then run these examples.

See the Hydra website for more info.

$ python basic/my_app.py 
dataset:
  name: imagenet
  path: /datasets/imagenet

$ python composition/my_app.py 
dataset:
  name: cifar10
  path: /datasets/cifar10

$ python composition2/my_app.py 
dataset:
  name: cifar10
  path: /datasets/cifar10
optimizer:
  beta: 0.01
  lr: 0.1
  type: adam