evijit HF Staff commited on
Commit
d9680dc
·
verified ·
1 Parent(s): 394882f

expand-model-tagging (#5)

Browse files

- Three questions were added to AI system information section: (8c0065ab040d8257327d45783e3fce4883794be0)

Files changed (1) hide show
  1. app.py +19 -1
app.py CHANGED
@@ -35,12 +35,24 @@ class AIEvaluationForm:
35
  placeholder="e.g., GPT-4, BERT, StarCoder2",
36
  info="The official name of your AI system"
37
  )
38
-
39
  components['provider'] = gr.Textbox(
40
  label="Provider/Organization",
41
  placeholder="e.g., OpenAI, Google, BigCode",
42
  info="The organization that developed the system"
43
  )
 
 
 
 
 
 
 
 
 
 
 
 
44
 
45
  components['url'] = gr.Textbox(
46
  label="System URL",
@@ -60,6 +72,12 @@ class AIEvaluationForm:
60
  value="Generative Model",
61
  info="Primary category of the AI system"
62
  )
 
 
 
 
 
 
63
 
64
  components['input modalities'] = gr.CheckboxGroup(
65
  choices=[
 
35
  placeholder="e.g., GPT-4, BERT, StarCoder2",
36
  info="The official name of your AI system"
37
  )
38
+
39
  components['provider'] = gr.Textbox(
40
  label="Provider/Organization",
41
  placeholder="e.g., OpenAI, Google, BigCode",
42
  info="The organization that developed the system"
43
  )
44
+
45
+ components['model_tag'] = gr.Textbox(
46
+ label="Model Tag/Version",
47
+ placeholder="e.g., gpt-4.1-2025-04-14 for GPT-4.1",
48
+ info="Model tag or version set by the provider"
49
+ )
50
+
51
+ components['knowledge_cutoff_date'] = gr.Textbox(
52
+ label="Knowledge Cutoff Date",
53
+ placeholder="MM-DD-YYYY",
54
+ info="Model training data cutoff date"
55
+ )
56
 
57
  components['url'] = gr.Textbox(
58
  label="System URL",
 
72
  value="Generative Model",
73
  info="Primary category of the AI system"
74
  )
75
+
76
+ components['model_type'] = gr.Radio(
77
+ ["Foundational Model", "Fine-tuned Model", "Doesn't apply"],
78
+ label="Model Type",
79
+ info="Primary category of the model")
80
+
81
 
82
  components['input modalities'] = gr.CheckboxGroup(
83
  choices=[