Create README.md
Browse filesAdded Info to model card
README.md
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- en
|
4 |
+
pipeline_tag: tabular-classification
|
5 |
+
tags:
|
6 |
+
- Computational Neuroscience
|
7 |
+
license: mit
|
8 |
+
---
|
9 |
+
|
10 |
+
## Model description
|
11 |
+
The model is trained on 11 mice in V1, SC, and ALM using Neuropixels on mice.
|
12 |
+
Each recording was labeled by at least two people and in different combinations.
|
13 |
+
The agreement amongst labelers is 80%.
|
14 |
+
|
15 |
+
# Intended use
|
16 |
+
Used to identify noise clusters automatically in SpikeInterface.
|
17 |
+
|
18 |
+
# How to Get Started with the Model
|
19 |
+
This can be used to automatically identify noise in spike-sorted outputs. If you have a sorting_analyzer, it can be used as follows:
|
20 |
+
|
21 |
+
``` python
|
22 |
+
from spikeinterface.curation import auto_label_units
|
23 |
+
labels = auto_label_units(
|
24 |
+
sorting_analyzer = sorting_analyzer,
|
25 |
+
repo_id = "AnoushkaJain3/noise_neural_classifier",
|
26 |
+
trusted = ['numpy.dtype']
|
27 |
+
)
|
28 |
+
```
|
29 |
+
|
30 |
+
# Authors
|
31 |
+
|
32 |
+
Anoushka Jain and Chris Halcrow
|