[ ID = 3084 ] | MATI |
Organisation name | K.E.Tsiolkovsky Russian State Technol. University - 'MATI', Moscow |
Short name or acronym | MATI |
Organisation type | Technological University |
Activity type | Department of Information Technologies |
Address | MATI, Orshanskaya street 3 |
Postal Code | 121552 |
City | Moscow |
Country | Russian Federation |
Phone | + |
Fax | + |
Email | |
Organisation URL | |
Logo | Description |
 |
Formal approaches to building semantic representations and underspecified
semantic representations of NL-sentences and NL-discourses; formal models of
linguistic databases; formalization of the correspondence between NL-texts and
their semantic representations (with respect to a knowledge base); knowledge
representation; the elaboration of ontologies; lexical semantics; the design of
NL-interfaces to applied intelligent systems (Russian, English); content
languages in multi-agent systems; agent communication languages; conceptual
search in full-text databases; logic-informational foundations of electronic
commerce; Semantic Web.
|
Member of elsnet
| Contact |
Name | Professor of Computer Science Vladimir A. Fomichov |
Function | |
Department | Department of Information Technologies |
Email | VDRFOM_(on)_AHA.RU |
Phone | + +7-095-930-9897 |
Fax | + |
Update this profile
|
Last update: 2002-09-04 06:26:25
#!/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"
|