Sentience is a Machine Learning Web Application developed in Python 2.7.
The Web Application is a Django app, with the following machine learning modules and 3rd party libraries:-
- [nltk] (http://www.nltk.org/)
- [scikit-learn] (http://scikit-learn.org/stable/)
- [numpy] (http://www.numpy.org/)
- [scipy] (https://www.scipy.org/)
- Sentiment Analysis of User Input
To get the app running locally, one needs to have [python] (https://www.python.org/downloads/) installed in the system.
👉 Install Python 2.7 version
Thereafter install the following packages using pip: django, numpy, scipy, nltk, scikit-learn.
pip install django
pip install scipy
pip install numpy
pip install scikit-learn
pip install nltk
Thereafter clone or download the source and you're good to go!!
Navigate to the root folder of the application. Then execute the following command:-
python manage.py runserver
The app should be up and running on [localhost, port 8000] (http://localhost:8000/). Yay!!