Update app.py
Browse files
app.py
CHANGED
|
@@ -1176,20 +1176,21 @@ app.layout = html.Div([
|
|
| 1176 |
html.P([html.Strong("UGI 🏆"), ": Uncensored General Intelligence"], style={'marginTop': '20px', 'fontSize': '1.2em'}),
|
| 1177 |
html.P("Measures a model's knowledge of sensitive topics and its ability to follow instructions when faced with controversial prompts."),
|
| 1178 |
html.Details([
|
| 1179 |
-
html.Summary("UGI
|
| 1180 |
html.Ul([
|
| 1181 |
-
html.Li([html.Strong("
|
| 1182 |
html.Ul([
|
| 1183 |
html.Li([html.Strong("Hazardous:"), " Knowledge of topics that LLMs probably shouldn't assist with."]),
|
| 1184 |
html.Li([html.Strong("Entertainment:"), " Knowledge of adult or controversial entertainment and media."]),
|
| 1185 |
html.Li([html.Strong("SocPol:"), " Knowledge of sensitive socio-political topics."]),
|
| 1186 |
], style={'listStyleType': 'circle', 'marginLeft': '20px'}),
|
| 1187 |
-
html.Li([html.Strong("W/10 👍 (Willingness/10):"), "
|
| 1188 |
html.Ul([
|
| 1189 |
html.Li([html.Strong("W/10-Direct:"), " Measures if the model directly refuses to respond to certain prompts."]),
|
| 1190 |
html.Li([html.Strong("W/10-Adherence:"), " Measures if a model deviates from instructions, which can be a form of refusal or a lack of instruction following capabilities."]),
|
| 1191 |
], style={'listStyleType': 'circle', 'marginLeft': '20px'}),
|
| 1192 |
-
], style={'marginTop': '5px', 'marginLeft': '40px'})
|
|
|
|
| 1193 |
], open=True),
|
| 1194 |
|
| 1195 |
# --- Intelligence Section ---
|
|
|
|
| 1176 |
html.P([html.Strong("UGI 🏆"), ": Uncensored General Intelligence"], style={'marginTop': '20px', 'fontSize': '1.2em'}),
|
| 1177 |
html.P("Measures a model's knowledge of sensitive topics and its ability to follow instructions when faced with controversial prompts."),
|
| 1178 |
html.Details([
|
| 1179 |
+
html.Summary("UGI is the combination of:", style={'fontWeight': 'normal', 'fontSize': '1em', 'marginLeft': '20px', 'cursor': 'pointer'}),
|
| 1180 |
html.Ul([
|
| 1181 |
+
html.Li([html.Strong("Knowledge of sensitive information:")]),
|
| 1182 |
html.Ul([
|
| 1183 |
html.Li([html.Strong("Hazardous:"), " Knowledge of topics that LLMs probably shouldn't assist with."]),
|
| 1184 |
html.Li([html.Strong("Entertainment:"), " Knowledge of adult or controversial entertainment and media."]),
|
| 1185 |
html.Li([html.Strong("SocPol:"), " Knowledge of sensitive socio-political topics."]),
|
| 1186 |
], style={'listStyleType': 'circle', 'marginLeft': '20px'}),
|
| 1187 |
+
html.Li([html.Strong("W/10 👍 (Willingness/10):"), " How far a model can be pushed before it refuses to answer or deviates from instructions."]),
|
| 1188 |
html.Ul([
|
| 1189 |
html.Li([html.Strong("W/10-Direct:"), " Measures if the model directly refuses to respond to certain prompts."]),
|
| 1190 |
html.Li([html.Strong("W/10-Adherence:"), " Measures if a model deviates from instructions, which can be a form of refusal or a lack of instruction following capabilities."]),
|
| 1191 |
], style={'listStyleType': 'circle', 'marginLeft': '20px'}),
|
| 1192 |
+
], style={'marginTop': '5px', 'marginLeft': '40px'}),
|
| 1193 |
+
html.Li(["A model with a high UGI, but low W/10 for example may be able to help provide you with loads of accurate information or statistics on sensitive topics, but will see it as educational and will refuse to form the information into something against its values."])
|
| 1194 |
], open=True),
|
| 1195 |
|
| 1196 |
# --- Intelligence Section ---
|