|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0514 ] | Roberto Pieraccini |
---|---|
Name | Pieraccini, Roberto |
Job Title | Chief Technology Officer |
Organisation | SpeechCycle, Inc. |
Address | 26 Broadway, 11TH FL. |
Postal Code | 10004 |
City | New York, NY |
Country | United States |
Phone | +1 646 826 2336 |
Fax | + |
Mobile | + |
robertopieraccini_(on)_yahoo.com [@ replaced for spam protection] | |
Organisation URL | http://www.speechcycle.com |
Personal URL | http://www.robertopieraccini.com |
Membership | ACL ISCA IEEE |
Languages | English Italian |
Specialism | Automated Natural Language Speech
Business Application of Speech Technology Computational Linguistics Corpus Linguistics Development and Implementation of Speech Technology Applications Dialogue Dialogue Design Dialogue Management Dialogue Modelling Dialogue System Evaluation Dialogue systems Dynamic Programming in Speech Recognition Embedded Systems Emotion in Speech Grammar Hidden Markov Models Knowledge Management Multimodal Dialogue Systems Natural Language Processing Speech Recognition Speech Understanding Spoken Dialogue and Robust Speech Understanding Spoken Dialogue Modeling Spoken Dialogue Processing Spoken Dialogue Systems Statistical Language Modeling and Analysis Statistical Language Modelling for Speech Recognition Statistical Methods for Information Retrieval |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2008-08-28 14:23:17 #!/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" |