Spaces:
Running
Running
mallaham
commited on
Commit
·
8c0065a
1
Parent(s):
394882f
Three questions were added to AI system information section:
Browse files- Model Tag/Version: to track social impact evaluation over time per model (or model perovider)
- Knowledge Cutoff Date: to track whether training data has any positive or negative influence on the impacts captured in the evaluation card.
- Model Type: a radio button selector to identify whether a generative model is foundational or fine-tuned.
Signed-off-by: Mowafak
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=[
|