Spaces:
Runtime error
Runtime error
Commit
·
b64aae1
1
Parent(s):
a7f0335
new issue
Browse files- Web_app/app.py +2 -1
- requirements.txt +2 -2
Web_app/app.py
CHANGED
@@ -662,4 +662,5 @@ def visualize_csv(file_path):
|
|
662 |
return f"An error occurred while processing the file: {str(e)}", 500
|
663 |
|
664 |
if __name__ == '__main__':
|
665 |
-
app.run(debug=True)
|
|
|
|
662 |
return f"An error occurred while processing the file: {str(e)}", 500
|
663 |
|
664 |
if __name__ == '__main__':
|
665 |
+
app.run(host='0.0.0.0', port=5000, debug=True)
|
666 |
+
|
requirements.txt
CHANGED
@@ -69,8 +69,8 @@ sniffio==1.3.1
|
|
69 |
sounddevice==0.5.1
|
70 |
sympy==1.13.1
|
71 |
tokenizers==0.21.1
|
72 |
-
torch==2.
|
73 |
-
torchvision==0.
|
74 |
tqdm==4.67.1
|
75 |
transformers==4.49.0
|
76 |
typing_extensions==4.12.2
|
|
|
69 |
sounddevice==0.5.1
|
70 |
sympy==1.13.1
|
71 |
tokenizers==0.21.1
|
72 |
+
torch==2.3.1
|
73 |
+
torchvision==0.18.0
|
74 |
tqdm==4.67.1
|
75 |
transformers==4.49.0
|
76 |
typing_extensions==4.12.2
|