Commit 4af84cc2 authored by Wanigasinghe N.T. | IT18229912's avatar Wanigasinghe N.T. | IT18229912

Merge branch 'feat/it18229912' into 'develop'

Feat/it18229912

See merge request !30
parents 77a5e717 4503eb08
......@@ -33,10 +33,9 @@
</div>
<div class="col-4 px-3">
<div class="p-t-30 text-center">
<h3 class="m-b-0 pb-4">Emotion detections Real time</h3>
<h3 class="m-b-0 pb-4">Emotion detections Real time</h3>
</div>
<a type="button" href="{% url 'warningemotionaudio' %}" class="btn btn-warning">Warning!</a>
</div>
</div>
<hr/>
......
......@@ -44,42 +44,70 @@
<h5 class="ac-title"><i class="fa fa-rocket"></i>Pronunciation posteriori probability score percentage</h5>
<div class="ac-content">
<p class="my-3">{{ mysppron }}</p>
</div>
<div class="alert alert-success alert-dismissible fade show" role="alert">
<strong>Holy guacamole!</strong> You should check in on some of those fields below.
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
</div>
</div>
<div class="ac-item">
<h5 class="ac-title"><i class="fa fa-rocket"></i>Gender recognition and mood of speech</h5>
<div class="ac-content">
<p class="my-3">{{ myspgend }}</p>
<div class="alert alert-success alert-dismissible fade show" role="alert">
<strong>Holy guacamole!</strong> You should check in on some of those fields below.
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
</div>
</div>
<div class="ac-item">
<h5 class="ac-title"><i class="fa fa-rocket"></i>Prosodic features of your speech</h5>
<div class="ac-content">
<p class="my-3">{{ prosody }}</p>
<div class="alert alert-success alert-dismissible fade show" role="alert">
<strong>Holy guacamole!</strong> You should check in on some of those fields below.
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
</div>
</div>
<div class="ac-item">
<h5 class="ac-title"><i class="fa fa-rocket"></i>Detect and count number of syllables</h5>
<div class="ac-content">
<p class="my-3">{{ myspsyl }}</p>
<div class="alert alert-success alert-dismissible fade show" role="alert">
<strong>Holy guacamole!</strong> You should check in on some of those fields below.
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
</div>
</div>
<div class="ac-item">
<h5 class="ac-title"><i class="fa fa-rocket"></i>Detect and count number of fillers and pauses</h5>
<div class="ac-content">
<p class="my-3">{{ mysppaus }}</p>
<div class="alert alert-success alert-dismissible fade show" role="alert">
<strong>Holy guacamole!</strong> You should check in on some of those fields below.
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
</div>
</div>
<div class="ac-item">
<h5 class="ac-title"><i class="fa fa-rocket"></i>Measure the rate of speech (speed)</h5>
<div class="ac-content">
<p class="my-3">{{ myspsr }}</p>
<div class="alert alert-success alert-dismissible fade show" role="alert">
<strong>Holy guacamole!</strong> You should check in on some of those fields below.
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
</div>
</div>
<div class="ac-item">
<h5 class="ac-title"><i class="fa fa-rocket"></i>Measure the articulation (speed)</h5>
<div class="ac-content">
<p class="my-3">{{ myspatc }}</p>
<div class="alert alert-success alert-dismissible fade show" role="alert">
<strong>Holy guacamole!</strong> You should check in on some of those fields below.
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
</div>
</div>
<div class="ac-item">
......@@ -88,6 +116,10 @@
<p class="my-3">{{ myspst }}</p>
<p class="my-3">{{ myspod }}</p>
<p class="my-3">{{ myspbala }}</p>
<div class="alert alert-success alert-dismissible fade show" role="alert">
<strong>Holy guacamole!</strong> You should check in on some of those fields below.
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
</div>
</div>
<div class="ac-item">
......@@ -100,7 +132,10 @@
<p class="my-3">{{ myspf0max }}</p>
<p class="my-3">{{ myspf0q25 }}</p>
<p class="my-3">{{ myspf0q75 }}</p>
<div class="alert alert-success alert-dismissible fade show" role="alert">
<strong>Holy guacamole!</strong> You should check in on some of those fields below.
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
</div>
</div>
</div>
......
{% extends 'users/base.html' %}
{% load static %}
{% block content %}
<div class="container">
<nav aria-label="breadcrumb mt-4">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="{% url 'home' %}">Home</a></li>
<li class="breadcrumb-item"><a href="{% url 'feedback' %}">Dashboard</a></li>
<li class="breadcrumb-item"><a href="{% url 'feedback' %}">Emotion-predictions(Audio)</a></li>
<li class="breadcrumb-item active" aria-current="page">Warning-emotions(Audio)</li>
</ol>
</nav>
<div class="heading-text heading-section text-center py-3">
<h4>Unusual Emotion Detections - Audio</h4>
</div>
<div class="d-flex justify-content-center mb-5">
<a class="btn btn-outline" href="{% url 'overallfeedback' %}" type="submit">View summery detail</a>
</div>
</div>
{% endblock content %}
......@@ -12,6 +12,7 @@ urlpatterns = [
path('feedback/summery', views.overallfeedback, name='overallfeedback'),
path('feedback/pronuciation-vocubalry-errors', views.pronuciation, name='pronuciation'),
path('feedback/emotion/audio', views.emotionaudio, name='emotionaudio'),
path('feedback/emotion/audio/warnings', views.warningemotionsaudio, name='warningemotionaudio'),
path('feedback/emotion/video', views.emotionvideo, name='emotionvideo'),
path('feedback/emotion/audio/prosody', views.emotionaudioprosody, name='emotionaudioprosody'),
path('login/', auth_view.LoginView.as_view(template_name='users/login.html'), name="login"),
......
......@@ -47,6 +47,9 @@ def aboutus(request):
def pronuciation(request):
return render(request, 'users/pronuciation.html')
def warningemotionsaudio(request):
return render(request, 'users/unusualemotionswarning.html')
def feedback(request):
all_video=Video.objects.all()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment