gabrycina/eeg2meg-tiny
Viewer • Updated • 42 • 15
This model was trained to predict MEG signals from EEG recordings.
This model uses a deep learning architecture to predict MEG signals from EEG recordings. The architecture includes:
import torch
# Load the model
model = torch.load('best_model.pth')
# Prepare your EEG data (shape: [batch_size, channels, time_points])
# Make predictions
with torch.no_grad():
meg_predictions = model(eeg_data)