Rudraaaa76 commited on
Commit
05c42fc
·
verified ·
1 Parent(s): 3640cd9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -51,6 +51,11 @@ sequence_length = 50
51
  app = Flask(__name__)
52
  CORS(app)
53
 
 
 
 
 
 
54
  # Define a route for the prediction function
55
  @app.route('/predict', methods=['POST'])
56
  def predict_behavior():
 
51
  app = Flask(__name__)
52
  CORS(app)
53
 
54
+
55
+ @app.route('/')
56
+ def home();
57
+ return "Welcome to driving behavior analysis"
58
+
59
  # Define a route for the prediction function
60
  @app.route('/predict', methods=['POST'])
61
  def predict_behavior():