Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -28,6 +28,6 @@ def predict_price():
|
|
| 28 |
# Return the prediction as a JSON response
|
| 29 |
return jsonify({'Price': prediction})
|
| 30 |
##
|
| 31 |
-
|
| 32 |
-
#
|
| 33 |
-
|
|
|
|
| 28 |
# Return the prediction as a JSON response
|
| 29 |
return jsonify({'Price': prediction})
|
| 30 |
##
|
| 31 |
+
if __name__ == '__main__':
|
| 32 |
+
# Run the app on all available interfaces on port 5000
|
| 33 |
+
app.run(debug=True, host='0.0.0.0', port=5000)
|