Hi, I have the following scenario: I’m working with a Computer Vision Deep Learning framework for which I basically can write a config file only and train. This config file is in python. I would like to input this config file as parameter dependency (under params in dvc.yaml) such that I have one place where I can change the parameters. If I don’t I need to maintain two places because some things I have to set in the config.py
file…
I know I can specify the config.py
as a params file. However, I have different architectures with potentially different parameters I would like to change. I made a stage using templating that switches the config.py
based on the architecture name. Is it possible to create a deps.yaml
(or any file) that contains a list of the keys present in config.py
that should be considered parameters and ignore all the other valid potential parameters in config.py
?
Thanks!