Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -7,21 +7,14 @@ import requests
|
|
7 |
|
8 |
from share_btn import community_icon_html, loading_icon_html, share_js
|
9 |
|
10 |
-
model_id = "runwayml/stable-diffusion-v1-5"
|
11 |
device = "cuda"
|
12 |
|
13 |
-
word_list_dataset = load_dataset("stabilityai/word-list", data_files="list.txt", use_auth_token=True)
|
14 |
-
word_list = word_list_dataset["train"]['text']
|
15 |
-
|
16 |
is_gpu_busy = False
|
17 |
def infer(prompt):
|
18 |
global is_gpu_busy
|
19 |
samples = 4
|
20 |
steps = 50
|
21 |
scale = 7.5
|
22 |
-
for filter in word_list:
|
23 |
-
if re.search(rf"\b{filter}\b", prompt):
|
24 |
-
raise gr.Error("Unsafe content found. Please try again with different prompts.")
|
25 |
|
26 |
images = []
|
27 |
url = os.getenv('JAX_BACKEND_URL')
|
|
|
7 |
|
8 |
from share_btn import community_icon_html, loading_icon_html, share_js
|
9 |
|
|
|
10 |
device = "cuda"
|
11 |
|
|
|
|
|
|
|
12 |
is_gpu_busy = False
|
13 |
def infer(prompt):
|
14 |
global is_gpu_busy
|
15 |
samples = 4
|
16 |
steps = 50
|
17 |
scale = 7.5
|
|
|
|
|
|
|
18 |
|
19 |
images = []
|
20 |
url = os.getenv('JAX_BACKEND_URL')
|