Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kaltsoon/pulp


https://github.com/kaltsoon/pulp

Last synced: 14 days ago
JSON representation

Awesome Lists containing this project

README

        

# make a virtual environment
virtualenv env
source ./env/bin/activate

# install dependancies
pip install django
pip install djangorestframework
pip install nltk # maybe not necessary
pip install numpy
pip install scipy
pip install scikit-learn

# sync and build article database
python manage.py syncdb
python manage.py xml2db JMLR.xml
python manage.py tfidf
python manage.py linrel

# run testing webserver
python manage.py runserver

# go to 127.0.0.1:8000