|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 2358 ] | eCommerce and Tourism Research Laboratory |
---|---|
Organisation name | eCommerce and Tourism Research Laboratory |
Short name or acronym | eCommerce and Tourism Research Laboratory |
Organisation type | Specialty society |
Activity type | Speech technology |
Address | Istituto Trentino di Cultura Centro per la Ricerca Scientifica e Tecnologica via Sommarive 18 |
Postal Code | 38050 |
City | Povo-Trento |
Country | Italy |
Phone | + +39 0461 314521 |
Fax | + +39 0461 302040 |
Organisation URL | http://ecotur.itc.it |
Logo | Description |
![]() |
We are a new research laboratory of ITC-irst aimed at the development of methods, techniques and tools for eCommerce applications in Tourism. Our strategy is to leverage ITC-irst expertise to foster a new generation of web enabled intelligenttools focused on the tourism application domain. We bet on the importance of AI techniques , such as Machine Learning, Case-Based Reasoning, Natural Language Processing and Knowledge Representation, for the development of successful e-Services. The first practical result will be a personal travel assistant based onCase Based Reasoning and User Modelling. |
Contact | |
Name | Francesco Ricci |
Function | |
Department | |
ricci_(on)_itc.it | |
Phone | + |
Fax | + |
![]() |
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" |