|
|
|
Expert profile: Professor Gerald Penn
| [ ID = 0785 ] |
Professor Gerald Penn |
| Name |
Penn, Professor Gerald |
| Job Title | Assistant Professor |
| Organisation |
University of Toronto |
| Address | 10 King's College Rd. |
| Postal Code | M5S 3G4 |
| City | Toronto |
| Country | Canada |
| Phone | + +1.416.925.7293 |
| Fax | + +1.416.978.1455 |
| Mobile | + |
| Email |
gpenn_(on)_cs.toronto.edu
[@ replaced for spam protection] |
| Organisation URL |
http://www.cs.toronto.edu |
| Personal URL |
http://www.cs.toronto.edu/~gpenn |
| Membership |
ACL
ACM-SIGACT, ACM-SIGPLAN, Sigma Xi |
| Languages | English German |
| Specialism |
Computational Linguistics
Computational Morphology
Grammar Compilers
Language Learning
Language Modeling
Linguistics
Logic
Machine Translation
Mathematical Linguistics
Natural Language Semantics
NLP
Parsing
Prosody modelling
Prosody perception
Statistical Language Modeling and Analysis
Syntax
Text Generation
Text-to-Speech |
| Photograph | Description or CV |
 |
http://www.cs.toronto.edu/~gpenn/research.html
|
Update your profile
|
Last update: 2004-09-21 21:42:42
#!/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"
|
|