DontPlanToEnd
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -773,10 +773,10 @@ app.layout = html.Div([
|
|
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,
|
|
|
773 |
dcc.Checklist(
|
774 |
id='model-type-filter',
|
775 |
options=[
|
776 |
+
{'label': html.Span('Base', style={'color': '#71de5f', 'fontSize': '16.5px'}), 'value': 'Is Foundation'},
|
777 |
+
{'label': html.Span('Finetune', style={'color': '#f6b10b', 'fontSize': '16.5px'}), 'value': 'Is Finetuned'},
|
778 |
+
{'label': html.Span('Merge', style={'color': '#f08aff', 'fontSize': '16.5px'}), 'value': 'Is Merged'},
|
779 |
+
{'label': html.Span('Proprietary', style={'color': '#19cdce', 'fontSize': '16.5px'}), 'value': 'proprietary'}
|
780 |
],
|
781 |
value=['Is Foundation', 'Is Finetuned', 'Is Merged', 'proprietary'],
|
782 |
inline=True,
|