Organisation profile: Jozef Stefan Institute, Department of Intelligent Systems
[ ID = 0981 ] | IJS E8 |
Organisation name | Jozef Stefan Institute, Department of Intelligent Systems |
Short name or acronym | IJS E8 |
Organisation type | Center |
Activity type | Language technology |
Address | Jamova 39 |
Postal Code | SI-1000 |
City | Ljubljana |
Country | Slovenia |
Phone | + +386 1 1773528 |
Fax | + +386 1 1251038 |
Email | |
Organisation URL | http://nl.ijs.si/ |
Logo | Description |
 |
The Department of Intelligent Systems at the Jozef Stefan Institute is one of the established European computer science research groups with a 20 year tradition of R&D in artificial intelligence, intelligent systems, information systems, medical informatics, cognitive sciences and natural language processing. Our work in NLP focuses mainly on the development of resources of natural language, primarily Slovene, on research on computational models of language and on practical applications in the field of human language technologies. The main research areas of the NLP group are text and web mining, corpus linguistics, natural language learning, and speech generation. Implemented systems include an award-winning text-to-speech system for Slovene, an automatic Web page taxonomy builder and classifier, and a Web based concordancer.
|
| Contact |
Name | Dr. Tomaz Erjavec |
Function | Scientific Associate |
Department | Department of Intelligent Systems |
Email | tomaz.erjavec_(on)_ijs.si |
Phone | + |
Fax | + |
Update this profile
|
Last update: 2002-04-25 06:57:05
#!/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"
|
|