We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Base class for neural decoding models.
class Model(ABC)
Abstract base class for all neural decoding models.
Parameters:
params :
Model parameters.
Attributes:
Stored model parameters
__init__(params)
Initialize the model with parameters.
Model-specific parameters.
__call__(data)
Make predictions using the model.
data : Any
Input data for prediction.
train_step(input_data)
Perform a single training step.
input_data : Any
Training data for one step.
forward(input)
Forward pass through the model.
input : Any
Model input data.
save_model(filepath)
Save model parameters to file.
filepath : str
Path where model parameters should be saved.
load_model(filepath)
Load model parameters from file.
Path to saved model parameters.