CLVModel.load#
- classmethod CLVModel.load(fname)[source]#
Creates a ModelBuilder instance from a file, Loads inference data for the model.
- Parameters:
- fname
str This denotes the name with path from where idata should be loaded from.
- fname
- Returns:
Returnsaninstance of ModelBuilder.
- Raises:
ValueErrorIf the inference data that is loaded doesn’t match with the model.
Examples
>>> :obj:`class` :obj:`MyModel`\(:obj:`ModelBuilder`): ..>>> ... ..
>>> :obj:`name` = './mymodel.nc' ..>>> :obj:`imported_model` = :obj:`MyModel.load`\(:obj:`name`) ..