felfri commited on
Commit
1fe1581
·
verified ·
1 Parent(s): 9cf7326

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +20 -9
app.py CHANGED
@@ -52,8 +52,8 @@ class AIEvaluationForm:
52
  choices=[
53
  "Large Language Model",
54
  "Computer Vision Model",
55
- "Multimodal Model",
56
  "Speech/Audio Model",
 
57
  "Reinforcement Learning Agent",
58
  "Other"
59
  ],
@@ -62,19 +62,30 @@ class AIEvaluationForm:
62
  info="Primary category of the AI system"
63
  )
64
 
65
- components['modalities'] = gr.CheckboxGroup(
 
 
 
 
 
 
 
 
 
 
 
 
 
66
  choices=[
67
- "Text-to-Text",
68
- "Text-to-Image",
69
- "Image-to-Text",
70
- "Image-to-Image",
71
  "Audio",
72
  "Video",
73
- "Multimodal"
74
  ],
75
- label="Modalities (select all that apply)",
76
  value=["Text-to-Text"],
77
- info="Input/output modalities supported by the system"
78
  )
79
 
80
  return list(components.values()), components
 
52
  choices=[
53
  "Large Language Model",
54
  "Computer Vision Model",
 
55
  "Speech/Audio Model",
56
+ "Multimodal Model",
57
  "Reinforcement Learning Agent",
58
  "Other"
59
  ],
 
62
  info="Primary category of the AI system"
63
  )
64
 
65
+ components['input modalities'] = gr.CheckboxGroup(
66
+ choices=[
67
+ "Text",
68
+ "Image",
69
+ "Audio",
70
+ "Video",
71
+ "Tabular",
72
+ ],
73
+ label="Input modalities (select all that apply)",
74
+ value=["Text-to-Text"],
75
+ info="input modalities supported by the system"
76
+ )
77
+
78
+ components['output modalities'] = gr.CheckboxGroup(
79
  choices=[
80
+ "Text",
81
+ "Image",
 
 
82
  "Audio",
83
  "Video",
84
+ "Tabular",
85
  ],
86
+ label="Output Modalities (select all that apply)",
87
  value=["Text-to-Text"],
88
+ info="output modalities supported by the system"
89
  )
90
 
91
  return list(components.values()), components