| [ ID = 2708 ] | Institute of Control Systems - Georgian Academy of Sciences |
| Organisation name | Institute of Control Systems - Georgian Academy of Sciences |
| Short name or acronym | Institute of Control Systems - Georgian Academy of Sciences |
| Organisation type | Center |
| Activity type | Speech technology |
| Address | 34, K. Gamsakhurdia Avenue |
| Postal Code | 380060 |
| City | Tbilisi |
| Country | Georgia |
| Phone | + +995 32 380496 |
| Fax | + |
| Email | |
| Organisation URL | http://www.acnet.ge/contsys.htm |
| Logo | Description |
 |
Main Scientific Directions:
+ Elaboration of optimal control theory and optimization methods;
+ Elaboration of control systems;
+ Elaboration of informational systems for electronic indication;
man-computer speech interrelation in dialogue regime;
+ Systems of speech modeling (at the same time computer
translation);
+ Elaboration of new means of computing technology;
+ Elaboration of teleautomatic and variable-structured systems;
+ Elaboration of electrical energetic mathematical models; renewal
of energy's resources - heat pumps; problems of artificial
intellect.
|
|
| Contact |
| Name | Professor Mindia Salukvadze |
| Function | Director |
| Department | |
| Email | msaluk_(on)_ics.kheta.ge |
| Phone | + +995 32 372044 |
| Fax | + +995 32 942391 |
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"
|