Spaces:
Runtime error
Runtime error
Commit
·
ba1d8b6
1
Parent(s):
0192256
Update app.py
Browse files
app.py
CHANGED
@@ -3,7 +3,7 @@ import numpy as np
|
|
3 |
|
4 |
def generate(text, n_steps):
|
5 |
#todo
|
6 |
-
return np.random.random(128, 128, 3).astype(np.uint8)
|
7 |
|
8 |
iface = gr.Interface(fn=generate,
|
9 |
inputs=[
|
|
|
3 |
|
4 |
def generate(text, n_steps):
|
5 |
#todo
|
6 |
+
return np.random.random((128, 128, 3)).astype(np.uint8)
|
7 |
|
8 |
iface = gr.Interface(fn=generate,
|
9 |
inputs=[
|