Creating a model in OPE Prop
A model is the base of the operations that happen in layers and training, the model connects all layers with each other.
In OPE Prop, a model is represented by the Model class. To instantiate a Model object, run the following:
model = OPEProp::Model.new
After instantiating a model, you can add layers to it. Learn about adding layers here