Menu

Tree [r45] /
 History

HTTPS access


File Date Author Commit
 example_data 2009-08-25 pbouda [r12] nomsg
 src 2011-04-04 pbouda [r45] Bug fix: XML string elements where stripped fro...
 CHANGES 2009-12-18 pbouda [r31] nomsg
 LICENSE 2009-06-09 pbouda [r1] initial import
 MANIFEST 2009-06-16 pbouda [r8] nomsg
 MANIFEST.in 2009-06-16 pbouda [r8] nomsg
 README 2009-12-18 pbouda [r31] nomsg
 example1.py 2011-03-03 pbouda [r42] Bugfixes.
 example2.py 2011-03-03 pbouda [r42] Bugfixes.
 setup.py 2011-03-22 pbouda [r44] Minor change in package description in setup.py.

Read Me

Python Linguistic Annotation Libary
-----------------------------------
PyAnnotation is a Python Library to access and manipulate linguistically
annotated corpus files. Supported file format is currently only Elan XML,
with Kura XML and Toolbox files support planned for future releases. A
Corpus Reader API is provided to support statistical analysis within the
Natural Language Toolkit.
The software is licensed under the GNU General Public License. 


REQUIREMENTS
------------
You need to install the following packages:
- Python: http://python.org/download
- lxml: http://codespeak.net/lxml/index.html#download
- If you want to process data with NLTK: http://www.nltk.org/download


INSTALLATION
------------
To install PyAnnotation on Windows just start the .exe file you downloaded and
follow the instructions in the setup process.
To install PyAnnotation on Linux, Unix and other platforms you need to unpack
the file and start "setup.py" on the command line. Change to the directory
into which you downloaded the package and unpack it:

$ tar xzf pyannotation-x.y.z.tar.gz
$ cd pyannotation-x.y.z

Then, to install the package locally into your python repository (you may need
to have root privileges):

$ python setup.py install

The installation process will give you feedback and should finish without
errors.


BASIC USAGE
-----------
Here are a few examples what you can do with PyAnnotation. All the examples
process Elan files which are stored in one directory, the directory here is
"example_data" which is part of the package you downloaded. The package also
contains a sample script "example1.py" that runs all the commands presented
here, so you might just call "python example1.py" and see all the results on
your own computer at once. First, start a python interpreter and import
pyanntation for Elan:

$ python
Python 2.6.2 (release26-maint, Apr 19 2009, 01:56:41) 
[GCC 4.3.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pyannotation.corpusreader


Then load create a corpus reader and load a file into your corpus. The
second argument to the addFile method is the file type (.eaf here):

>>> cr = pyannotation.corpusreader.GlossCorpusReader()
>>> cr.addFile("example_data/turkish.eaf", pyannotation.data.EAF)


To get all sentences with their tags that have a gloss "ANOM" (here: tags
are morphemes and their glosses stored in a kind of tree):

>>> result = [s for s in cr.tagged_sents() for (word, tag) in s
...             for (morphem, gloss) in tag
...             if 'ANOM' in gloss and s not in locals()['_[1]']]
>>> print result
[[('eve', [('ev', ['home']), ('e', ['DIR'])]), ('geldi\xc4\x9fimde', ...


Only the sentences of the result:

>>>sents = [[w for (w, t) in s] for s in result]
>>> print sents
[['eve', 'geldi\xc4\x9fimde', 'ya\xc4\x9fmur',  ...


A word list from the result:

>>> tagged_words = [(w,t) for s in result for (w, t) in s]
>>> print tagged_words
[('eve', [('ev', ['home']), ('e', ['DIR'])]), ('geldi\xc4\x9fimde', ...


A list of morphemes and their tags from the result:

>>> tagged_morphemes = [(m,g) for s in result for (w,t) in s for (m,g) in t]
>>> print tagged_morphemes
[('ev', ['home']), ('e', ['DIR']), ('gel', ['come']), ('di\xc4\x9f', ...


Another query: find all sentences that contain a certain word (here: "home")
in their translation:

>>> import re
>>> result2 = [(s, translations) 
...            for (s, translations) in cr.tagged_sents_with_translations() 
...            for t in translations if re.search(r"\bhome\b", t)]
>>> print result2
[([('d\xc3\xbcn', [('d\xc3\xbcn', ['yesterday'])]), ('ak\xc5\x9fam', ...


And, last but not least, use your Elan corpus with NLTK. An example to get the
concordance for the word "bir" (turkish for "one"):

>>> import nltk.text
>>> text = nltk.text.Text(cr.words())
>>> text.concordance('bir') # find concordance for turkish "bir"
Building index...
Displaying 2 of 2 matches:
 daha rahat ederdim çünkü içimden bir ses yeter artık çalışma derken bi
ir ses yeter artık çalışma derken bir diğer ses de çalışmam gerektiğin


Just try it out for yourself what you can do with the data. PyAnnotation's
corpus reader for .eaf files has the following access methods for data:

# I{corpus}.mophemes()
# I{corpus}.words()
# I{corpus}.sents()
# I{corpus}.sents_with_translations()

# I{corpus}.tagged_morphemes()
# I{corpus}.tagged_words()
# I{corpus}.tagged_sents()
# I{corpus}.tagged_sents_with_translations()

More documentation is available at:

http://www.peterbouda.de/doc/pyannotation/index.html


SITE AND CONTACT
----------------
The website of this project is:

http://www.peterbouda.de/downloads/pyannotation

If you have any questions or ideas about pyannation just write an email
to:

p.bouda@gmx.de