|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2060 ] | Association for Machine Translation in the Americas - AMTA |
---|---|
Organisation name | Association for Machine Translation in the Americas - AMTA |
Short name or acronym | Association for Machine Translation in the Americas - AMTA |
Organisation type | Association |
Activity type | Speech technology |
Address | 1201 Pennsylvania Avenue, N.W., Suite 300 |
Postal Code | 20004 |
City | Washington, DC |
Country | United States |
Phone | + +1 703 716 0912 |
Fax | + +1 703 716 0912 |
AMTAinfo_(on)_att.net | |
Organisation URL | http://www.isi.edu/natural-language/organizations/AMTA.html |
Logo | Description |
![]() |
AMTA is an association dedicated to anyone interested in the translation of languages using computers in some way. This includes people with translation needs, commercial system developers, researchers, sponsors, and people studying, evaluating, and understanding the science of machine translation (MT) and educating the public on important scientific techniques and principles involved. It provides an opportunity for commercial developers, users--both professional translators and casual MT users--and research scientists to meet in a convivial atmosphere and share ideas, dreams, and hopes. |
Contact | |
Name | Mr. Elliott Macklovitch |
Function | President |
Department | Department d'informatique et de recherche operationelle, Universite de Montreal |
macklovi_(on)_iro.iro.umontreal.ca | |
Phone | + +1 514 343 7535 |
Fax | + +1 514 343 2496 |
![]() |
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" |