coree commited on
Commit
c8c0279
·
1 Parent(s): c7948fd
Files changed (1) hide show
  1. app.py +12 -7
app.py CHANGED
@@ -6,13 +6,18 @@ from io import StringIO
6
  # Creating a sample dataframe
7
  df = pd.DataFrame({
8
  "Rank" : [1, 2, 3, 4, 5],
9
- "Detector" : ["""Roberta Detector\n(Numo et al.)\n<a href='https://www.google.de' style="color:blue">Google</a>""", """LLM Detector
10
- *(Numo et al.)*
11
- <span style="color:blue">[Google](https://www.google.de)</span>
12
- """, "", "", ""],
13
- "All Gen. [F1]" : [20, 20, 8, 8, 7],
14
- "Llama-2 7B Gen. [F1]" : [14, 3, 6, 2, 6],
15
- "GPT-4 Gen. [F1]" : [23, 45, 2, 32, 2]
 
 
 
 
 
16
  })
17
 
18
 
 
6
  # Creating a sample dataframe
7
  df = pd.DataFrame({
8
  "Rank" : [1, 2, 3, 4, 5],
9
+ "Detector" : [
10
+ """ChatGPT_QA\n(Antoun et al., 2023)\n<a href='https://www.google.de' style="color:blue">Paper</a>""",
11
+ """XMLMR_ChatGPT\n(Guo et al., 2023)\n<a href='https://www.google.de' style="color:blue">Paper</a>""",
12
+ """LLMDET\n(Liu et al., 2019)\n<a href='https://www.google.de' style="color:blue">Paper</a>""",
13
+ """Radar_Vicuna7B\n(Hu et al, 2023)\n<a href='https://www.google.de' style="color:blue">Paper</a>""",
14
+ """GPTZero\n(Numo et al.)\n<a href='https://www.google.de' style="color:blue">WebApp</a>""",
15
+ ],
16
+ "All Gen. [F1]" : [0.723, 0.563, 0.736, 0.635, 0.464],
17
+ "Llama-2 7B Gen. [F1]" : [0.719, 0.636, 0.622, 0.722, 0.777],
18
+ "GPT-4 Gen. [F1]" : [0.673, 0.435, 0.362, 0.232, 0.562],
19
+ "GPT-3 Gen. [F1]" : [0.374, 0.335, 0.232, 0.632, 0.533],
20
+ "Falcon 7B Gen. [F1]" : [0.445, 0.454, 0.646, 0.665, 0.464]
21
  })
22
 
23