Spaces:
Sleeping
Sleeping
Yaron Koresh
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -86,14 +86,14 @@ def generate_random_string(length):
|
|
86 |
characters = string.ascii_letters + string.digits
|
87 |
return ''.join(random.choice(characters) for _ in range(length))
|
88 |
|
89 |
-
@spaces.GPU(duration=
|
90 |
def Piper(_do,_dont):
|
91 |
return pipe(
|
92 |
_do,
|
93 |
height=512,
|
94 |
width=512,
|
95 |
negative_prompt=_dont,
|
96 |
-
num_inference_steps=
|
97 |
guidance_scale=2
|
98 |
)
|
99 |
|
|
|
86 |
characters = string.ascii_letters + string.digits
|
87 |
return ''.join(random.choice(characters) for _ in range(length))
|
88 |
|
89 |
+
@spaces.GPU(duration=70)
|
90 |
def Piper(_do,_dont):
|
91 |
return pipe(
|
92 |
_do,
|
93 |
height=512,
|
94 |
width=512,
|
95 |
negative_prompt=_dont,
|
96 |
+
num_inference_steps=400,
|
97 |
guidance_scale=2
|
98 |
)
|
99 |
|