* Hastily hack download file

This commit is contained in:
Matthew Honnibal 2015-01-31 22:48:32 +11:00
parent 1af5ee1a69
commit 63abdf154c
1 changed files with 2 additions and 5 deletions

View File

@ -44,11 +44,8 @@ def main(data_size='all'):
data_url = ALL_DATA_DIR_URL
elif data_size == 'small':
data_url = SM_DATA_DIR_URL
if not path.exists(DEST_DIR):
shutil.move(DEST_DIR, '/tmp')
install_data(data_url, path.dirname(DEST_DIR))
else:
install_parser_model(PARSER_URL, DEST_DIR)
install_dep_vectors(DEP_VECTORS_URL, path.join(DEST_DIR, 'vocab'))
if __name__ == '__main__':