CRICKET AND CODING - CRACK THE CHALLENGE
CRICKET AND CODING - CRACK THE CHALLENGE
Problem Statement:
Given certain input parameters regarding the innings of an IPL T20
cricket match, predict the total runs scored by the batting team at
the end of 6 overs.
Data:
Note: The test file for an innings may have discrepancies that your model/code will have to take care of, e.g. new players making their debut in IPL 2023, change in team name, change in stadium name etc.
Setting up your training environment
> docker pull swarnimsoni/iitmbsiplcontest2023:latest
How to run your model
docker run \
--mount
type=bind,src=$(pwd)/test_file.csv,dst=/var/test_file.csv
\
--mount
type=bind,src=$(pwd)/submission.csv,dst=/var/submission.csv
\
--mount
type=bind,src=$(pwd)/mymodelfile.py,dst=/var/mymodelfile.py
\
--mount type=bind,src=$(pwd)/logs.txt,dst=/var/logs.txt \
swarnimsoni/iitmbsiplcontest2023:latest
docker run ^
--mount
type=bind,src="%cd%\test_file.csv",dst=/var/test_file.csv
^
--mount
type=bind,src="%cd%\submission.csv",dst=/var/submission.csv
^
--mount
type=bind,src="%cd%\mymodelfile.py",dst=/var/mymodelfile.py
^
--mount type=bind,src="%cd%\logs.txt",dst=/var/logs.txt ^
swarnimsoni/iitmbsiplcontest2023:latest
docker run `
--mount
type=bind,src=$(PWD)/test_file.csv,dst=/var/test_file.csv
`
--mount
type=bind,src=$(PWD)/submission.csv,dst=/var/submission.csv
`
--mount
type=bind,src=$(PWD)/mymodelfile.py,dst=/var/mymodelfile.py
`
--mount type=bind,src=$(PWD)/logs.txt,dst=/var/logs.txt `
swarnimsoni/iitmbsiplcontest2023:latest
How to make your submissions?
How to submit your model?
How will your code be evaluated?