Skip to content

Latest commit

 

History

History
executable file
·
32 lines (21 loc) · 1.26 KB

File metadata and controls

executable file
·
32 lines (21 loc) · 1.26 KB

Python Quickstart (Windows)

Requirements: Python 3.6 or higher

Files that are required for your submission to run successfully such as: models, files that you create must be stored in python.

Place required Python packages in the requirements.txt file. These packages will be installed on the fly on our submission environment.

Our testing script run_tester_python.py will NOT install these packages; therefore, please ensure your system has the packages installed in order to test locally.

Windows

At all phases of the development process it is highly recommended to run py run_tester_python.py from within the python directory.

If your submission is not able to run with py run_tester_python.py, it will NOT run on our platform.

This script will ensure that the submission folder satisfies:

|--README.md
|-- python
---|-- core.py
---|-- requirements.txt
---|-- submission.py
---|-- run_tester_python.py
|-- src
---|-- model_tester.py
---|-- scorer.py
|-- data.csv

The script py run_tester_python.py will also run src/model_tester.py, and return a score.

The result & score can be found in the results folder that will be created upon successfully running py run_tester_python.py.