Commit ·
82c98ad
1
Parent(s): 90356b2
Attempt fix run error
Browse files- README.md +1 -0
- app/frontend/gradio_ui.py +2 -2
README.md
CHANGED
|
@@ -6,6 +6,7 @@ colorTo: blue
|
|
| 6 |
sdk: docker
|
| 7 |
sdk_version: 6.0.2
|
| 8 |
entrypoint: ./app.sh
|
|
|
|
| 9 |
pinned: false
|
| 10 |
short_description: 'Unified Platform for Forecasting • Segmentation • Inventory '
|
| 11 |
---
|
|
|
|
| 6 |
sdk: docker
|
| 7 |
sdk_version: 6.0.2
|
| 8 |
entrypoint: ./app.sh
|
| 9 |
+
app_port: 7860
|
| 10 |
pinned: false
|
| 11 |
short_description: 'Unified Platform for Forecasting • Segmentation • Inventory '
|
| 12 |
---
|
app/frontend/gradio_ui.py
CHANGED
|
@@ -565,8 +565,8 @@ def main():
|
|
| 565 |
custom_css = ui.get_custom_css() + custom_css
|
| 566 |
|
| 567 |
demo.launch(
|
| 568 |
-
|
| 569 |
-
|
| 570 |
share=True,
|
| 571 |
debug=True,
|
| 572 |
footer_links=["gradio", "settings"],
|
|
|
|
| 565 |
custom_css = ui.get_custom_css() + custom_css
|
| 566 |
|
| 567 |
demo.launch(
|
| 568 |
+
server_name="0.0.0.0",
|
| 569 |
+
server_port=7860,
|
| 570 |
share=True,
|
| 571 |
debug=True,
|
| 572 |
footer_links=["gradio", "settings"],
|