|  
 |||||||||||||||||||||||||||||||||||||||||||||||
 
       
       
 
 
 
 
 |  
 |||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3436 ] | IITP | 
|---|---|
| Organisation name | Computational linguistics laboratory, Institute for Information Transmission Problems, Russian Academy of Sciences | 
| Short name or acronym | IITP | 
| Organisation type | Public or governmental | 
| Activity type | Lang+Speech Technology research | 
| Address | 19, Bolshoj Karetnyj | 
| Postal Code | GSP-4 | 
| City | Moscow | 
| Country | Russian Federation | 
| Phone | + +7 095 2994927 | 
| Fax | + +7 095 2090579 | 
| Organisation URL | http://proling.iitp.ru | 
| Logo | Description | 
![]()  | 
Basic research activities pursued in the laboratory are aimed at:  - the development of a full operational formal model of language of the "Meaning - Text" type; - the development of a multi-functional multilingual linguistic processor (ETAP). Main options of ETAP: - machine translation; - multiligual communication on the basis of an interlingua (UNL); - computer-assisted learning of lexica on the basis of lexical functions; - construction of a dependency tree-bank of Russian.  | 
| Member of elsnet | Contact | 
| Name | Dr.Sc.(linguistics), Prof. Igor Boguslavsky | 
| Function | head of the laboratory | 
| Department | |
| bogus_(on)_iitp.ru | |
| Phone | + +7 095 2994927 | 
| Fax | + +7 095 2090579 | 
| 
 
 | 
Last update: 2004-10-09 15:55:03 #!/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" |