|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0999 ] | Gerasimos Xydas |
---|---|
Name | Xydas, Gerasimos |
Job Title | PhD student |
Organisation | Speech Group, University of Athens |
Address | Department of Informatics and Telecommunications, Panepistimioupolis |
Postal Code | GR 15784 |
City | Ilisia |
Country | Greece |
Phone | + +30 210 7275320 |
Fax | + |
Mobile | + |
gxydas_(on)_di.uoa.gr [@ replaced for spam protection] | |
Organisation URL | http://www.di.uoa.gr/~gxydas |
Personal URL | http://www.di.uoa.gr/~gxydas |
Membership | |
Languages | English |
Specialism | Speechtechnology:
Audio Signal Processing Corpora and Dialogue Annotations Corpus statistics Developer Tools Development and Implementation of Speech Technology Applications Dialogue dialogue systems Digital Speech Processing Embedded Systems Hidden Markov Models Intonation Large speech corpora Lexicons Machine Learning Algorithms Microphones Mobile devices Multilinguality Multimodal Communciation Multimodal Dialogue Systems NLP Parsing Pronunciation Modelling Prosody Prosody and songs Prosody modelling Prosody perception PSOLA, Harmonic + Noise Signal Analysis Signal Processing Software Architecture for Language Engineering Speech Analysis Speech Databases Speech Processing Speech Synthesis Speech Technologies Text-to-Speech Tokenisation VoiceXML VoIP |
Photograph | Description or CV |
| |
Update your profile | Last update: 2004-05-24 21:35:33 #!/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" |