Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kaltsoon/pulp
https://github.com/kaltsoon/pulp
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kaltsoon/pulp
- Owner: Kaltsoon
- Created: 2014-05-14T12:43:05.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-05-14T12:45:43.000Z (over 10 years ago)
- Last Synced: 2023-04-06T05:12:20.328Z (over 1 year ago)
- Language: Python
- Size: 20.4 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
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