Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drvinceknight/sklDj
A django app as an interface to scikit-learn
https://github.com/drvinceknight/sklDj
Last synced: about 1 month ago
JSON representation
A django app as an interface to scikit-learn
- Host: GitHub
- URL: https://github.com/drvinceknight/sklDj
- Owner: drvinceknight
- License: mit
- Created: 2015-05-02T08:04:45.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-03T16:30:53.000Z (over 9 years ago)
- Last Synced: 2024-11-13T15:40:54.379Z (about 1 month ago)
- Language: Python
- Size: 618 KB
- Stars: 7
- Watchers: 5
- Forks: 7
- Open Issues: 19
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sklDj
[![Join the chat at https://gitter.im/drvinceknight/sklDj](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/drvinceknight/sklDj?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
A django site as an interface to [sci-kit learn](http://scikit-learn.org/stable/).
# Setup
Setup a virtual env:
cd sklDj
virtualenv envActivate virtual env:
source env/bin/activate
Install requirements:
pip install -r requirements.txt
(If you have any errors update pip: `pip install --upgrade pip`)
Navigate to the directory containing manage.py:
cd sklDj/
Ensure database up to date:
python manage.py migrate
Run the server:
python manage.py runserver
Create a super user:
python manage.py createsuperuser
# Testing
Testing on travis is very much a goal (PRs would be very welcome), at the moment
tests needs to be run locally:./run_tests.sh