示例#1
0
def process(file):
    cf = prep.mainPreprocess(file)
    return cf
示例#2
0
#this module is used to output a formatted 'easy on the eye' xml of the gold coref data
import processGold as prep
import sys

file = sys.argv[1]
cf = prep.mainPreprocess(file)
ps = cf.toprettyxml()
print ps.encode('utf-8')
示例#3
0
def process(file):
    cf=prep.mainPreprocess(file)
    output=onto.mainOutput(cf)
    return output
示例#4
0
def process(file):
    cf=prep.mainPreprocess(file)
    output=onto.mainOutput(cf)
    return output
示例#5
0
#this module is used to output a formatted 'easy on the eye' xml of the gold coref data
import processGold as prep
import sys

file=sys.argv[1]
cf=prep.mainPreprocess(file)
ps=cf.toprettyxml()
print ps
示例#6
0
def process(file):
    cf=prep.mainPreprocess(file)
    return cf