Downloads · 30 days
0
SpikeInterface/toy_tetrode_model
toy_tetrode_model is a machine learning model from SpikeInterface. Use it for the machine learning task on the model card, and read the license before you ship it in a product. The card lists the license as mit.
A toy model, trained on toy data generated from spikeinterface.
Downloads · 30 days
0
Access
Public
Updated Nov 13, 2024
Repo size
2.9 MB
Likes
0
Public
Click a slice to open those files.
.skops2.9 MB · 100%
From the Hugging Face model README
## Model description
A toy model, trained on toy data generated from spikeinterface.
Used to try out automated curation in SpikeInterface.
This can be used to automatically label a sorting in spikeinterface. Provided you have a sorting_analyzer, it is used as follows
from spikeinterface.curation import auto_label_units
labels = auto_label_units(
sorting_analyzer = sorting_analyzer,
repo_id = "SpikeInterface/toy_tetrode_model",
trusted = ['numpy.dtype']
)
or you can download the entire repositry to a_folder_for_a_model, and use
from spikeinterface.curation import auto_label_units
labels = auto_label_units(
sorting_analyzer = sorting_analyzer,
model_folder = "SpikeInterface/a_folder_for_a_model",
trusted = ['numpy.dtype']
)
Chris Halcrow