|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2813 ] | TALP |
---|---|
Organisation name | Research Center for Language and Speech Technology andApplications (TALP) - Universitat Politècnica de Catalunya |
Short name or acronym | TALP |
Organisation type | Center |
Activity type | Speech technology |
Address | C/ Jordi Girona 1-3 |
Postal Code | 08034 |
City | Barcelona, Catalonia |
Country | Spain |
Phone | + |
Fax | + |
Organisation URL | http://www.talp.upc.es |
Logo | Description |
![]() |
TALP (Research Center for Language and Speech Technology and Applications) is a Specific Research Center in Universitat Politècnica de Catalunya (UPC), devoted to technology and applications of the natural language processing techniques, either for spoken or written language. It's formed by two research groups in UPC: The Natural Language Processing Research Group from the Software Department (LSI), and the Speech Processing Group from the Signal Theory and Communications Department (TSC). TALP Research Center belongs to ELSNET (European Network of Excellence in Human Language Technologies) and is members of the Reference Center in Language Engineering ( CREL ) of the Catalan government. There are 37 researchers working at TALP, 26 of them are lecturers in the Telecommunications or Computer Science curricula at UPC. Since the academic year 1999-2000 TALP has been offering the new European Master in Language and Speech. |
Member of elsnet | Contact |
Name | Climent Nadeu |
Function | |
Department | |
climent_(on)_talp.upc.es | |
Phone | + +34 934 016 438 |
Fax | + +34 934 016 447 |
![]() |
Last update: 2002-04-17 12:08:25 #!/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" |