Hey team!
Not a kedro question per se. What is the go to tooling for configuration management in data science projects outside of kedro (with OmegaConf)? Is
Hydra the most popular choice?
I am looking at the following features:
1. Global configs
2. Clear patterns for config type
a. Static vs Dynamic
b. Global vs Granular
c. Constant vs Overridable
3. Param overriding with Globals
4. Param overriding within config file
5. Support for environment variables
6. Storing environment wise configs - DEV / STG / UAT / PROD etc
7. Interpolation with basic text concat
8. (Optional) Python function as resolvers in config (OmegaConf)
9. Config compilation artifact (i.e. I want to see how my config looks after resolving)
10. Invoking python scripts with arbitrary / alternate config paths
11. Invoking python scripts with specific param value
Most of the above features are already there in kedro, but I need this functionality outside kedro. Eager to here the community's recommendation here! 🙂