spaCy/spacy/cli/__init__.py

43 lines
1.9 KiB
Python
Raw Normal View History

2020-06-22 01:45:40 +03:00
from wasabi import msg
from ._util import app, setup_cli # noqa: F401
2023-06-26 12:41:03 +03:00
from .apply import apply # noqa: F401
from .assemble import assemble_cli # noqa: F401
2020-06-22 01:45:40 +03:00
# These are the actual functions, NOT the wrapped CLI commands. The CLI commands
# are registered automatically and won't have to be imported here.
from .benchmark_speed import benchmark_speed_cli # noqa: F401
2023-06-26 12:41:03 +03:00
from .convert import convert # noqa: F401
2020-08-27 19:17:58 +03:00
from .debug_config import debug_config # noqa: F401
2023-06-26 12:41:03 +03:00
from .debug_data import debug_data # noqa: F401
2022-04-07 11:48:45 +03:00
from .debug_diff import debug_diff # noqa: F401
2023-06-26 12:41:03 +03:00
from .debug_model import debug_model # noqa: F401
from .download import download # noqa: F401
💫 New JSON helpers, training data internals & CLI rewrite (#2932) * Support nowrap setting in util.prints * Tidy up and fix whitespace * Simplify script and use read_jsonl helper * Add JSON schemas (see #2928) * Deprecate Doc.print_tree Will be replaced with Doc.to_json, which will produce a unified format * Add Doc.to_json() method (see #2928) Converts Doc objects to JSON using the same unified format as the training data. Method also supports serializing selected custom attributes in the doc._. space. * Remove outdated test * Add write_json and write_jsonl helpers * WIP: Update spacy train * Tidy up spacy train * WIP: Use wasabi for formatting * Add GoldParse helpers for JSON format * WIP: add debug-data command * Fix typo * Add missing import * Update wasabi pin * Add missing import * 💫 Refactor CLI (#2943) To be merged into #2932. ## Description - [x] refactor CLI To use [`wasabi`](https://github.com/ines/wasabi) - [x] use [`black`](https://github.com/ambv/black) for auto-formatting - [x] add `flake8` config - [x] move all messy UD-related scripts to `cli.ud` - [x] make converters function that take the opened file and return the converted data (instead of having them handle the IO) ### Types of change enhancement ## Checklist <!--- Before you submit the PR, go over this checklist and make sure you can tick off all the boxes. [] -> [x] --> - [x] I have submitted the spaCy Contributor Agreement. - [x] I ran the tests, and all new and existing tests passed. - [x] My changes don't require a change to the documentation, or if they do, I've added all required information. * Update wasabi pin * Delete old test * Update errors * Fix typo * Tidy up and format remaining code * Fix formatting * Improve formatting of messages * Auto-format remaining code * Add tok2vec stuff to spacy.train * Fix typo * Update wasabi pin * Fix path checks for when train() is called as function * Reformat and tidy up pretrain script * Update argument annotations * Raise error if model language doesn't match lang * Document new train command
2018-11-30 22:16:14 +03:00
from .evaluate import evaluate # noqa: F401
2023-06-26 12:41:03 +03:00
from .find_threshold import find_threshold # noqa: F401
from .info import info # noqa: F401
from .init_config import fill_config, init_config # noqa: F401
2020-09-28 16:09:59 +03:00
from .init_pipeline import init_pipeline_cli # noqa: F401
2023-06-26 12:41:03 +03:00
from .package import package # noqa: F401
from .pretrain import pretrain # noqa: F401
from .profile import profile # noqa: F401
from .project.assets import project_assets # noqa: F401
2023-06-26 12:41:03 +03:00
from .project.clone import project_clone # noqa: F401
from .project.document import project_document # noqa: F401
from .project.dvc import project_update_dvc # noqa: F401
2020-08-23 22:15:12 +03:00
from .project.pull import project_pull # noqa: F401
2023-06-26 12:41:03 +03:00
from .project.push import project_push # noqa: F401
from .project.run import project_run # noqa: F401
from .train import train_cli # noqa: F401
from .validate import validate # noqa: F401
2020-06-22 01:45:40 +03:00
@app.command("link", no_args_is_help=True, deprecated=True, hidden=True)
def link(*args, **kwargs):
"""As of spaCy v3.0, symlinks like "en" are not supported anymore. You can load trained
pipeline packages using their full names or from a directory path."""
2020-06-22 01:45:40 +03:00
msg.warn(
"As of spaCy v3.0, model symlinks are not supported anymore. You can load trained "
"pipeline packages using their full names or from a directory path."
2020-06-22 01:45:40 +03:00
)