Starter kit for getting started in the CrowdAI OpenSNP Challenge.
git clone https://github.com/crowdAI/opensnp-challenge-starter-kit
cd opensnp-challenge-starter-kit
pip install -r requirements.txt
pip install -U crowdai
Download all the files from the CrowdAI Dataset page,
and put them in the data/
folder. Then :
cd data/
gunzip *.gz
NOTE: You might NOT need to download all the files, or even use all the files to come up with your predictions. It is recommended to use just the subset_cm_train.npy
and train_heights.npy
to train your model, and use subset_cm_test.npy
to make the predictions.
import crowdai
challenge = crowdai.Challenge("OpenSNPChallenge2017", "YOUR_CROWDAI_API_KEY_HERE")
data = ... #a list of 137 predicted heights for all the 137 corresponding data points in the test set
challenge.submit(data)
challenge.disconnect()
python random_predict.py --api_key=<<YOUR_CROWDAI_API_KEY_HERE>>
python linear_regression_predict.py --api_key=<<YOUR_CROWDAI_API_KEY_HERE>>
python svr_predict.py --api_key=<<YOUR_CROWDAI_API_KEY_HERE>>
S.P. Mohanty [email protected]