felfri commited on
Commit
5db5f0c
·
verified ·
1 Parent(s): 1fe1581

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -6
app.py CHANGED
@@ -50,15 +50,14 @@ class AIEvaluationForm:
50
 
51
  components['type'] = gr.Dropdown(
52
  choices=[
53
- "Large Language Model",
54
- "Computer Vision Model",
55
- "Speech/Audio Model",
56
- "Multimodal Model",
57
- "Reinforcement Learning Agent",
58
  "Other"
59
  ],
60
  label="System Type",
61
- value="Large Language Model",
62
  info="Primary category of the AI system"
63
  )
64
 
 
50
 
51
  components['type'] = gr.Dropdown(
52
  choices=[
53
+ "Generative Model",
54
+ "Discriminative Model/Classifier",
55
+ "Regressor",
56
+ "(Reinforcement Learning) Agent",
 
57
  "Other"
58
  ],
59
  label="System Type",
60
+ value="Generative Model",
61
  info="Primary category of the AI system"
62
  )
63