|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1867 ] | Hassan Sawaf |
---|---|
Name | Sawaf, Hassan |
Job Title | CTO; Director Research and Development; Managing Director |
Organisation | Applications Technology Inc. (AppTek); Net2Voice Inc.; Sawaf Ventures Ltd. |
Address | 6867 Elm Street #300 |
Postal Code | 22101 |
City | McLean, VA |
Country | United States |
Phone | +1 703 835 9079 |
Fax | + |
Mobile | +1 703 401 0079 |
hassan_(on)_sawaf.de [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | IEEE, GI |
Languages | English German, Arabic, French |
Specialism | Acoustic Modeling
Acoustic Phonetics Adaptive Speech Recognition Arabic Natural Language Processing Automated Natural Language Speech Automatic transcription of TV and radio broadcast News Business Application of Speech Technology Computational Linguistics Computer Telephony Integration Development and Implementation of Speech Technology Applications Dialogue Modelling Dynamic Lexicon Building Dynamic Programming in Speech Recognition Embedded Systems Grammar Handwriting and Signature Recognition Hidden Markov Models HMM-based OCR Information Retrieval Innovation Management Interactive Voice Response (IVR) Investment in Speech Processing Knowledge Management Knowledge-based Speech Recognition Language Modeling Language Processing Language Translation Large speech corpora Machine Translation Natural Language Processing Parsing Project Management Question-Answering Recognition Technologies Robust Parsing and Understanding Robust Parsing of Spontaneous Speech Robust Speech Recognition Robust Speech Understanding Speech Applications Speech Enabled IVRs Speech Recognition Speech Retrieval Speech Summarization Speech Understanding Speech-Enabled IVR Systems Speech-to-Speech Translation Spoken Dialogue Modeling Spoken Document Retrieval Spoken Translation Spontaneous Speech Statistical Language Modeling and Analysis Statistical Language Modelling for Speech Recognition Statistical Methods for Information Retrieval VoiceXML VoIP |
Photograph | Description or CV |
![]() |
http://www.elsnet.org/expertcvs/blank.html |
![]() |
Last update: 2006-08-30 21:57:05 #!/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" |