https://github.com/davidam/damescikit
https://github.com/davidam/damescikit
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/davidam/damescikit
- Owner: davidam
- License: gpl-3.0
- Created: 2020-04-08T18:01:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-11-03T09:02:32.000Z (over 2 years ago)
- Last Synced: 2024-11-24T19:51:07.770Z (over 1 year ago)
- Language: Python
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
David
Table of Contents
_________________
1 Check Test
2 Pypi
Learning machine learning with scikit from Tests by David Arroyo
Menéndez
1 Check Test
============
+ In the path:
,----
| $ cd damescikit
`----
+ Execute all tests:
,----
| $ nosetests3 tests
`----
+ Execute one file:
,----
| $ nosetests3 tests/test_models.py
`----
+ Execute one test:
,----
| nosetests3 tests/test_models.py:TddInPythonExample.test_vectorizer_method_returns_correct_result
`----
2 Pypi
======
+ To install from local:
$ pip install -e .
+ To install create tar.gz in dist directory:
$ python3 setup.py register sdist
+ To upload to pypi:
$ twine upload dist/damenltk-0.1.tar.gz
+ You can install from Internet in a python virtual environment to
check:
$ python3 -m venv /tmp/dn $ cd /tmp/dn $ source bin/activate $ pip3
install damenltk