|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3166 ] | Natlanco |
|---|---|
| Organisation name | Natlanco |
| Short name or acronym | Natlanco |
| Organisation type | Company |
| Activity type | Language and Speech technology |
| Address | Frans Van Ryhovelaan 280 |
| Postal Code | B9000 |
| City | Gent |
| Country | Belgium |
| Phone | + +32 92370306 |
| Fax | + |
| info_(on)_natlantech.com | |
| Organisation URL | http://www.natlantech.com |
| Logo | Description |
![]() |
Natlanco develops innovative Language and Speech Software and Language Models. > Natural Language Modelling Solutions: LingBench IDE: Revolutionary, ultra efficient, highly integrated, language-modelling tool with intuitive 3D grammar editing. From scratch or to improve existing models. Includes many morpho-syntactic grammar and lexicon building features, as well as import and export facilities to/from external formats. > Natural Language Processing Solutions: LingBench SDK: ultra high speed, high quality modular engines in an SDK for parsing and other analysis, based on model files. Highly intelligent textual dialogue systems > Lipsynchronization: (Speech recognition technology): talking head animation from real time live speech input. Quasi language independent! |
| Contact | |
| Name | Filip De Brabander |
| Function | chief developer and managing director |
| Department | |
| filip_(on)_natlantech.com | |
| Phone | + +32 92370306 |
| Fax | + |
|
|
Last update: 2003-06-11 05:36:50 #!/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" |