Generate a callable method `growth_model` of the base model
In order to transfer config
input to the method via __main__.py
, growth_models
needs to be callable.
__main__.py
from growth_model.config import load_config
from growth_model import growth_model_basic
config = load_config()
growth_model_basic(config)