Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -190,7 +190,8 @@ with gr.Blocks(theme=gr.themes.Default(), css=css) as iface:
|
|
190 |
"""
|
191 |
# Papers Impact: AI-Powered Research Impact Predictor
|
192 |
## https://discord.gg/openfreeai
|
193 |
-
"""
|
|
|
194 |
gr.HTML("""<a href="https://visitorbadge.io/status?path=https%3A%2F%2FVIDraft-PaperImpact.hf.space">
|
195 |
<img src="https://api.visitorbadge.io/api/visitors?path=https%3A%2F%2FVIDraft-PaperImpact.hf.space&countColor=%23263759" />
|
196 |
</a>""")
|
@@ -200,19 +201,23 @@ with gr.Blocks(theme=gr.themes.Default(), css=css) as iface:
|
|
200 |
gr.Markdown("### π arXivμμ λΆλ¬μ€κΈ°")
|
201 |
arxiv_input = gr.Textbox(
|
202 |
lines=1,
|
203 |
-
placeholder="
|
204 |
-
label="arXiv URL/ID"
|
|
|
|
|
205 |
fetch_btn = gr.Button("π λΆλ¬μ€κΈ°", variant="secondary")
|
206 |
|
207 |
gr.Markdown("### π μ§μ μ
λ ₯")
|
208 |
title_input = gr.Textbox(
|
209 |
lines=2,
|
210 |
placeholder="λ
Όλ¬Έ μ λͺ© (μ΅μ 3λ¨μ΄)",
|
211 |
-
label="μ λͺ©"
|
|
|
212 |
abstract_input = gr.Textbox(
|
213 |
lines=5,
|
214 |
placeholder="λ
Όλ¬Έ μμ½ (μ΅μ 50λ¨μ΄)",
|
215 |
-
label="μμ½"
|
|
|
216 |
status = gr.Textbox(label="βοΈ μ
λ ₯ μν", interactive=False)
|
217 |
submit_btn = gr.Button("π― μμΈ‘νκΈ°", interactive=False, variant="primary")
|
218 |
|
@@ -238,15 +243,15 @@ with gr.Blocks(theme=gr.themes.Default(), css=css) as iface:
|
|
238 |
### π Rating Scale
|
239 |
| Grade | Score Range | Description | Indicator |
|
240 |
|-------|-------------|-------------|-----------|
|
241 |
-
| AAA
|
242 |
-
| AA
|
243 |
-
| A
|
244 |
-
| BBB
|
245 |
-
| BB
|
246 |
-
| B
|
247 |
-
| CCC
|
248 |
-
| CC
|
249 |
-
| C
|
250 |
"""
|
251 |
)
|
252 |
|
|
|
190 |
"""
|
191 |
# Papers Impact: AI-Powered Research Impact Predictor
|
192 |
## https://discord.gg/openfreeai
|
193 |
+
"""
|
194 |
+
)
|
195 |
gr.HTML("""<a href="https://visitorbadge.io/status?path=https%3A%2F%2FVIDraft-PaperImpact.hf.space">
|
196 |
<img src="https://api.visitorbadge.io/api/visitors?path=https%3A%2F%2FVIDraft-PaperImpact.hf.space&countColor=%23263759" />
|
197 |
</a>""")
|
|
|
201 |
gr.Markdown("### π arXivμμ λΆλ¬μ€κΈ°")
|
202 |
arxiv_input = gr.Textbox(
|
203 |
lines=1,
|
204 |
+
placeholder="μμ: 2504.11651",
|
205 |
+
label="arXiv URL/ID",
|
206 |
+
value="2504.11651"
|
207 |
+
)
|
208 |
fetch_btn = gr.Button("π λΆλ¬μ€κΈ°", variant="secondary")
|
209 |
|
210 |
gr.Markdown("### π μ§μ μ
λ ₯")
|
211 |
title_input = gr.Textbox(
|
212 |
lines=2,
|
213 |
placeholder="λ
Όλ¬Έ μ λͺ© (μ΅μ 3λ¨μ΄)",
|
214 |
+
label="μ λͺ©"
|
215 |
+
)
|
216 |
abstract_input = gr.Textbox(
|
217 |
lines=5,
|
218 |
placeholder="λ
Όλ¬Έ μμ½ (μ΅μ 50λ¨μ΄)",
|
219 |
+
label="μμ½"
|
220 |
+
)
|
221 |
status = gr.Textbox(label="βοΈ μ
λ ₯ μν", interactive=False)
|
222 |
submit_btn = gr.Button("π― μμΈ‘νκΈ°", interactive=False, variant="primary")
|
223 |
|
|
|
243 |
### π Rating Scale
|
244 |
| Grade | Score Range | Description | Indicator |
|
245 |
|-------|-------------|-------------|-----------|
|
246 |
+
| AAA | 0.900-1.000 | Exceptional Impact | π |
|
247 |
+
| AA | 0.800-0.899 | Very High Impact | β |
|
248 |
+
| A | 0.650-0.799 | High Impact | β¨ |
|
249 |
+
| BBB | 0.600-0.649 | Above Average | π΅ |
|
250 |
+
| BB | 0.550-0.599 | Moderate Impact | π |
|
251 |
+
| B | 0.500-0.549 | Average Impact | π |
|
252 |
+
| CCC | 0.400-0.499 | Below Average | π |
|
253 |
+
| CC | 0.300-0.399 | Low Impact | βοΈ |
|
254 |
+
| C | <0.299 | Limited Impact | π |
|
255 |
"""
|
256 |
)
|
257 |
|