openfree commited on
Commit
3334620
Β·
verified Β·
1 Parent(s): fd896e6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -14
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="arXiv URL λ˜λŠ” ID",
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 | 0.900-1.000 | Exceptional Impact | 🌟 |
242
- | AA | 0.800-0.899 | Very High Impact | ⭐ |
243
- | A | 0.650-0.799 | High Impact | ✨ |
244
- | BBB | 0.600-0.649 | Above Average | πŸ”΅ |
245
- | BB | 0.550-0.599 | Moderate Impact | πŸ“˜ |
246
- | B | 0.500-0.549 | Average Impact | πŸ“– |
247
- | CCC | 0.400-0.499 | Below Average | πŸ“ |
248
- | CC | 0.300-0.399 | Low Impact | ✏️ |
249
- | C | <0.299 | Limited Impact | πŸ“‘ |
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