app.py
Browse files
app.py
CHANGED
@@ -1,7 +1,6 @@
|
|
1 |
import gradio as gr
|
2 |
from random import randint
|
3 |
from all_models import models
|
4 |
-
from datetime import datetime
|
5 |
|
6 |
def load_fn(models):
|
7 |
global models_load
|
@@ -202,6 +201,9 @@ body {
|
|
202 |
width: 100%;
|
203 |
box-sizing: border-box;
|
204 |
}
|
|
|
|
|
|
|
205 |
@media (max-width: 768px) {
|
206 |
.gradio-container {
|
207 |
width: 100%;
|
@@ -219,4 +221,4 @@ with gr.Blocks(css=custom_css) as demo:
|
|
219 |
make_me()
|
220 |
|
221 |
demo.queue(concurrency_count=50)
|
222 |
-
demo.launch(
|
|
|
1 |
import gradio as gr
|
2 |
from random import randint
|
3 |
from all_models import models
|
|
|
4 |
|
5 |
def load_fn(models):
|
6 |
global models_load
|
|
|
201 |
width: 100%;
|
202 |
box-sizing: border-box;
|
203 |
}
|
204 |
+
.share-button {
|
205 |
+
display: none;
|
206 |
+
}
|
207 |
@media (max-width: 768px) {
|
208 |
.gradio-container {
|
209 |
width: 100%;
|
|
|
221 |
make_me()
|
222 |
|
223 |
demo.queue(concurrency_count=50)
|
224 |
+
demo.launch()
|