Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -40,54 +40,54 @@ def reset_modules():
|
|
| 40 |
# )
|
| 41 |
|
| 42 |
|
| 43 |
-
theme = gr.themes.Soft(
|
| 44 |
-
|
| 45 |
-
).set(
|
| 46 |
-
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
|
| 50 |
-
|
| 51 |
-
|
| 52 |
-
|
| 53 |
-
|
| 54 |
-
|
| 55 |
-
|
| 56 |
-
|
| 57 |
-
|
| 58 |
-
|
| 59 |
-
|
| 60 |
-
|
| 61 |
-
|
| 62 |
-
|
| 63 |
-
|
| 64 |
-
|
| 65 |
-
|
| 66 |
-
|
| 67 |
-
|
| 68 |
-
|
| 69 |
-
|
| 70 |
-
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
|
| 75 |
-
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
)
|
| 89 |
|
| 90 |
-
|
| 91 |
|
| 92 |
with gr.Blocks(theme=theme) as demo:
|
| 93 |
pre_load_1 = pipeline("sentiment-analysis", model="nlptown/bert-base-multilingual-uncased-sentiment")
|
|
|
|
| 40 |
# )
|
| 41 |
|
| 42 |
|
| 43 |
+
# theme = gr.themes.Soft(
|
| 44 |
+
# primary_hue="blue",
|
| 45 |
+
# ).set(
|
| 46 |
+
# border_color_accent_subdued='*border_color_accent',
|
| 47 |
+
# link_text_color='*primary_600',
|
| 48 |
+
# block_shadow='none',
|
| 49 |
+
# block_shadow_dark='none',
|
| 50 |
+
# form_gap_width='0px',
|
| 51 |
+
# checkbox_label_background_fill='*button_secondary_background_fill',
|
| 52 |
+
# checkbox_label_background_fill_dark='*button_secondary_background_fill',
|
| 53 |
+
# checkbox_label_background_fill_hover='*button_secondary_background_fill_hover',
|
| 54 |
+
# checkbox_label_background_fill_hover_dark='*button_secondary_background_fill_hover',
|
| 55 |
+
# checkbox_label_shadow='none',
|
| 56 |
+
# error_background_fill_dark='*background_fill_primary',
|
| 57 |
+
# input_background_fill='*neutral_100',
|
| 58 |
+
# input_background_fill_dark='*neutral_700',
|
| 59 |
+
# input_border_width='0px',
|
| 60 |
+
# input_border_width_dark='0px',
|
| 61 |
+
# input_shadow='none',
|
| 62 |
+
# input_shadow_dark='none',
|
| 63 |
+
# input_shadow_focus='*input_shadow',
|
| 64 |
+
# input_shadow_focus_dark='*input_shadow',
|
| 65 |
+
# stat_background_fill='*primary_300',
|
| 66 |
+
# stat_background_fill_dark='*primary_500',
|
| 67 |
+
# button_shadow='none',
|
| 68 |
+
# button_shadow_active='none',
|
| 69 |
+
# button_shadow_hover='none',
|
| 70 |
+
# button_transition='background-color 0.2s ease',
|
| 71 |
+
# button_primary_background_fill='*primary_200',
|
| 72 |
+
# button_primary_background_fill_dark='*primary_700',
|
| 73 |
+
# button_primary_background_fill_hover='*button_primary_background_fill',
|
| 74 |
+
# button_primary_background_fill_hover_dark='*button_primary_background_fill',
|
| 75 |
+
# button_primary_border_color_dark='*primary_600',
|
| 76 |
+
# button_secondary_background_fill='*neutral_200',
|
| 77 |
+
# button_secondary_background_fill_dark='*neutral_600',
|
| 78 |
+
# button_secondary_background_fill_hover='*button_secondary_background_fill',
|
| 79 |
+
# button_secondary_background_fill_hover_dark='*button_secondary_background_fill',
|
| 80 |
+
# button_cancel_background_fill='*button_secondary_background_fill',
|
| 81 |
+
# button_cancel_background_fill_dark='*button_secondary_background_fill',
|
| 82 |
+
# button_cancel_background_fill_hover='*button_cancel_background_fill',
|
| 83 |
+
# button_cancel_background_fill_hover_dark='*button_cancel_background_fill',
|
| 84 |
+
# button_cancel_border_color='*button_secondary_border_color',
|
| 85 |
+
# button_cancel_border_color_dark='*button_secondary_border_color',
|
| 86 |
+
# button_cancel_text_color='*button_secondary_text_color',
|
| 87 |
+
# button_cancel_text_color_dark='*button_secondary_text_color'
|
| 88 |
+
# )
|
| 89 |
|
| 90 |
+
theme = gr.themes.Soft(text_size=gr.themes.sizes.text_md)
|
| 91 |
|
| 92 |
with gr.Blocks(theme=theme) as demo:
|
| 93 |
pre_load_1 = pipeline("sentiment-analysis", model="nlptown/bert-base-multilingual-uncased-sentiment")
|