You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Config files for machine learning projects can often get quite long (data paths, model config, training hyper-parameters). In past projects, I have used frameworks like Hydra to compose smaller config files. This also allows swapping out individual components. Does Tango provide a way to compose config files?
The text was updated successfully, but these errors were encountered:
I'm not familiar with Hydra but that looks interesting.
JSONNET does allow sourcing from other JSONNET files. So I often make a common.jsonnet file where I put step definitions and hyperparameaters that I use in other configs, and source those into the other configs. Does that solve your use case?
Could you share an example of how that works in jsonnet? Also, is there something similar for yaml? I prefer yaml slightly because it has less syntax/brackets etc cluttering the file :)
Config files for machine learning projects can often get quite long (data paths, model config, training hyper-parameters). In past projects, I have used frameworks like Hydra to compose smaller config files. This also allows swapping out individual components. Does Tango provide a way to compose config files?
The text was updated successfully, but these errors were encountered: