|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3402 ] | RALI |
---|---|
Organisation name | RALI, University of Montreal |
Short name or acronym | RALI |
Organisation type | University |
Activity type | Lang+Speech Technology research |
Address | RALI, DIRO, C.P. 6128, succursale Centre-ville |
Postal Code | H3C 3J7 |
City | Montréal, QC |
Country | Canada |
Phone | + +1 514 343 7535 |
Fax | + +1 514 343 2496 |
Organisation URL | http://rali.iro.umontreal.ca/ |
Logo | Description |
RALI (Recherche appliquée en linguistique informatique, applied research in computational linguistics) is a language technology research group within the Computer Science department of the University of Montreal. Current research activities include interactive machine translation, translation quality assurance, email handling, text summarization, and both monolingual and cross-linguistic question answering and information retrieval. Language capabilities cover English, French, Chinese, Arabic and Spanish. In addition to a range of basic language resources and technology, finished products perform identification of the language and encoding of text documents, web access to bilingual concordances and monolingual corpora, reaccentuation of French text, and web mining for translation corpora; demonstrations of some of these are available through the RALI web site. | |
Contact | |
Name | Dr. Graham Russell |
Function | |
Department | RALI |
russell_(on)_iro.umontreal.ca | |
Phone | + +1 514 343 6111, ext 3509 |
Fax | + +1 514 343 2496 |
Update this profile | Last update: 2004-08-23 17:59:01 #!/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" |