def index_main_senses(): from resources.mainsense.mainsensecompiler import make_raw_index, refine_index, finalize make_raw_index(config.CLASSIFIED_DIR) refine_index() finalize()
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()