/NLP

Primary LanguagePython

NLP

{% extends "bootstrap/base.html" %}

{% block content %}

<style type="text/css"> body{ font:15px/1.5 Arial, Helvetica,sans-serif; } .spinner-1:before{ content: ""; box-sizing: border-box; position: absolute; top:50%; left: 50%; height: 60px; width: 60px; margin-top: -30px; margin-left: -30px; border-radius: 50%; border:6px solid transparent; border-top-color: #0091EA; animation: spinner 0.7s linear infinite; } @keyframes spinner { to { transform: rotate(360deg); } } li { background-color:#BDBDBD; } li:nth-child(odd) { background-color:#0091EA; } </style>

Natural Language Processing App

Understanding Everyday Language

	<label >Enter Your Text Below</label>
<textarea class="form-control" rows="3" cols="2" name="rawtext"></textarea>

<input type="submit" onclick="myAnalyser()" value="Submit" class="btn btn-primary ">
<input type="button" onclick="myFunction()" value="Clear" class="btn btn-outline-dark">

<a href="{{ url_for('index')}}" type="button" class="btn btn-danger" > Reset</a>

</form>


Main Points
This text has {{number_of_tokens}} tokens with {{len_of_words}} important point
Your Text

{{ received_text }}



Time Elapsed: {{ final_time }} seconds to analyse

This text is about:

{% for i in summary %}
  • {{i}} View
    	</li>
    </ul>
    
    
    {% endfor %}
    
Sentiment Polarity Subjectivity
Score: {{blob_sentiment}} {{blob_subjectivity}}

{% endblock %}

{% block scripts %}

{{ super() }}

<script> function myFunction() { document.getElementById("myForm").reset(); } </script> <script> function myAnalyser() { document.querySelector('.main div').style.display = 'none'; //Hide the main division document.querySelector('.main').classList.add('spinner-1'); // Server request setTimeout(() => { document.querySelector('.main').classList.remove('spinner-1'); //Remove the animation document.querySelector('.main div').style.display = 'block'; //Show the main division },5000);//Number of seconds to last } </script>

{% endblock %}