Fix spacy evaluate command on non-GPU

This commit is contained in:
Matthew Honnibal 2017-10-06 13:17:47 -05:00
parent 16ba6aa8a6
commit f4c9a98166

View File

@ -42,7 +42,8 @@ def evaluate(cmd, model, data_path, gpu_id=-1, gold_preproc=False,
Evaluate a model. To render a sample of parses in a HTML file, set an output Evaluate a model. To render a sample of parses in a HTML file, set an output
directory as the displacy_path argument. directory as the displacy_path argument.
""" """
util.use_gpu(gpu_id) if gpu_id >= 0:
util.use_gpu(gpu_id)
util.set_env_log(False) util.set_env_log(False)
data_path = util.ensure_path(data_path) data_path = util.ensure_path(data_path)
displacy_path = util.ensure_path(displacy_path) displacy_path = util.ensure_path(displacy_path)