mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
14 lines
261 B
Python
14 lines
261 B
Python
|
"""Read a vector file, and prepare it as binary data, for easy consumption"""
|
||
|
|
||
|
import plac
|
||
|
|
||
|
from spacy.vocab import write_binary_vectors
|
||
|
|
||
|
|
||
|
def main(in_loc, out_loc):
|
||
|
write_binary_vectors(in_loc, out_loc)
|
||
|
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
plac.call(main)
|