|
|||||||||||||||||||||||||||||||||||||||||
|
[ ID = 1965 ] | Dr Ho JongChol |
---|---|
Name | JongChol, Dr Ho |
Job Title | Korean LVCSR |
Organisation | University of sciences in DPR Korea |
Address | Pyongyang in DPRKorea |
Postal Code | 850 |
City | Pyongyang |
Country | Korea (North) |
Phone | + |
Fax | + |
Mobile | + |
hjcumshjb_(on)_yahoo.com [@ replaced for spam protection] | |
Organisation URL | |
Personal URL | |
Membership | samchonli |
Languages | English Korean |
Specialism | Acoustic Modeling
Acoustic Phonetics Adaptive Speech Recognition Audio Signal Processing Audiovisual Speech Processing Auditory Modelling Automated Natural Language Speech Bayesian Theory and Applications Business Application of Speech Technology Co-channel speech Density Estimation by Multivariate Normal Mixtures Detecting speech in noise Development and Implementation of Speech Technology Applications Digital Speech Processing Hidden Markov Models Information Retrieval Investment in Speech Processing Knowledge-based Speech Recognition Language Modeling Language Processing Multilingual Acoustic Modeling Multilingual Speech Recognition Non-HMM Methods for Speech Recognition Robust Speech Recognition Robust Speech Understanding Search Algorithms Search Engines Search Strategies Signal Processing Speaker Recognition Support Vector Machines for Speech Processing Wavelet Transforms Web Applications |
Photograph | Description or CV |
![]() |
|
![]() |
Last update: 2013-06-24 22:37:16 #!/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" |