Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,48 @@
|
|
1 |
-
---
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 recordings from 11 mice in the V1, SC, and ALM brain regions using Neuropixels probes.
|
12 |
+
Each recording was labeled by at least two independent annotators, with different combinations of labelers, achieving an 80% agreement rate.
|
13 |
+
This model utilizes a subset of metrics that are computationally efficient while maintaining robust classification performance.
|
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 SUA units 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_lightweight",
|
26 |
+
trusted = ['numpy.dtype']
|
27 |
+
)
|
28 |
+
```
|
29 |
+
|
30 |
+
## 📜 Citation
|
31 |
+
|
32 |
+
If you find [UnitRefine](https://github.com/anoushkajain/UnitRefine) useful in your research, please cite the following DOI:
|
33 |
+
**[10.6084/m9.figshare.28282841.v2](https://doi.org/10.6084/m9.figshare.28282841.v2)**.
|
34 |
+
|
35 |
+
We will be releasing a **preprint soon**. In the meantime, please use the above DOI for referencing.
|
36 |
+
|
37 |
+
## 🔗 Resources
|
38 |
+
|
39 |
+
- **GitHub Repository:** [UnitRefine](https://github.com/anoushkajain/UnitRefine)
|
40 |
+
- 📖 **SpikeInterface Tutorial – Automated Curation:**
|
41 |
+
[View Here](https://spikeinterface.readthedocs.io/en/latest/tutorials_custom_index.html#automated-curation-tutorials)
|
42 |
+
|
43 |
+
UnitRefine is **fully integrated with SpikeInterface**, making it easy to incorporate into existing workflows. 🚀
|
44 |
+
|
45 |
+
|
46 |
+
# Authors
|
47 |
+
|
48 |
+
Anoushka Jain and Chris Halcrow
|