|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1453 ] | Dr Vincenzo Pallotta |
---|---|
Name | Pallotta, Dr Vincenzo |
Job Title | Research Assistant - Lecturer |
Organisation | Swiss Federal Institute of Technology - Lausanne |
Address | EPFL-IC-CGC-MEDIA |
Postal Code | 1015 |
City | Lausanne |
Country | Switzerland |
Phone | +39 (06) 452 214 299 |
Fax | +1 (240) 238-2609 |
Mobile | +41 (76) 365 13 58 |
Vincenzo.Pallotta_(on)_epfl.ch [@ replaced for spam protection] | |
Organisation URL | http://ic.epfl.ch |
Personal URL | http://www.icsi.berkeley.edu/~vincenzo/ |
Membership | ACL COMPULOG |
Languages | English Italiano, Francais, Romana |
Specialism | Abductive Inference
Cognitive Engineering Computational Linguistics Dialogue Dialogue Design Dialogue Management Dialogue Modelling Dialogue systems Logic Multimodal Communciation Multimodal Dialogue Systems Multimodal Human-Machine Communication Multimodality Natural Language Processing Natural Language Semantics Pragmatics Question-Answering Robust Parsing and Understanding Robust Parsing of Spontaneous Speech Robust Semantic Processing Robust Speech Understanding Semantic Interpretation Semantics Semantics and Pragmatics in Speech Understanding Software Architecture for Language Engineering Spoken Dialogue and Robust Speech Understanding Spoken Dialogue Modeling Spoken Dialogue Processing Spoken Dialogue Systems VoiceXML |
Photograph | Description or CV |
![]() |
http://www.icsi.berkeley.edu/~vincenzo/cv.html |
![]() |
Last update: 2005-10-10 17:02:20 #!/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" |