Organisation profile: National Institute of Informatics
[ ID = 3018 ] | NII |
Organisation name | National Institute of Informatics |
Short name or acronym | NII |
Organisation type | National research centre |
Activity type | |
Address | 2-1-2 Hitotsubashi, Chiyoda-ku |
Postal Code | 101-8430 |
City | Tokyo |
Country | Japan |
Phone | + +81-3-4212-2620 |
Fax | + +81-3-3556-1916 |
Email | |
Organisation URL | http://www.nii.ac.jp |
Logo | Description |
 |
The National Institute of Informatics (NII) was established in April 2000 as an inter-university research institute of the Ministry of Education, Culture, Sports, Science and Technology (MEXT) in Japan. NII is pursuing a comprehensive and wide-range research program to build the academic field of informatics, with the following seven pillars as the center of its development efforts: information foundation, infrastructure of information systems, software, multimedia, intelligence systems, utilization of information in the research field, and policy for strengthening the ties between information and society. NII conducts research in several areas related to language technologies including information extraction, information retrieval, knowledge acquisition for machine translation, logical inference, terminology processing and parsing.
|
| Contact |
Name | Dr. Nigel Collier |
Function | Associate Professor |
Department | Symbolic reasoning group |
Email | collier_(on)_nii.ac.jp |
Phone | + +81-3-4212-2536 |
Fax | + +81-3-3556-1916 |
Update this profile
|
Last update: 2002-04-16 02:37:09
#!/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"
|
|