Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kmedian/numertweak
some utility functions for the numerai competition
https://github.com/kmedian/numertweak
Last synced: 2 days ago
JSON representation
some utility functions for the numerai competition
- Host: GitHub
- URL: https://github.com/kmedian/numertweak
- Owner: kmedian
- License: mit
- Created: 2018-11-25T11:41:25.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-04T16:07:18.000Z (almost 5 years ago)
- Last Synced: 2024-09-23T04:48:22.523Z (about 2 months ago)
- Language: Python
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/kmedian/numertweak.svg?branch=master)](https://travis-ci.org/kmedian/numertweak)
# numertweak
Some utility function for the [numer.ai](https://numer.ai/rounds) competition.This for my personal usage so far.
If you have any questions then send me an Email.## Table of Contents
* [Installation](#installation)
* [Commands](#commands)
* [Support](#support)
* [Contributing](#contributing)## Installation
The `numertweak` [git repo](http://github.com/kmedian/numertweak) is available as [PyPi package](https://pypi.org/project/numertweak)```
pip install numertweak
```In notebooks use this
```
%%capture
!pip install "numertweak>=0.2.0"
from numertweak import *
```## Commands
* Check syntax: `flake8 --ignore=F401,W503,E731`
* Remove `.pyc` files: `find . -type f -name "*.pyc" | xargs rm`
* Remove `__pycache__` folders: `find . -type d -name "__pycache__" | xargs rm -rf`
* Upload to PyPi with twine: `python setup.py sdist && twine upload -r pypi dist/*`## Support
Please [open an issue](https://github.com/kmedian/numertweak/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/numertweak/compare/).