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:
Attributes:
__init__(params)
Initialize the model with parameters.
__call__(data)
Make predictions using the model.
train_step(input_data)
Perform a single training step.
forward(input)
Forward pass through the model.
save_model(filepath)
Save model parameters to file.
load_model(filepath)
Load model parameters from file.