Spaces:
Running
on
Zero
Running
on
Zero
README.md
CHANGED
@@ -11,7 +11,7 @@ short_description: Generate Paper Reviews
|
|
11 |
license: apache-2.0
|
12 |
models: [maxidl/Llama-OpenReviewer-8B]
|
13 |
tags: [paper, review, generation, automatic, llm, llama, openreview, peer, conference, article, manuscript, feedback]
|
14 |
-
preload_from_hub: [maxidl/Llama-OpenReviewer-8B]
|
15 |
hf_oauth: true
|
16 |
---
|
17 |
|
|
|
11 |
license: apache-2.0
|
12 |
models: [maxidl/Llama-OpenReviewer-8B]
|
13 |
tags: [paper, review, generation, automatic, llm, llama, openreview, peer, conference, article, manuscript, feedback]
|
14 |
+
preload_from_hub: [maxidl/Llama-OpenReviewer-8B, vikp/surya_det3, vikp/surya_layout3, vikp/surya_order, vikp/surya_rec]
|
15 |
hf_oauth: true
|
16 |
---
|
17 |
|
app.py
CHANGED
@@ -245,6 +245,7 @@ theme = gr.themes.Default(primary_hue="gray", secondary_hue="blue", neutral_hue=
|
|
245 |
with gr.Blocks(theme=theme) as demo:
|
246 |
title = gr.HTML(title)
|
247 |
description = gr.Markdown(description)
|
|
|
248 |
# instr = gr.Markdown("Upload your paper in pdf format")
|
249 |
file_input = gr.File(file_types=[".pdf"], file_count="single")
|
250 |
paper_text_field= gr.Textbox("Upload a pdf or paste the full text of your paper in markdown format here.", label="Paper Text", lines=20, max_lines=20, autoscroll=False)
|
|
|
245 |
with gr.Blocks(theme=theme) as demo:
|
246 |
title = gr.HTML(title)
|
247 |
description = gr.Markdown(description)
|
248 |
+
login_button = gr.LoginButton()
|
249 |
# instr = gr.Markdown("Upload your paper in pdf format")
|
250 |
file_input = gr.File(file_types=[".pdf"], file_count="single")
|
251 |
paper_text_field= gr.Textbox("Upload a pdf or paste the full text of your paper in markdown format here.", label="Paper Text", lines=20, max_lines=20, autoscroll=False)
|