|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2734 ] | EAGLES |
---|---|
Organisation name | Expert Advisory Group on Language Engineering Standards |
Short name or acronym | EAGLES |
Organisation type | EU Initiative |
Activity type | HLT |
Address | Piazza A. D'Ancona N° 1 |
Postal Code | 56127 |
City | Pisa |
Country | Italy |
Phone | + [+39] 050 315 2873 |
Fax | + [+39] 050 315 2839 |
eagles_(on)_ilc.cnr.it | |
Organisation URL | http://www.ilc.cnr.it/EAGLES/home.html |
Logo | Description |
![]() |
The Expert Advisory Group on Language Engineering Standards (EAGLES) is an initiative of the European Commission, within DG XIII Linguistic Research and Engineering programme, which aims at accelerating the provision of standards for: + very large-scale language resources (such as text corpora, computational lexicons and speech corpora); + means of manipulating such knowledge, via computational linguistic formalisms, mark up languages and various software tools; + means of assessing and evaluating resources, tools and products. Numerous well-known companies, research centres, universities and professional bodies across the European Union are collaborating under the aegis of EC DGXIII to produce the EAGLES Guidelines which set out recommendations for de facto standards and for good practice in the above areas of language engineering. |
Contact | |
Name | Prof. Antonio Zampolli |
Function | Director |
Department | Istituto di Linguistica Computazionale del CNR |
eagles_(on)_ilc.cnr.it | |
Phone | + [+39] 050 315 2837 |
Fax | + [+39] 050 315 2834 |
![]() |
Last update: 2002-05-09 19:59:31 #!/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" |