|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0952 ] | Speech and Language Processing Research Group, Purdue University |
---|---|
Organisation name | Speech and Language Processing Research Group, Purdue University |
Short name or acronym | Speech and Language Processing Research Group, Purdue University |
Organisation type | Center |
Activity type | Speech technology |
Address | 1285 Electrical Engineering Building |
Postal Code | 47907-1285 |
City | West Lafayette, IN |
Country | United States |
Phone | + +1 765 494-3652 |
Fax | + +1 765 494-6440 |
Organisation URL | http://purcell.ecn.purdue.edu/~speechg/ |
Logo | Description |
![]() |
Speech and Language Processing Research Group focuses on topics related to speech recogniton, natural language processing, and language perception and understanding. Examples of current projects include name recognition, interfacing speech recognition and natural language processing, extensions to Hidden Markov Models, PAC-learning of Constraint Dependency Grammars, and part-of-speech tagging. |
Contact | |
Name | Professor Mary P. Harper |
Function | Associate Professor |
Department | Electrical and Computer Engineering |
harper_(on)_ecn.purdue.edu | |
Phone | + |
Fax | + |
![]() |
Last update: 2002-04-10 12:32:58 #!/usr/bin/ksh # cntr.cgi -- # version 0 DOC=$DOCUMENT_ROOT$DOCUMENT_URI VSTART=28-08-2008 WRONGLOG=${DOCUMENT_ROOT}/cntr.txt echo Content-type:text/html echo case $DOC in *experts*) CDIR=${DOCUMENT_ROOT}/cntex ;; *orgs*) CDIR=${DOCUMENT_ROOT}/cntor ;; *) WRONG=yes ;; esac CFILE=${DOC##*/} case ${CFILE} in [0-9][0-9][0-9][0-9].html) WRONG=no ;; *) WRONG=yes ;; esac [ $WRONG = yes ] && { echo "$(date) $REMOTE_ADDR ${DOC}" >> $WRONGLOG exit } CCNT=${CDIR}/${CFILE%.html}.txt CLCK=${CDIR}/${CFILE%.html}.lck [ -s $CCNT ] && COUNT=$(head -1 $CCNT) COUNT=$(( ${COUNT:-0} + 1 )) [ -f $CLCK ] || { touch $CLCK echo $COUNT > $CCNT rm -f $CLCK } echo " Visits since $VSTART: $COUNT" |