|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 3901 ] | TextAI |
|---|---|
| Organisation name | Text Analysis International |
| Short name or acronym | TextAI |
| Organisation type | Private company |
| Activity type | Language or Speech Technology provider |
| Address | 4159 Old Adobe Road |
| Postal Code | 94306 |
| City | Palo Alto, California |
| Country | United States |
| Phone | +1 877-235-6259 |
| Fax | + |
| info_(on)_textanalysis.com | |
| Organisation URL | http://www.textanalysis.com |
| Logo | Description |
![]() |
TextAI offers advanced tools for the construction of text analyzers, information extraction systems, and other NLP systems. Core product is VisualText, an integrated development environment for NLP, much like a specialized Visual C++ GUI programmer's workbench. Specific application areas include business, financial, legal, medical, real estate, patents. |
| Contact | |
| Name | Amnon Meyers |
| Function | Chief Technology Officer |
| Department | Technical |
| amnon.meyers_(on)_textanalysis.com | |
| Phone | +1 949-376-8507 |
| Fax | + |
|
|
Last update: 2008-08-28 19:25:43 #!/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" |