Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -10,6 +10,11 @@ app = Flask(__name__)
|
|
10 |
|
11 |
# Load the trained model
|
12 |
|
|
|
|
|
|
|
|
|
|
|
13 |
# Route for object detection
|
14 |
@app.route('/detect-object/<id>', methods=['POST','GET'])
|
15 |
def detect_pothole(id):
|
|
|
10 |
|
11 |
# Load the trained model
|
12 |
|
13 |
+
|
14 |
+
@app.route('/')
|
15 |
+
def aaa():
|
16 |
+
return "hi"
|
17 |
+
|
18 |
# Route for object detection
|
19 |
@app.route('/detect-object/<id>', methods=['POST','GET'])
|
20 |
def detect_pothole(id):
|