Update app.py
Browse files
app.py
CHANGED
|
@@ -769,14 +769,14 @@ app.layout = html.Div([
|
|
| 769 |
html.Div([
|
| 770 |
html.Div([
|
| 771 |
html.Label("Display Models:",
|
| 772 |
-
className="model-type-filter"),
|
| 773 |
dcc.Checklist(
|
| 774 |
id='model-type-filter',
|
| 775 |
options=[
|
| 776 |
-
{'label': html.Span('Base', style={'color': '#71de5f', 'fontSize': '
|
| 777 |
-
{'label': html.Span('Finetune', style={'color': '#f6b10b', 'fontSize': '
|
| 778 |
-
{'label': html.Span('Merge', style={'color': '#f08aff', 'fontSize': '
|
| 779 |
-
{'label': html.Span('Proprietary', style={'color': '#19cdce', 'fontSize': '
|
| 780 |
],
|
| 781 |
value=['Is Foundation', 'Is Finetuned', 'Is Merged', 'proprietary'],
|
| 782 |
inline=True,
|
|
|
|
| 769 |
html.Div([
|
| 770 |
html.Div([
|
| 771 |
html.Label("Display Models:",
|
| 772 |
+
className="model-type-filter"),
|
| 773 |
dcc.Checklist(
|
| 774 |
id='model-type-filter',
|
| 775 |
options=[
|
| 776 |
+
{'label': html.Span('Base', style={'color': '#71de5f', 'fontSize': '23px'}), 'value': 'Is Foundation'},
|
| 777 |
+
{'label': html.Span('Finetune', style={'color': '#f6b10b', 'fontSize': '23px'}), 'value': 'Is Finetuned'},
|
| 778 |
+
{'label': html.Span('Merge', style={'color': '#f08aff', 'fontSize': '23px'}), 'value': 'Is Merged'},
|
| 779 |
+
{'label': html.Span('Proprietary', style={'color': '#19cdce', 'fontSize': '23px'}), 'value': 'proprietary'}
|
| 780 |
],
|
| 781 |
value=['Is Foundation', 'Is Finetuned', 'Is Merged', 'proprietary'],
|
| 782 |
inline=True,
|