Instructions to use epfl-neuroai/NEvo with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use epfl-neuroai/NEvo with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("epfl-neuroai/NEvo", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
License under CC BY-NC 4.0; add Intended Use / Out-of-scope / Risks section
Browse files
LICENSE
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
NEvo is licensed under the Creative Commons Attribution-NonCommercial 4.0
|
| 2 |
+
International License (CC BY-NC 4.0).
|
| 3 |
+
|
| 4 |
+
You are free to share and adapt the material for non-commercial purposes,
|
| 5 |
+
provided you give appropriate credit. Commercial use is not permitted under
|
| 6 |
+
this license.
|
| 7 |
+
|
| 8 |
+
Human-readable summary: https://creativecommons.org/licenses/by-nc/4.0/
|
| 9 |
+
Full legal code: https://creativecommons.org/licenses/by-nc/4.0/legalcode
|
| 10 |
+
|
| 11 |
+
The referenced upstream models (vJEPA-2, SDXL-Turbo, LTX-Video) are covered by
|
| 12 |
+
their own separate licenses and access terms.
|
README.md
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
---
|
|
|
|
| 2 |
tags:
|
| 3 |
- neuroscience
|
| 4 |
- fmri
|
|
@@ -213,3 +214,14 @@ Project website: [nevo-project.epfl.ch](https://nevo-project.epfl.ch/)
|
|
| 213 |
## Acknowledgements
|
| 214 |
|
| 215 |
Builds on BrainDiVE-style encoder-guided synthesis, vJEPA-2, SDXL-Turbo, and LTX-Video. ROI/searchlight definitions derive from an fsaverage-space group atlas (precomputed and bundled).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
tags:
|
| 4 |
- neuroscience
|
| 5 |
- fmri
|
|
|
|
| 214 |
## Acknowledgements
|
| 215 |
|
| 216 |
Builds on BrainDiVE-style encoder-guided synthesis, vJEPA-2, SDXL-Turbo, and LTX-Video. ROI/searchlight definitions derive from an fsaverage-space group atlas (precomputed and bundled).
|
| 217 |
+
|
| 218 |
+
|
| 219 |
+
## Intended Use, Out-of-Scope Use & Risks
|
| 220 |
+
|
| 221 |
+
**Intended use.** NEvo is a **research-only** tool for computational visual neuroscience. It searches for image/video stimuli that a differentiable image/video→fMRI *encoder model* predicts would drive a chosen brain region or target fMRI pattern. Its outputs are computational **hypotheses** — candidate stimuli to be validated in properly designed, ethically approved experiments — not established scientific findings.
|
| 222 |
+
|
| 223 |
+
**Out-of-scope use.** This model is **not a medical device** and must not be used for diagnosis, treatment, or any clinical decision-making. It is **not intended for, and must not be used to design, guide, or deliver, any form of real brain stimulation** (e.g. TMS, tDCS/tACS, deep-brain or intracranial stimulation) or any other in-vivo neuromodulation. It does **not** model the effect of physical stimulation on a living brain — it only optimizes against a fixed encoder's *predicted* fMRI response. Any use on, or affecting, human or animal subjects requires independent ethical review (e.g. IRB/ethics-board approval) and is the sole responsibility of the user.
|
| 224 |
+
|
| 225 |
+
**Risks & limitations.** Optimizing hard against a single encoder can exploit encoder artifacts, so generated stimuli may not transfer to real neural responses — treat every output as an unvalidated hypothesis and use held-out validation. The underlying generative models can produce biased, unexpected, or disturbing imagery. The authors provide the model **as is**, without warranty of fitness for any purpose, and accept no liability for downstream use.
|
| 226 |
+
|
| 227 |
+
**License.** Released under **CC BY-NC 4.0** (Creative Commons Attribution-NonCommercial 4.0): research and other **non-commercial** use only, with attribution. The referenced upstream models (vJEPA-2, SDXL-Turbo, LTX-Video) carry their own licenses and access terms, which you must also comply with.
|