MrSimple07 commited on
Commit
665ae8a
·
verified ·
1 Parent(s): e22fbd5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -15,7 +15,7 @@ benchmark_data = {
15
  'Model': ['IlyaGusev/saiga_llama3_8b', 'Vikhrmodels/Vikhr-Nemo-12B-Instruct-R-21-09-24', "TinyLlama", 'Google-gemma-2-27b-it', 'mistralai/Mistral-Nemo-Instruct-2407', 'Vikhrmodels/Vikhr-Qwen-2.5-0.5b-Instruct'],
16
  'Creativity Score': [78.5, 82.3, 85.7, 83.1, 85.6, 76.5, ],
17
  'Coherence Score': [75.2, 80.1, 84.3, 81.9, 88.5, 76.6],
18
- 'Diversity Score': [25.3, 27.8, 31.2, 29.5, 88.4, 74.6]
19
  }
20
 
21
  def display_results():
@@ -28,7 +28,7 @@ with gr.Blocks() as demo:
28
 
29
  # Display results in a DataFrame
30
  output = gr.Dataframe(
31
- headers=["Model", "GLUE Score", "SQuAD F1", "MMLU Score"],
32
  interactive=False
33
  )
34
 
 
15
  'Model': ['IlyaGusev/saiga_llama3_8b', 'Vikhrmodels/Vikhr-Nemo-12B-Instruct-R-21-09-24', "TinyLlama", 'Google-gemma-2-27b-it', 'mistralai/Mistral-Nemo-Instruct-2407', 'Vikhrmodels/Vikhr-Qwen-2.5-0.5b-Instruct'],
16
  'Creativity Score': [78.5, 82.3, 85.7, 83.1, 85.6, 76.5, ],
17
  'Coherence Score': [75.2, 80.1, 84.3, 81.9, 88.5, 76.6],
18
+ 'Diversity Score': [25.3, 27.8, 31.2, 29.5, 28.4, 24.6]
19
  }
20
 
21
  def display_results():
 
28
 
29
  # Display results in a DataFrame
30
  output = gr.Dataframe(
31
+ headers=["Model", "Creativity Score", "Coherence Score", "Diversity Score"],
32
  interactive=False
33
  )
34