| |
Homework
- Assignment 1 [pdf]
and the dataset for question 7 [data]
PyML is installed in the 680 class directory.
You will need to add the build directory to your python path;
the directory you need to add depends on whether you're using a 32-bit or 64-bit machine.
The 32-bit directory is:
/s/bach/b/class/cs680/PyML/build/lib.linux-i686-2.4/
The 64-bit directory is:
/s/bach/b/class/cs680/PyML/build/lib.linux-x86_64-2.4/
To automate this, I have the following code in my .bashrc file:
PYTHON_VERSION=`python -V 2>&1`
PYTHON_VERSION=${PYTHON_VERSION#Python}
export PYTHONPATH=$HOME/PyML/build/lib.linux-`arch`-$PYTHON_VERSION
You'll need to replace $HOME$ with /s/bach/b/class/cs680/
Assignment 2 [pdf]
and the dataset for question 7 [data]
|