Skip to content

model.modelset

Model - ModelSet¤

ModelSet ¤

ModelSet is the core of the model including hyperparameters.

Warning

This class is a proposed framework. There are many member functions to be implemented if you are using the ModelSet class.

In most projects, we do not need to use this class. We have a class ModelSetX which is a more detailed implementation in our model.pipeline module.

hyperparameters property readonly ¤

hyperparameters specifies the hyperparameters. This is a property.

create_model(self) ¤

create_model creates the model and updates the property self.model.

Source code in haferml/model/modelset.py
def create_model(self):
    """
    `create_model` creates the model and updates the property `self.model`.
    """
    ...