Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -50,15 +50,14 @@ class AIEvaluationForm:
|
|
50 |
|
51 |
components['type'] = gr.Dropdown(
|
52 |
choices=[
|
53 |
-
"
|
54 |
-
"
|
55 |
-
"
|
56 |
-
"
|
57 |
-
"Reinforcement Learning Agent",
|
58 |
"Other"
|
59 |
],
|
60 |
label="System Type",
|
61 |
-
value="
|
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 |
|