mzx commited on
Commit
2618e9d
·
verified ·
1 Parent(s): 904314b

Clarify original NEvo attribution

Browse files
Files changed (2) hide show
  1. README.md +4 -2
  2. app.py +7 -2
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- title: NEvo Image-to-Image
3
  colorFrom: gray
4
  colorTo: red
5
  sdk: gradio
@@ -16,6 +16,8 @@ models:
16
 
17
  # NEvo Image-to-Image
18
 
19
- Brain-response-guided image editing using the NEvo stimulus search pipeline.
 
 
20
 
21
  This Space is derived from [EPFL NeuroAI's NEvo](https://huggingface.co/epfl-neuroai/NEvo). It predicts model-based cortical responses and does not measure an individual's brain activity. NEvo and this adaptation are available for non-commercial use under CC BY-NC 4.0; referenced upstream models retain their own licenses.
 
1
  ---
2
+ title: NEvo Image-to-Image - Community Adaptation
3
  colorFrom: gray
4
  colorTo: red
5
  sdk: gradio
 
16
 
17
  # NEvo Image-to-Image
18
 
19
+ > **Independent community adaptation.** We are not authors of the original NEvo paper or project. NEvo was created by EPFL NeuroAI; see the [original model](https://huggingface.co/epfl-neuroai/NEvo), [project website](https://nevo-project.epfl.ch/), and [paper](https://arxiv.org/abs/2607.02317). This adaptation is not affiliated with or endorsed by EPFL or the original authors.
20
+
21
+ Brain-response-guided image editing using the original NEvo stimulus search pipeline.
22
 
23
  This Space is derived from [EPFL NeuroAI's NEvo](https://huggingface.co/epfl-neuroai/NEvo). It predicts model-based cortical responses and does not measure an individual's brain activity. NEvo and this adaptation are available for non-commercial use under CC BY-NC 4.0; referenced upstream models retain their own licenses.
app.py CHANGED
@@ -207,8 +207,13 @@ def generate_image(
207
  )
208
 
209
 
210
- with gr.Blocks(title="NEvo Image-to-Image") as demo:
211
- gr.Markdown("# NEvo Image-to-Image")
 
 
 
 
 
212
  with gr.Row():
213
  with gr.Column(scale=1):
214
  source_image = gr.Image(type="pil", label="Source image", height=420)
 
207
  )
208
 
209
 
210
+ with gr.Blocks(title="NEvo Image-to-Image - Community Adaptation") as demo:
211
+ gr.Markdown(
212
+ "# NEvo Image-to-Image\n"
213
+ "Independent community adaptation of "
214
+ "[NEvo by EPFL NeuroAI](https://huggingface.co/epfl-neuroai/NEvo). "
215
+ "We are not authors of the original NEvo paper."
216
+ )
217
  with gr.Row():
218
  with gr.Column(scale=1):
219
  source_image = gr.Image(type="pil", label="Source image", height=420)