Machine Learning: Laboratory Assignments
|
Laboratory Assignments
Instructions for submitg in lab assignments
All laboratory assignments must be turned in electronically, using the submit script.
The script is invoked by calling
~cs573x/public/Utilities/submit Assignment
from your UNIX shell.
(You may create an alias to reduce your typing requirements.) The
script copies everything within your current working directory to a
directory named Assignment in the TA's grading
account. Note that the script must be invoked from one of the Red
Hat PCs (e.g., pyrite or popeye). Use caution when submitting an assignment:
if you turn in the same assignment more than once, your previous
submission will be erased. You should receive email confirmation
of your submitted files. If you don't, or you if you receive an email
without mentioning your files, there was a problem with the
submission. In this case, contact the TA or the instructor for
help.
Do not run the submit script in your
home directory!
A common mistake is to run the submit script in one's
home directory. This will send all contents of your home
directory to the ComS 573 instructor and the TA!
An example
This example assumes that the script has been aliased, by adding
the following line to your .cshrc file (or the corresponding file for the Unix/Linux shell you use)
alias submit573 ~cs573x/public/Utilities/submit
- Copy the files you want to submit to a temporary directory.
mkdir tmp
cd tmp
cp ~/proj1/makefile ~/proj1/*.c ~/proj1/*.h .
- Execute the
submit script.
submit573 Lab1
- Wait for email confirmation.
You should receive a message similar to the following.
This is an automated response. Please do not reply.
We have received your "Lab1" submission at Wed Aug 17 17:18:52 CDT 2005.
We now have the following files from you for "Lab1":
---------------------------------------------------
makefile proj1.c proj1.h
---------------------------------------------------
- Remove the temporary directory.
cd ..
rm -R tmp
|