[ ID = 1879 ] | Furui-Lab, Tokyo Institute of Technology |
Organisation name | Furui-Lab, Tokyo Institute of Technology |
Short name or acronym | Furui-Lab, Tokyo Institute of Technology |
Organisation type | Center |
Activity type | Speech technology |
Address | Furui Laboratory Department of Computer Science Graduate School of Information Science and Engineering Tokyo Institute of Technology 2-12-1 |
Postal Code | 152-8552 |
City | Ookayama, Meguro-ku, Tokyo |
Country | Japan |
Phone | + +81 3 5734 3480 |
Fax | + +81 3 5734 3480 |
Email | www-admin_(on)_furui.cs.titech.ac.jp |
Organisation URL | http://furui-www.cs.titech.ac.jp/ |
Logo | Description |
 |
What are the core research subjects in computer science
and engineering? This question may be difficult to answer in our
modern society where computers have been used in almost all areas and
there are various different demands on computer systems. Our
department think that the following research topics would play key
roles for providing sophisticated and highly reliable computer
systems.
1. Design of high speed and reliable computer architectures.
2. Efficient and high quality software development and large scale
software development.
3. Natural language understanding and processing. Development of high
performance inference systems and expert systems.
4. Pattern recognition and image processing. As their applications,
improvement of interfaces between computer and human.
These are research topics studied and taught in our department.
|
| Contact |
Name | |
Function | |
Department | |
Email | |
Phone | + |
Fax | + |
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"
|