Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wakame1367/kaggle_petfinder_pipeline
https://github.com/wakame1367/kaggle_petfinder_pipeline
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/wakame1367/kaggle_petfinder_pipeline
- Owner: wakame1367
- Created: 2020-11-03T07:27:24.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-05T05:25:55.000Z (about 4 years ago)
- Last Synced: 2023-03-10T20:56:56.691Z (almost 2 years ago)
- Language: Python
- Size: 31.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
Kaggle script build system template
===================================Goal is to develop code normally, separating it into modules,
and then package it into a single script for kaggle script submission.To create a submission, run ``./build.py``, this would
compress the whole package into a script in ``./build/script.py``,
which you can then submit into a kaggle script
(most convenient way is via file upload).Example kaggle script created in this way:
https://www.kaggle.com/lopuhin/kaggle-script-templateAdjustment:
- if you want to rename the package from ``easy_gold`` (not sure why?)
then you need to change ``build.py``, ``setup.py`` and
``script_template.py``.
- if you want to adjust the entry point (currently ``easy_gold/main.py``),
or run several commands, change ``script_template.py``.This is quite basic, feel free to adjust to your needs.
License is MIT.