Feature guides
Access model environments
A guide to leveraging environments in your models
A modelβs environment is passed to your Model
class as a keyword argument in init
. It can be accessed with:
model/model.py
You can then use the self._environment
dictionary in the load
function:
model/model.py
Learn more about environments.