pytti-tools / pytti-notebook

Start here
https://pytti-tools.github.io/pytti-book/intro.html
MIT License
110 stars 25 forks source link

Add cell for consuming parameter dict from old pytti colab #16

Closed dmarx closed 2 years ago

dmarx commented 2 years ago

something like this:

# duct tape to permit posting raw JSON into the cell and interpreting it as python
false=False
true=True
null=None

colab_dict = {}

# User populates this value
MY_SETTINGS ={}

colab_dict.update(MY_SETTINGS)
cfg = OmegaConf.create(colab_dict)