|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1216 ] | Maria Wolters |
---|---|
Name | Wolters, Maria |
Job Title | Development Engineer |
Organisation | Rhetorical Systems |
Address | 4 Crichton's Close |
Postal Code | EH8 8DT |
City | Edinburgh |
Country | United Kingdom |
Phone | + 44 131 525 6829 |
Fax | + 44 131 525 6888 |
Mobile | + |
maria_(on)_rhetorical.com [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | |
Languages | English |
Specialism | Speechtechnology:
Acoustic Phonetics Anaphora Computational Linguistics Corpora Corpora and Dialogue Annotations Corpus Linguistics Corpus statistics Dialogmanagement Dialogue dialogue systems Discourse analysis Discourse Theories Experimental Phonetics Intonation Linguistics Machine Learning Natural Language Semantics Neural Networks NLP Oral Dialogue Para- and Extralinguistic Aspects of Speech Pattern Recognition and Statistical Data Analysis Phonetics Pragmatics Pronunciation Modelling Prosodic Studies in Spontaneous Language Analysis Prosody Prosody (Linguistic Description of) Prosody modelling Prosody perception Psycholinguistics of Phonology Semantics Semantics and Pragmatics in Speech Understanding Speech Applications Speech Databases Speech Evaluation speech intelligibility measurement Speech Perception Speech Production speech quality measurement Speech Synthesis Spoken Dialog Processing Spoken Dialogue Modeling Spoken Dialogue Systems Spoken Language Resources and Evaluation Spontaneous Speech Statistical Pattern Recognition Support Vector Machines for Speech Processing Symbolic Speech Synthesis Text-to-Phonetic Representation Text-to-Speech Text-To-Speech Conversion Usability of Speech Applications |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2002-04-05 12:00:00 #!/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" |