tar xvfz cifar10-py.tgzThe dataset is CIFAR 10. To save your time, the dataset has been loaded onto the Argon cluster, at "/nfsscratch/cifar_10_data/".
To run the program, you may copy the script cifar10.sh into your working directory on Argon (make it executable), create a subdirectory called "result", and submit a job as follows:
qsub cifar10.shIf the job number is xxxxxx, then check the files cifar.oxxxxxx and cifar.exxxxxx for the output of cifar10.sh, when the job is done. You may use
qstat -u HAWKIDto check the status of your jobs, where HAWKID is your hawkid.
If you prefer to run the code on a different machine, you may copy /nfsscratch/cifar10_data.tgz from the Argon machine, or run the following Python code on the new machine:
python generate_cifar10_tfrecords.py --data-dir=${PWD}/cifar-10-dataand use ${PWD}/cifar-10-data for cifar10_main.py:
python cifar10_main.py --data-dir=${PWD}/cifar-10-data \ --job-dir=${PWD}/result \ --num-gpus=1 \ --train-steps=1000
Here are your tasks:
Please submit everything required, including the changed code and output of a sample run, the accuracy reports, counts of parameters in the ICON dropbox for Assignment 6 before the deadline.
Thank you!