|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2832 ] | NLPLAB |
---|---|
Organisation name | Natural Language Processing Laboratory - Linköpings universitet |
Short name or acronym | NLPLAB |
Organisation type | University department |
Activity type | Language technology |
Address | Linköpings universitet, Department of Computer and Information Science |
Postal Code | S-581 83 |
City | Linköping |
Country | Sweden |
Phone | + +46 13 28 24 22 |
Fax | + +46 13 28 28 95 |
lah_(on)_ida.liu.se | |
Organisation URL | http://www.ida.liu.se/labs/nlplab/ |
Logo | Description |
![]() |
NLPLAB is a research group at the Department of Computer and Information Science, Division for Human-Centered Systems, that works on natural language processing and related areas of cognitive science. The group was formed in 1986. Currently (April 2002) we are five senior researchers and six ph.d.-students. The focus of research is on dialogue systems, dialogue in information search, computer-aided translation, and parallel text processing. |
Contact | |
Name | Prof. Lars Ahrenberg |
Function | Lab Leader |
Department | |
lah_(on)_ida.liu.se | |
Phone | + +46 13 28 24 22 |
Fax | + +46 13 28 28 95 |
![]() |
Last update: 2002-04-15 12:39:02 #!/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" |