Before proceeding, create and activate a conda environment with Python 3.12.10:
conda create --name digit-recognizer-env python=3.12.10 -y
conda activate digit-recognizer-envUnzip the digit-recognizer.zip file into the data directory by running the following command:
unzip digit-recognizer.zip -d dataInstall the required dependencies using the requirements.txt file. You can use either conda or pip as the package installer:
pip install -r requirements.txt
# or
conda install --file requirements.txtRun the main.py script with the following example arguments:
python main.py --n_splits 5 --num_rounds 500 --data_directory data