This commit is contained in:
Matthew Honnibal 2024-02-08 15:51:29 +01:00
parent 2fad3a74ba
commit d7eb5169d5
3 changed files with 2 additions and 5 deletions

View File

@ -2,7 +2,6 @@ from wasabi import msg
# Needed for testing
from . import download as download_module # noqa: F401
from ._util import app, setup_cli # noqa: F401
from .apply import apply # noqa: F401
from .assemble import assemble_cli # noqa: F401

View File

@ -1,10 +1,10 @@
import sys
from typing import Optional, Sequence
from urllib.parse import urljoin
import requests
import typer
from wasabi import msg
from urllib.parse import urljoin
from .. import about
from ..errors import OLD_MODEL_SHORTCUTS

View File

@ -12,7 +12,7 @@ from thinc.api import Config
import spacy
from spacy import about
from spacy.cli import info
from spacy.cli import download_module, info
from spacy.cli._util import parse_config_overrides, string_to_list, walk_directory
from spacy.cli.apply import apply
from spacy.cli.debug_data import (
@ -25,8 +25,6 @@ from spacy.cli.debug_data import (
_get_spans_length_freq_dist,
_print_span_characteristics,
)
from spacy.cli import download_module
from spacy.cli.download import get_compatibility, get_version
from spacy.cli.evaluate import render_parses
from spacy.cli.find_threshold import find_threshold