| 
 | |||||||||||||||||||||||||||||||||||||||||||||||
| 
 | |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 0851 ] | ELIS Speech Lab | 
|---|---|
| Organisation name | ELIS Speech Lab | 
| Short name or acronym | ELIS Speech Lab | 
| Organisation type | Center | 
| Activity type | Speech technology | 
| Address | Sint-Pietersnieuwstraat 41 | 
| Postal Code | B-9000 | 
| City | Gent | 
| Country | Belgium | 
| Phone | + +32 9 264 33 66 | 
| Fax | + +32 9 264 35 94 | 
| Organisation URL | http://chardonnay.elis.rug.ac.be/nl/index.html | 
| Logo | Description | 
|  | One of their major research topics is speaker-independent continuous speech recognition (SI-CSR). A SI-CSR system called T-RecS has been developed in the ELIS Speech Lab. The important features of this system are: auditory model front-end, an initial segmentation stage, a two-level phonetic classifier based on Artificial Neural Networks, and a heuristic search based decision module. T-RecS was designed in such a way that it is easily adapted to a new task or language. Their research in this domain is currently focussed on: improved phonetic classification at the speech unit level, new models for speech recognition, integration of higher level knowledge in the decision module. | 
| Contact | |
| Name | Nick Cremelie | 
| Function | |
| Department | |
| cremelie_(on)_elis.rug.ac.be | |
| Phone | + | 
| Fax | + | 
|  Update this profile | Last update: 2002-04-10 12:32:58 #!/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" |