mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
32 lines
1018 B
Python
32 lines
1018 B
Python
if __name__ == "__main__":
|
|
import plac
|
|
import sys
|
|
from wasabi import msg
|
|
from spacy.cli import download, link, info, package, pretrain, convert
|
|
from spacy.cli import init_model, profile, evaluate, validate, debug_data
|
|
from spacy.cli import train_cli
|
|
|
|
commands = {
|
|
"download": download,
|
|
"link": link,
|
|
"info": info,
|
|
"train": train_cli,
|
|
"pretrain": pretrain,
|
|
"debug-data": debug_data,
|
|
"evaluate": evaluate,
|
|
"convert": convert,
|
|
"package": package,
|
|
"init-model": init_model,
|
|
"profile": profile,
|
|
"validate": validate,
|
|
}
|
|
if len(sys.argv) == 1:
|
|
msg.info("Available commands", ", ".join(commands), exits=1)
|
|
command = sys.argv.pop(1)
|
|
sys.argv[0] = f"spacy {command}"
|
|
if command in commands:
|
|
plac.call(commands[command], sys.argv[1:])
|
|
else:
|
|
available = f"Available: {', '.join(commands)}"
|
|
msg.fail(f"Unknown command: {command}", available, exits=1)
|