Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 587 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 587 Bytes

Kernel Profiler

Upload Code style: black

Profile top scoring public kernels on Kaggle.

How to create a development environment

conda create -n <env_name> python=3.7
conda activate <env_name>

pip install -r requirements.txt -r requirements-dev.txt

How to run

python entrypoint.py -c titanic

# or

pip install -e .
profile -c titanic

Lint

flake8 .
black --check .