|
|||||||||||||||||||||||||||||||||||||||||||||||
|
[ ID = 0983 ] | ICS PAS |
---|---|
Organisation name | Institute of Computer Science, Polish Academy of Sciences |
Short name or acronym | ICS PAS |
Organisation type | Public or governmental |
Activity type | Language or Speech Technology research |
Address | Ordona 21 |
Postal Code | 01-237 |
City | Warsaw |
Country | Poland |
Phone | + 48 22 362841 |
Fax | + 48 22 376564 |
Organisation URL | http://nlp.ipipan.waw.pl/ |
Logo | Description |
![]() |
The two main threads of the work of the Linguistic Engineering (LE) Group at the Institute of Computer Science, Polish Academy of Sciences, are symbolic parsing and corpus linguistics. Within the first of these threads, the Group has constructed a large-scale grammar of Polish formalised within Head-driven Phrase Structure Grammar and implemented large fragments of the grammar as an ALE parser. The group members were also involved in a construction of a treebank of syntactic structures of Polish sentences using HPSG and building a syntactic parser based on a DCG grammar. Current work within this thread aims at extending the coverage of the existing parsers of Polish as well as their robustness and efficiency. The second thread of the LE Group's current work concerns corpus linguistics. The Group works on constructing a large linguistically annotated corpus of Polish accessible through the Internet, and on implementing tools for morphosyntactic and structural XML-based annotation of Polish. The new area of interest is information extraction from natural language (Polish) texts (shallow parsing methods). More information about the Linguistic Engineering Group is available at http://nlp.ipipan.waw.pl. |
Contact | |
Name | PhD Adam Przepiórkowski |
Function | |
Department | |
adamp_(on)_ipipan.waw.pl | |
Phone | + 48 22 362841 |
Fax | + 48 22 376564 |
![]() |
Last update: 2006-11-01 10:17:47 #!/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" |