|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2706 ] | Institute of Information Technologies - Bulg. Acad. of Sciences |
---|---|
Organisation name | Institute of Information Technologies - Bulg. Acad. of Sciences |
Short name or acronym | Institute of Information Technologies - Bulg. Acad. of Sciences |
Organisation type | Center |
Activity type | Speech technology |
Address | Acad. Bonchev st. bl. 29A |
Postal Code | 1113 |
City | Sofia |
Country | Bulgaria |
Phone | + +359 2 707586 |
Fax | + +359 2 720497 |
dochev_(on)_iinf.acad.bg | |
Organisation URL | |
Logo | Description |
![]() |
The involvement in NLP research in the Institute of information Technologies - BAS is tightly connected to the basic research topics at the Artificial Intelligence Department - Knowledge Representation and Logic Programming. It has begun a few years ago with the development of the Net-Clause Language (NCL). NCL is a distributed logic programming language, based on data-driven computation and spreading activation. A formalism for grammar representation with a built-in parser has been developed based on NCL. It offers distributed knowledge representation and processing, and a data-driven spreading activation control scheme. Grammars, described in the formalism, are mapped into network models and can be directly executed (parsed) as network programs in a distributed data-driven manner. The parsing scheme utilizes the NCL default reasoning mechanism. (NCL is available by anonymous ftp from the University of Georgia AI archive ai.uga.edu, directory ai.misc) The research and development activities in the AI department are currently oriented also towards hypertext and multimedia systems and cover application of knowledge-based methods and techniques in the presentation and retrieval of multimedia documents. |
Contact | |
Name | |
Function | |
Department | Artificial Intelligence |
Phone | + |
Fax | + |
![]() |
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" |