Spaces:
Running
on
T4
Running
on
T4
Update gradio_app.py
Browse filesDebug: imprimir dir(zero) y comentar zero.init()
- gradio_app.py +3 -1
gradio_app.py
CHANGED
|
@@ -767,5 +767,7 @@ if __name__ == '__main__':
|
|
| 767 |
demo = build_app()
|
| 768 |
app = gr.mount_gradio_app(app, demo, path="/")
|
| 769 |
from spaces import zero
|
| 770 |
-
|
|
|
|
|
|
|
| 771 |
uvicorn.run(app, host=args.host, port=args.port)
|
|
|
|
| 767 |
demo = build_app()
|
| 768 |
app = gr.mount_gradio_app(app, demo, path="/")
|
| 769 |
from spaces import zero
|
| 770 |
+
import sys
|
| 771 |
+
print(">>> ATTRS spaces.zero:", dir(zero), file=sys.stderr)
|
| 772 |
+
|
| 773 |
uvicorn.run(app, host=args.host, port=args.port)
|