Configuration for the Stanford NLP library """ import os from lexnlp import get_lib_path __author__ = "ContraxSuite, LLC; LexPredict, LLC" __copyright__ = "Copyright 2015-2018, ContraxSuite, LLC" __license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/master/LICENSE" __version__ = "0.2.2" __maintainer__ = "LexPredict, LLC" __email__ = "*****@*****.**" # Setup Stanford configuration STANFORD_VERSION = "2017-06-09" STANFORD_BASE_PATH = '/usr/lexnlp/libs/stanford_nlp' STANFORD_POS_PATH = os.path.join( STANFORD_BASE_PATH, 'stanford-postagger-full-{0}'.format(STANFORD_VERSION)) if not os.path.exists(STANFORD_POS_PATH): STANFORD_POS_PATH = os.path.join( get_lib_path(), "stanford_nlp", "stanford-postagger-full-{0}".format(STANFORD_VERSION)) STANFORD_NER_PATH = os.path.join(STANFORD_BASE_PATH, "stanford-ner-{0}".format(STANFORD_VERSION)) if not os.path.exists(STANFORD_NER_PATH): STANFORD_NER_PATH = os.path.join( get_lib_path(), "stanford_nlp", "stanford-ner-{0}".format(STANFORD_VERSION))
from lexnlp import get_lib_path __author__ = "ContraxSuite, LLC; LexPredict, LLC" __copyright__ = "Copyright 2015-2017, ContraxSuite, LLC" __license__ = "https://github.com/LexPredict/lexpredict-lexnlp/blob/master/LICENSE" __version__ = "0.1.4" __maintainer__ = "LexPredict, LLC" __email__ = "*****@*****.**" # Setup Stanford configuration STANFORD_VERSION = "2017-06-09" STANFORD_BASE_PATH = '/usr/lexnlp/libs/stanford_nlp' STANFORD_POS_PATH = os.path.join( STANFORD_BASE_PATH, 'stanford-postagger-full-{0}'.format(STANFORD_VERSION)) if not os.path.exists(STANFORD_POS_PATH): STANFORD_POS_PATH = os.path.join( get_lib_path(), "stanford_nlp", "stanford-postagger-full-{0}".format(STANFORD_VERSION)) STANFORD_NER_PATH = os.path.join( STANFORD_BASE_PATH, "stanford-ner-{0}".format(STANFORD_VERSION)) if not os.path.exists(STANFORD_NER_PATH): STANFORD_NER_PATH = os.path.join( get_lib_path(), "stanford_nlp", "stanford-ner-{0}".format(STANFORD_VERSION))