mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 01:46:28 +03:00
Try reverting commit and see if CI changes
There is an error in CI that is probably unrelated.
Revert "Fix default parameters for load functions"
This reverts commit dc46b35687
.
This commit is contained in:
parent
76183391da
commit
2514ed07ef
|
@ -443,9 +443,9 @@ def load_model_from_package(
|
||||||
name: str,
|
name: str,
|
||||||
*,
|
*,
|
||||||
vocab: Union["Vocab", bool] = True,
|
vocab: Union["Vocab", bool] = True,
|
||||||
disable: Union[str, Iterable[str]] = _DEFAULT_EMPTY_PIPES,
|
disable: Union[str, Iterable[str]] = SimpleFrozenList(),
|
||||||
enable: Union[str, Iterable[str]] = _DEFAULT_EMPTY_PIPES,
|
enable: Union[str, Iterable[str]] = SimpleFrozenList(),
|
||||||
exclude: Union[str, Iterable[str]] = _DEFAULT_EMPTY_PIPES,
|
exclude: Union[str, Iterable[str]] = SimpleFrozenList(),
|
||||||
config: Union[Dict[str, Any], Config] = SimpleFrozenDict(),
|
config: Union[Dict[str, Any], Config] = SimpleFrozenDict(),
|
||||||
) -> "Language":
|
) -> "Language":
|
||||||
"""Load a model from an installed package.
|
"""Load a model from an installed package.
|
||||||
|
@ -619,9 +619,9 @@ def load_model_from_init_py(
|
||||||
init_file: Union[Path, str],
|
init_file: Union[Path, str],
|
||||||
*,
|
*,
|
||||||
vocab: Union["Vocab", bool] = True,
|
vocab: Union["Vocab", bool] = True,
|
||||||
disable: Union[str, Iterable[str]] = _DEFAULT_EMPTY_PIPES,
|
disable: Union[str, Iterable[str]] = SimpleFrozenList(),
|
||||||
enable: Union[str, Iterable[str]] = _DEFAULT_EMPTY_PIPES,
|
enable: Union[str, Iterable[str]] = SimpleFrozenList(),
|
||||||
exclude: Union[str, Iterable[str]] = _DEFAULT_EMPTY_PIPES,
|
exclude: Union[str, Iterable[str]] = SimpleFrozenList(),
|
||||||
config: Union[Dict[str, Any], Config] = SimpleFrozenDict(),
|
config: Union[Dict[str, Any], Config] = SimpleFrozenDict(),
|
||||||
) -> "Language":
|
) -> "Language":
|
||||||
"""Helper function to use in the `load()` method of a model package's
|
"""Helper function to use in the `load()` method of a model package's
|
||||||
|
|
Loading…
Reference in New Issue
Block a user