Organisation profile: TCD Computational Linguistics Group
[ ID = 2224 ] | TCD Computational Linguistics Group |
Organisation name | TCD Computational Linguistics Group |
Short name or acronym | TCD Computational Linguistics Group |
Organisation type | Center |
Activity type | Speech technology |
Address | Computational Linguistics Lab, Westland Row 13.1.6, Department of Computer Science, Trinity College, University of Dublin |
Postal Code | 2 |
City | Dublin |
Country | Ireland |
Phone | + +353 1 608 2866 |
Fax | + +353 1 677 2204 |
Email | cogsci_(on)_tcd.ie |
Organisation URL | http://www.cs.tcd.ie/research_groups/clg/ |
Logo | Description |
 |
The Computational Linguistics Group focuses on basic
research on human language and reasoning. The group is interested in
understanding and modeling human cognitive abilities, as well as in
engineering applications that can be realized as the fruit of
successful scientific research in cognitive science and philosophy of
language. The Computational Linguistics Group is allied with the
Artificial Intelligence Group, sharing some personnel and aims.
|
| 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"
|
|