コード例 #1
0
ファイル: pipeline.py プロジェクト: necrop/htclassifier_build
def index_main_senses():
    from resources.mainsense.mainsensecompiler import make_raw_index, refine_index, finalize

    make_raw_index(config.CLASSIFIED_DIR)
    refine_index()
    finalize()
コード例 #2
0
ファイル: pipeline.py プロジェクト: necrop/htclassifier_build
def index_compounds():
    from compounds.indexer.rawindexer import make_raw_index
    from compounds.indexer.refiner import refine_index

    make_raw_index(config.CLASSIFIED_DIR)
    refine_index()