Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kmedian/threesplit
Three-way data split into training set, validation set, and test set.
https://github.com/kmedian/threesplit
Last synced: 2 days ago
JSON representation
Three-way data split into training set, validation set, and test set.
- Host: GitHub
- URL: https://github.com/kmedian/threesplit
- Owner: kmedian
- License: mit
- Created: 2018-10-24T06:53:13.000Z (about 6 years ago)
- Default Branch: main
- Last Pushed: 2021-04-27T18:02:43.000Z (over 3 years ago)
- Last Synced: 2024-08-09T17:38:34.953Z (3 months ago)
- Language: Python
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
[![PyPI version](https://badge.fury.io/py/threesplit.svg)](https://badge.fury.io/py/threesplit)
[![threesplit](https://snyk.io/advisor/python/threesplit/badge.svg)](https://snyk.io/advisor/python/threesplit)
[![Total alerts](https://img.shields.io/lgtm/alerts/g/kmedian/threesplit.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/kmedian/threesplit/alerts/)
[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/kmedian/threesplit.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/kmedian/threesplit/context:python)
[![deepcode](https://www.deepcode.ai/api/gh/badge?key=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwbGF0Zm9ybTEiOiJnaCIsIm93bmVyMSI6ImttZWRpYW4iLCJyZXBvMSI6InRocmVlc3BsaXQiLCJpbmNsdWRlTGludCI6ZmFsc2UsImF1dGhvcklkIjoyOTQ1MiwiaWF0IjoxNjE5NTQwNjI4fQ.YC9h-9S3cQqgPOlYq3WYA8SegkLEL4sFHN-DQAVQBY0)](https://www.deepcode.ai/app/gh/kmedian/threesplit/_/dashboard?utm_content=gh%2Fkmedian%2Fthreesplit)# threesplit
Three-way data split into training set, validation set, and test set.## Installation
The `threesplit` [git repo](http://github.com/kmedian/threesplit) is available as [PyPi package](https://pypi.org/project/threesplit)```
pip install threesplit
```## Usage
Check the [examples](examples) folder for notebooks.## Commands
* Check syntax: `flake8 --ignore=F401`
* Remove `.pyc` files: `find . -type f -name "*.pyc" | xargs rm`
* Remove `__pycache__` folders: `find . -type d -name "__pycache__" | xargs rm -rf`Publish
```sh
pandoc README.md --from markdown --to rst -s -o README.rst
python setup.py sdist
twine upload -r pypi dist/*
```## Support
Please [open an issue](https://github.com/kmedian/threesplit/issues/new) for support.## Contributing
Please contribute using [Github Flow](https://guides.github.com/introduction/flow/). Create a branch, add commits, and [open a pull request](https://github.com/kmedian/threesplit/compare/).