|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 3316 ] | KIND |
---|---|
Organisation name | Knowledge Information & Data Management Laboratory, SIIT |
Short name or acronym | KIND |
Organisation type | research laboratory within academic institute |
Activity type | |
Address | 131 Moo 5, Tiwanont Road, Bangkadi, Muang Pathum Thani |
Postal Code | 12000 |
City | Pathum Thani |
Country | Thailand |
Phone | + +66 2501 3505 |
Fax | + +66 2501 3524 |
thanaruk_(on)_siit.tu.ac.th | |
Organisation URL | http://kind.siit.tu.ac.th/ |
Logo | Description |
|
Focus on two main research fields, Knowledge Discovery in Database (KDD or Data Mining) and Natural Language Processing (NLP). For KDD, its research concerns association rule mining, classification, clustering, prediction, and other data mining-related fundamental and practical topics such as the development of decision support systems. For NLP, its research topics include information retrieval, information extraction, text classification, word segmentation, speech processing. In both fields, we stress on the research and development of new basic techniques that can be applied to various applications. These techniques mainly involve with several different disciplines, such as machine learning, statistical learning, database technology, computational linguistics, decision theory, information theory and data visualization. |
Contact | |
Name | Assistant Professor Thanaruk Theeramunkong |
Function | Assistant Professor and Chairperson of Information Technology Program |
Department | School of Information and Management Technology |
thanaruk_(on)_siit.tu.ac.th | |
Phone | + +66 2501 3505 (ext 2004) |
Fax | + Fax: +66(0) 2986 9112-3http://www.siit.tu.ac.th SIIT at Bangkadi131 Moo 5, Tiwanont Road, BangkadiMuang Pathum Thani 12000, ThailandTel. +66(0) 2501 3505-20+66 2501 3524 |
![]() |
Last update: 2004-02-25 03:14:46 #!/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" |