Package dataprocessor :: Package dataformat :: Module jcmlformat
[hide private]
[frames] | no frames]

Source Code for Module dataprocessor.dataformat.jcmlformat

 1  ''' 
 2  Created on Aug 31, 2011 
 3   
 4  @author: Eleftherios Avramidis 
 5  ''' 
 6   
 7  from genericformat import GenericFormat 
 8   
9 -class JcmlFormat(GenericFormat):
10 ''' 11 classdocs 12 ''' 13 TAG = {"doc" : "jcml", 14 "sent" : "judgedsentence", 15 "src" : "src" , 16 "tgt" : "tgt" , 17 "ref" : "ref" , 18 "annotations" : "annotations", 19 "annotation" : "annotation" , 20 "langsrc" : "langsrc", 21 "langtgt" : "langtgt", 22 "default_langsrc" : "es", 23 "default_langtgt" : "en", 24 }
25