Update app.py
Browse files
app.py
CHANGED
@@ -72,11 +72,8 @@ proc3=gr.Interface.load(f"models/{model_3}",live=False,preprocess=True, postproc
|
|
72 |
def randStr():
|
73 |
pp=["a","b","c","d","e","f","g","h"]
|
74 |
str="";
|
75 |
-
str+=random.
|
76 |
-
|
77 |
-
str+=random.choise(pp)+random.choise(pp)+random.choise(pp)+random.choise(pp)
|
78 |
-
str+=random.choise(pp)+random.choise(pp)+random.choise(pp)+random.choise(pp)
|
79 |
-
return str
|
80 |
|
81 |
def bbb22(text):
|
82 |
|
|
|
72 |
def randStr():
|
73 |
pp=["a","b","c","d","e","f","g","h"]
|
74 |
str="";
|
75 |
+
str+=random.choice(pp)+random.choice(pp)+random.choice(pp)
|
76 |
+
return str
|
|
|
|
|
|
|
77 |
|
78 |
def bbb22(text):
|
79 |
|