| [ ID = 2167 ] | Sydney Language Technology Research Group | 
|---|
| Organisation name | Sydney Language Technology Research Group | 
| Short name or acronym | Sydney Language Technology Research Group | 
| Organisation type | Center | 
| Activity type | natural langauge processing | 
| Address | School of Information Technologies, University of Sydney | 
| Postal Code | 2006 | 
| City | Sydney, NSW | 
| Country | Australia | 
| Phone | + +61 2 9351 4174 | 
| Fax | + +61 2 9351 3838 | 
| Email | rcdmnl_(on)_cs.usyd.edu.au | 
| Organisation URL | http://www.cs.usyd.edu.au/~rcdmnl/ | 
| Logo | Description | 
|---|
|  | 
Mission
To advance the semantic analysis of natural language by the use of
innovative computational methods.
Objectives/Goals
 + To promote the application of the highest standard and most
 up-to-date methods of Machine Learning techniques to the analysis
 of natural language text.
 + To act as a consulting and service agent to the language industry
 in methods of data mining of natural language.
 + To develop generic software to support a wide range of
 applications for processing text.
 + To investigate and develop new methods of analysis of natural
 language.
 + To foster relationships with other computational linguists around
 the world to allow for collaboration and sharing of resources and
 skills.
 + To adapt and apply the methods of Minimum Message Length (MML)
 encoding to a range of computational linguistic problems.
 | 
|  | Contact | 
|---|
| Name | Professor Jon D. Patrick | 
| Function | Director | 
| Department |  | 
| Email | rcdmnl_(on)_cs.usyd.edu.au | 
| Phone | + +61 2 9351 3524 | 
| Fax | + +61 2 9351 3838 | 
|  Update this profile | Last update: 2002-04-15 08:57:50
#!/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" | 
|---|