Nomi78600's picture
Initial project commit with Git LFS setup
8e34e12
# FER_deploy/Model_deploy/urls.py
from django.urls import path
from . import views
urlpatterns = [
# This maps the root URL of our app to the predict_emotion view
path('', views.predict_emotion, name='predict_emotion'),
]