Giter Club home page Giter Club logo

nlp's Introduction

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 %}

nlp's People

Contributors

pratapakhand avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.