|
|||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||
| [ ID = 2836 ] | Laboratory for the Computational Studies of Language (LcsL) - Middle East Technical University |
|---|---|
| Organisation name | Laboratory for the Computational Studies of Language (LcsL) - Middle East Technical University |
| Short name or acronym | Laboratory for the Computational Studies of Language (LcsL) - Middle East Technical University |
| Organisation type | Center |
| Activity type | Speech technology |
| Address | Department of Computer Engineering, Middle East Technical University |
| Postal Code | 06531 |
| City | Ankara |
| Country | Turkey |
| Phone | + +90 312 210 5545 |
| Fax | + +90 312 210 1259 |
| x_(on)_LcsL.metu.edu.tr | |
| Organisation URL | http://www.lcsl.metu.edu.tr |
| Logo | Description |
![]() |
The goal of LcsL is to promote and conduct
interdisciplinary research in computer science, computational
linguistics, cognitive science, and linguistics.
Current Research Tracks in LcsL:
+ Turkish syntax -- Aysenur
+ Punctuational devices in NLP, computational semantics and
discourse -- Bilge
+ Morpho-syntactic generation of surface structure -- Burcu
+ Categorial lexicon, morphosyntax-lexicon interface, word order,
directionality -- Cem
+ Pro-drop & the lexicon -- Caglar
+ Morpheme segmentation -- Cagri
+ Analysis of Turkish discourse, narrative analysis within a
cognitive perspective, language acquisition -- Deniz
+ Grammar acquisition from Corpus, MT -- Erkan
+ Structure of discourse in Turkish -- Meltem
+ Turkish lexicon: a comparative study (set-CCG v. CCG) -- Ruken
+ Structural MT, argument structure -- Selcuk
+ Incremental interpretation & discourse -- Murat
+ Structure of discourse -- Umit
|
| Contact | |
| Name | Professor Cem Bozsahin |
| Function | Director |
| Department | |
| bozsahin_(on)_metu.edu.tr | |
| Phone | + +90 312 210 5580 |
| 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" |