Update README.md
Browse files
README.md
CHANGED
|
@@ -1,15 +1,32 @@
|
|
| 1 |
---
|
|
|
|
| 2 |
library_name: braindecode
|
| 3 |
-
license: bsd-3-clause
|
| 4 |
tags:
|
| 5 |
-
-
|
| 6 |
-
- _BaseSignalJEPA
|
| 7 |
-
- braindecode
|
| 8 |
-
- model_hub_mixin
|
| 9 |
-
- pytorch_model_hub_mixin
|
| 10 |
---
|
| 11 |
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: mit
|
| 3 |
library_name: braindecode
|
|
|
|
| 4 |
tags:
|
| 5 |
+
- deprecated
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
---
|
| 7 |
|
| 8 |
+
# ⚠️ This repository is deprecated
|
| 9 |
+
|
| 10 |
+
The weights in this repository are kept online for archival purposes only. They
|
| 11 |
+
are **not** compatible with current releases of
|
| 12 |
+
[braindecode](https://braindecode.org/) and will not receive updates.
|
| 13 |
+
|
| 14 |
+
## Please use the new repositories
|
| 15 |
+
|
| 16 |
+
The Signal-JEPA weights have been republished:
|
| 17 |
+
|
| 18 |
+
- [`braindecode/signal-jepa`](https://huggingface.co/braindecode/signal-jepa)
|
| 19 |
+
— full checkpoint including the 62-channel embedding table (for users whose
|
| 20 |
+
recording channels are a subset of the Lee2019 pre-training layout).
|
| 21 |
+
- [`braindecode/signal-jepa_without-chans`](https://huggingface.co/braindecode/signal-jepa_without-chans)
|
| 22 |
+
— SSL backbone only (channel embeddings trained from scratch on your data).
|
| 23 |
+
|
| 24 |
+
```python
|
| 25 |
+
from braindecode.models import SignalJEPA
|
| 26 |
+
|
| 27 |
+
model = SignalJEPA.from_pretrained("braindecode/signal-jepa_without-chans")
|
| 28 |
+
```
|
| 29 |
+
|
| 30 |
+
See the docs for [`braindecode.models.SignalJEPA`](https://braindecode.org/stable/generated/braindecode.models.SignalJEPA.html)
|
| 31 |
+
and the fine-tuning tutorial
|
| 32 |
+
[Fine-tuning a Foundation Model (Signal-JEPA)](https://braindecode.org/stable/auto_examples/advanced_training/plot_finetune_foundation_model.html).
|