ESlint3 commited on
Commit
8cdd71e
1 Parent(s): 6a38d67

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -8,15 +8,15 @@ import requests
8
 
9
  from share_btn import community_icon_html, loading_icon_html, share_js
10
 
11
- word_list_dataset = load_dataset("stabilityai/word-list", data_files="list.txt", use_auth_token=False)
12
- word_list = word_list_dataset["train"]['text']
13
 
14
  is_gpu_busy = False
15
  def infer(prompt, negative, scale):
16
  global is_gpu_busy
17
- for filter in word_list:
18
- if re.search(rf"\b{filter}\b", prompt):
19
- raise gr.Error("Unsafe content found. Please try again with different prompts.")
20
 
21
  images = []
22
  url = os.getenv('JAX_BACKEND_URL')
 
8
 
9
  from share_btn import community_icon_html, loading_icon_html, share_js
10
 
11
+ # word_list_dataset = load_dataset("stabilityai/word-list", data_files="list.txt", use_auth_token=False)
12
+ # word_list = word_list_dataset["train"]['text']
13
 
14
  is_gpu_busy = False
15
  def infer(prompt, negative, scale):
16
  global is_gpu_busy
17
+ # for filter in word_list:
18
+ # if re.search(rf"\b{filter}\b", prompt):
19
+ # raise gr.Error("Unsafe content found. Please try again with different prompts.")
20
 
21
  images = []
22
  url = os.getenv('JAX_BACKEND_URL')