Monday, December 18, 2006

Paper writting season

ACL 2007 deadline is on 23rd January 2007.

Sunday, December 17, 2006

Ada-boosting

Ada-boosting - We will boost our classifiers

(thx ajarn manow)

Saturday, December 16, 2006

ies4linux

ies4linux can help us to run IE on GNU/Linux.

(thx nf)

Wednesday, December 13, 2006

Open statistical machine translation seminar

Statistical machine translation seminar


  • On 18th December 2006, 10:00 - 11:30

  • At room 204, building 15, Faculty of Engineering, Kasetsart university, Bangkok

  • By Philipp Koehn

Wednesday, November 22, 2006

ICT Minister of Thailand and OLPC ( 100 USD Laptop )

ICT Minister of Thailand - Dr. Sittichai Pookaiyaudom, said that he will support OLPC (or 100 USD Laptop) but he is not one who will make a decision whether Thailand will buy OLPCs.



Reference: http://www.blognone.com/node/3408

Monday, November 13, 2006

wmcore building

TestWM Screen




Now I can build wmcore on my desktop pc. :-D


$ ./configure --prefix=/home/vee --with-gsback=/home/vee/gnustep/core/back/
$ make

I just moved StepWiRE from the GNUmakefile and supplied correct path of gsback for configure. :-)

Saturday, November 11, 2006

datrie for a large dictionary

datrie is a trie implementation in C using double array by thep. Its purpose is mainly for assisting word segmentation in libthai, which 16 bit array's indexes are enough. However, I want to use datrie in my experiment where the dictionary is quite large. Therefore I try to expand the array indexes to be 32 bits. To make a patch is pretty convenient since thep has already had plan to extend it. The patch is here. Currently, I think one must be able to choose 16 or 32 bits as a parameter of configure (autoconf). Anyways, in order to do easy 16/32 bits switching, I still have some issues waited for discussion here (in Thai). By the way, datrie32 (without 16/32 switching) must be already sufficient for using in my experiment.