NIPS5 Oversight

Steve Hanson jose at learning.siemens.com
Tue Jun 6 06:52:25 EDT 2006


NIPS-5 attendees:

Due to an oversight we regret the inadvertent
exclusion of 3 papers from the recent NIPS-5
volume.  

These papers were:

Mark Plutowski, Garrison Cottrell and Halbert White: Learning
Mackey-Glass from 25 examples, Plus or Minus 2

Yehuda Salu: Classification of Multi-Spectral Pixels by the Binary
Diamond Neural Network

A. C. Tsoi, D.S.C. So and A. Sergejew: Classification of
Electroencephalograms using Artificial Neural Networks


We are writing this note to (1) acknowledge our error (2) point out
where you can obtain a present copy of the author's papers and  (3)
inform you that they will appear in their existing form or an updated
form in NIPS Vol. 6.

Presently, Morgan Kaufmann will be sending a
bundle of the 3 formatted papers to all NIPS-5 attendees, these will be
marked as NIPS-5 Addendum.  You should also be able to retrieve
an official copy from NEUROPROSE archive.

Again, we apologize for the oversight to the
authors.

Stephen J. Hanson, General Chair
Jack Cowan, Program Chair
C. Lee Giles, Publications Chair


#!/bin/sh
########################################################################
# usage: ohio <FILENAME> <PRINTERFLAGS>
#
# A Script to get, uncompress, and print postscript
# files from the neuroprose directory on cheops.ohio-state.edu
#
# By Tony Plate & Jordan Pollack
########################################################################

if [ "$1" = "" ] ; then
  echo usage: $0 "<filename> <printerflags>"
  echo
  echo The filename must be exactly as it is in the archive, if your
  echo file is not found the first time, look in the file \"ftp.log\" 
  echo for a list of files in the archive.
  echo
  echo The printerflags are used for the optional lpr command that
  echo is executed after the file is retrieved. A common use would
  echo be to use -P to specify a particular postscript printer.
  exit
fi

########################################################################
#  set up script for ftp
########################################################################
cat > .ftp.script <<END
user anonymous neuron
binary
cd pub/neuroprose
ls
get $1 /tmp/$1
quit
END

########################################################################
# Run and delete the script generating a ftp.log file and error
########################################################################
echo Trying ftp, please wait, could take several minutes ...
ftp -n archive.cis.ohio-state.edu < .ftp.script > ftp.log
rm -f .ftp.script
if [ ! -f /tmp/$1 ] ; then
  echo Failed to get file - please inspect ftp.log for list of available files
  exit
fi

########################################################################
# Uncompress if necessary
########################################################################
echo Retrieved /tmp/$1
case $1 in
  *.Z)
  echo Uncompressing /tmp/$1
  uncompress /tmp/$1
  FILE=`basename $1 .Z`
  ;;
  *)
  FILE=$1
esac

########################################################################
#  query to print file
########################################################################
echo -n "Send /tmp/$FILE to 'lpr $2' (y or n)? "
read x
case $x in
  [yY]*)
  echo Printing /tmp/$FILE
  lpr $2 /tmp/$FILE
  ;;
esac
echo File left in /tmp/$FILE




More information about the Connectionists mailing list