-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13045 from explosion/master
Sync `docs/llm_main` with `master`
- Loading branch information
Showing
101 changed files
with
1,785 additions
and
2,257 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,6 @@ | ||
# build version constraints for use with wheelwright + multibuild | ||
numpy==1.15.0; python_version<='3.7' and platform_machine!='aarch64' | ||
numpy==1.19.2; python_version<='3.7' and platform_machine=='aarch64' | ||
# build version constraints for use with wheelwright | ||
numpy==1.15.0; python_version=='3.7' and platform_machine!='aarch64' | ||
numpy==1.19.2; python_version=='3.7' and platform_machine=='aarch64' | ||
numpy==1.17.3; python_version=='3.8' and platform_machine!='aarch64' | ||
numpy==1.19.2; python_version=='3.8' and platform_machine=='aarch64' | ||
numpy==1.19.3; python_version=='3.9' | ||
numpy==1.21.3; python_version=='3.10' | ||
numpy==1.23.2; python_version=='3.11' | ||
numpy; python_version>='3.12' | ||
numpy>=1.25.0; python_version>='3.9' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
# fmt: off | ||
__title__ = "spacy" | ||
__version__ = "3.6.1" | ||
__version__ = "3.7.1" | ||
__download_url__ = "https://github.com/explosion/spacy-models/releases/download" | ||
__compatibility__ = "https://raw.githubusercontent.com/explosion/spacy-models/master/compatibility.json" | ||
__projects__ = "https://github.com/explosion/projects" | ||
__projects_branch__ = "v3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# cython: profile=False | ||
from .errors import Errors | ||
|
||
IOB_STRINGS = ("", "I", "O", "B") | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.