Update app.py
Browse files
app.py
CHANGED
|
@@ -158,25 +158,28 @@ if "overfit" in owner_active_list:
|
|
| 158 |
if "overfitdist" in owner_active_list:
|
| 159 |
owner_cost = "π‘ Medium"
|
| 160 |
|
| 161 |
-
reliability = "
|
| 162 |
if "auditone" in auditor_active_list and len(owner_active_list)==0:
|
| 163 |
-
reliability = "
|
| 164 |
if "auditmany" in auditor_active_list and len(owner_active_list)==0:
|
| 165 |
-
reliability = "
|
| 166 |
if "auditmany" in auditor_active_list and "overfit" in owner_active_list:
|
| 167 |
-
reliability = "
|
| 168 |
if "private" in auditor_active_list and "overfitdist" not in owner_active_list:
|
| 169 |
-
reliability = "
|
| 170 |
if "private" in auditor_active_list and "auditmany" in auditor_active_list and "overfitdist" not in owner_active_list:
|
| 171 |
-
reliability = "
|
| 172 |
if "private" in auditor_active_list and "auditmany" in auditor_active_list and "overfitdist" in owner_active_list:
|
| 173 |
-
reliability = "
|
| 174 |
if "internals" in auditor_active_list:
|
| 175 |
-
reliability = "
|
| 176 |
|
| 177 |
openness = "None"
|
| 178 |
if "internals" in auditor_active_list:
|
| 179 |
-
openness = "
|
|
|
|
|
|
|
|
|
|
| 180 |
|
| 181 |
# --------------------------------------------------
|
| 182 |
# Dashboard
|
|
|
|
| 158 |
if "overfitdist" in owner_active_list:
|
| 159 |
owner_cost = "π‘ Medium"
|
| 160 |
|
| 161 |
+
reliability = "β Low"
|
| 162 |
if "auditone" in auditor_active_list and len(owner_active_list)==0:
|
| 163 |
+
reliability = "β οΈ Medium"
|
| 164 |
if "auditmany" in auditor_active_list and len(owner_active_list)==0:
|
| 165 |
+
reliability = "β
High"
|
| 166 |
if "auditmany" in auditor_active_list and "overfit" in owner_active_list:
|
| 167 |
+
reliability = "β οΈ Medium"
|
| 168 |
if "private" in auditor_active_list and "overfitdist" not in owner_active_list:
|
| 169 |
+
reliability = "β οΈ Medium"
|
| 170 |
if "private" in auditor_active_list and "auditmany" in auditor_active_list and "overfitdist" not in owner_active_list:
|
| 171 |
+
reliability = "β
High"
|
| 172 |
if "private" in auditor_active_list and "auditmany" in auditor_active_list and "overfitdist" in owner_active_list:
|
| 173 |
+
reliability = "β οΈ Medium"
|
| 174 |
if "internals" in auditor_active_list:
|
| 175 |
+
reliability = "β
High"
|
| 176 |
|
| 177 |
openness = "None"
|
| 178 |
if "internals" in auditor_active_list:
|
| 179 |
+
openness = "π High (Model Weight Sharing)"
|
| 180 |
+
|
| 181 |
+
if len(auditor_active_list)==0 and len(owner_active_list)==0:
|
| 182 |
+
auditor_cost, owner_cost, reliability, openness = "N/A", "N/A", "N/A", "N/A"
|
| 183 |
|
| 184 |
# --------------------------------------------------
|
| 185 |
# Dashboard
|