Gabriele Picco
8f8d519208
Add Zshot Spacy plugin ( #11557 )
...
* Add Zshot Spacy plugin
Add Zshot (Zero and Few shot named entity & relationships recognition) Spacy plugin
* Update website/meta/universe.json
Co-authored-by: Adriane Boyd <adrianeboyd@gmail.com>
* Update website/meta/universe.json
Co-authored-by: Adriane Boyd <adrianeboyd@gmail.com>
Co-authored-by: Adriane Boyd <adrianeboyd@gmail.com>
2022-09-29 17:35:11 +02:00
Paul O'Leary McCann
76af28b978
Update docs to reflect Doc input to Language ( #11555 )
2022-09-29 18:51:41 +09:00
Taniguchi Yasufumi
2efdac209d
Add spacy-partial-tagger to spaCy Universe ( #11538 )
2022-09-27 14:12:17 +02:00
Paul O'Leary McCann
29a577cd3c
Add experimental coref docs ( #11291 )
...
* Add experimental coref docs
* Docs cleanup
* Apply suggestions from code review
Co-authored-by: Sofie Van Landeghem <svlandeg@users.noreply.github.com>
* Apply changes from code review
* Fix prettier formatting
It seems a period after a number made this think it was a list?
* Update docs on examples for initialize
* Add docs for coref scorers
* Remove 3.4 notes from coref
There won't be a "new" tag until it's in core.
* Add docs for span cleaner
* Fix docs
* Fix docs to match spacy-experimental
These weren't properly updated when the code was moved out of spacy
core.
* More doc fixes
* Formatting
* Update architectures
* Fix links
* Fix another link
Co-authored-by: Sofie Van Landeghem <svlandeg@users.noreply.github.com>
Co-authored-by: svlandeg <svlandeg@github.com>
2022-09-27 18:12:07 +09:00
Paul O'Leary McCann
b60cf09078
Fix English pipeline names in 3.4 release notes ( #11542 )
2022-09-27 08:25:43 +02:00
Basile Dura
8a09c63ecf
fix: remove duplicate v3.2 ( #11530 )
2022-09-23 13:19:59 +02:00
Sofie Van Landeghem
b8525cc399
more explicit Example constructor example ( #11489 )
...
* make constructor example for Example more explicit
* shorten example and add spaces
2022-09-16 09:28:10 +02:00
Adriane Boyd
ef04272ac9
Remove has_letters in config template ( #11465 )
...
Due to problems with the javascript conversion in the website
quickstart, remove the `has_letters` setting to simplify generating
`attrs` for the default `tok2vec`.
Additionally reduce `PREFIX` as in the trained pipelines.
2022-09-09 15:12:53 +02:00
Madeesh Kannan
3820cdd3bf
Add docs for the spacy.models_and_pipes_with_nvtx_range.v1
callback ( #11463 )
...
* Add docs for the `spacy.models_and_pipes_with_nvtx_range.v1` callback
* Add `new` tag
2022-09-09 10:46:40 +02:00
Paul O'Leary McCann
0bbc265191
Fix DVC command example ( #11457 )
...
This command doesn't have the project dir, but it's required.
2022-09-08 13:47:26 +02:00
Paul O'Leary McCann
c50114ccfd
Fix asent pip package name
2022-09-01 11:36:40 +09:00
Tal Zussman
ea54a75429
Fix menu order in linguistic-features.md ( #11364 )
...
Swap 'Vectors & Similarity' and 'Mappings & Exceptions' in menu to match order in body
2022-08-23 14:41:48 +09:00
Adriane Boyd
655054ce27
Add uk pipelines to website ( #11332 )
2022-08-18 14:07:46 +02:00
Peter Baumgartner
5d42ec12ce
Docs: displaCy documentation - data types, parse_{deps,ents,spans}
, spans example ( #10950 )
...
* add in spans example and parse references
* rm autoformatter
* rm extra ents copy
* TypedDict draft
* type fixes
* restore non-documentation files
* docs update
* fix spans example
* fix hyperlinks
* add parse example
* example fix + argument fix
* fix api arg in docs
* fix bad variable replacement
* fix spacing in style
Co-authored-by: Sofie Van Landeghem <svlandeg@users.noreply.github.com>
* fix spacing on table
* fix spacing on table
* rm temp files
Co-authored-by: Sofie Van Landeghem <svlandeg@users.noreply.github.com>
2022-08-16 12:06:59 -04:00
Jules Belveze
6d0e8df066
chore: add 'concepCy' to spacy universe ( #11255 )
...
* chore: add 'concepCy' to spacy universe
* docs: add 'slogan' to concepCy
2022-08-04 15:43:19 +09:00
Lj Miranda
534f10f049
Update docs for pipeline initialize() methods ( #11221 )
...
* Update documentation for dependency parser
* Update documentation for trainable_lemmatizer
* Update documentation for entity_linker
* Update documentation for ner
* Update documentation for morphologizer
* Update documentation for senter
* Update documentation for spancat
* Update documentation for tagger
* Update documentation for textcat
* Update documentation for tok2vec
* Run prettier on edited files
* Apply similar changes in transformer docs
* Remove need to say annotated example explicitly
I removed the need to say "Must contain at least one annotated Example"
because it's often a given that Examples will contain some gold-standard
annotation.
* Run prettier on transformer docs
2022-08-03 16:54:16 +02:00
Adriane Boyd
173e634a33
Add scorer to textcat API docs config settings ( #11263 )
2022-08-03 16:43:58 +02:00
Adriane Boyd
f475f86835
Merge branch 'master' into spacy.io
2022-07-26 15:15:42 +02:00
Edward
360a702ecd
Add parent argument ( #11210 )
2022-07-26 14:35:18 +02:00
Adriane Boyd
5c2a00cef0
Set version to v3.4.1 ( #11209 )
2022-07-26 12:52:38 +02:00
Adriane Boyd
c8f5b752bb
Add link to developer docs code conventions ( #11171 )
2022-07-26 10:56:53 +02:00
Daniël de Kok
4ee8a06149
Fix compatibility with CuPy 9.x ( #11194 )
...
After the precomputable affine table of shape [nB, nF, nO, nP] is
computed, padding with shape [1, nF, nO, nP] is assigned to the first
row of the precomputed affine table. However, when we are indexing the
precomputed table, we get a row of shape [nF, nO, nP]. CuPy versions
before 10.0 cannot paper over this shape difference.
This change fixes compatibility with CuPy < 10.0 by squeezing the first
dimension of the padding before assignment.
2022-07-26 10:52:01 +02:00
Adriane Boyd
36ff2a5441
Merge pull request #11200 from adrianeboyd/chore/reenable-model-tests
...
Revert "Temporarily skip tests that require models/compat"
2022-07-25 20:13:44 +02:00
Adriane Boyd
e5990db713
Revert "Temporarily skip tests that require models/compat"
...
This reverts commit d9320db7db
.
2022-07-25 18:12:18 +02:00
Paul O'Leary McCann
2a6ed9a404
Replace link to old label ( #11188 )
2022-07-25 16:40:23 +09:00
Paul O'Leary McCann
1c12812d1a
Replace link to old label ( #11188 )
2022-07-25 16:39:34 +09:00
Adriane Boyd
c10afaaf2d
Move sent-patterns to correct section of universe.json ( #11192 )
2022-07-25 09:15:29 +02:00
Adriane Boyd
7a99fe3c65
Move sent-patterns to correct section of universe.json ( #11192 )
2022-07-25 09:14:50 +02:00
0xpeIpeI
1df54543a0
[universe project] create English interpretation project ( #11184 )
...
* [add] my universe project setting
* [modify] A few adjustments
* [Modify] change package description
2022-07-24 19:01:51 +09:00
0xpeIpeI
93960dc4b5
[universe project] create English interpretation project ( #11184 )
...
* [add] my universe project setting
* [modify] A few adjustments
* [Modify] change package description
2022-07-24 19:01:04 +09:00
Dan Radenkovic
18d9275dfc
fix docs ( #11123 )
2022-07-24 17:17:11 +09:00
Dan Radenkovic
a5aa3a818f
fix docs ( #11123 )
2022-07-24 17:16:36 +09:00
Lucas Terriel
378699afb9
Update meta for spacyfishing in spaCy Universe ( #11185 )
...
* add new logo for spacyfishing to update spacy universe
* change logo location
2022-07-24 17:13:00 +09:00
Lucas Terriel
7ff52c02a1
Update meta for spacyfishing in spaCy Universe ( #11185 )
...
* add new logo for spacyfishing to update spacy universe
* change logo location
2022-07-24 17:10:29 +09:00
Maarten Grootendorst
0e932544f6
Added BERTopic to Spacy Universe ( #11159 )
...
* Added BERTopic to Spacy Universe
* Fix no render of visualization
2022-07-19 19:38:21 +09:00
Maarten Grootendorst
1caa2d1d16
Added BERTopic to Spacy Universe ( #11159 )
...
* Added BERTopic to Spacy Universe
* Fix no render of visualization
2022-07-19 19:37:18 +09:00
Adriane Boyd
0e5b42ba97
Update binder version in docs ( #11124 )
2022-07-12 15:21:00 +02:00
Adriane Boyd
2235e3520c
Update binder version in docs ( #11124 )
2022-07-12 15:20:33 +02:00
Nicolai Bjerre Pedersen
2fa983aa2e
Fix span typings ( #11119 )
...
Add id, id_ to span.pyi.
2022-07-12 13:47:35 +02:00
Adriane Boyd
1087cea1ef
Merge branch 'master' into spacy.io
2022-07-12 07:51:10 +02:00
Adriane Boyd
11f859c132
Docs for v3.4 ( #11057 )
...
* Add draft of v3.4 usage
* Add Croatian models
* Add Matcher min/max
* Update release notes
* Minor edits
* Add updates, tables
* Update pydantic/mypy versions
* Update version in README
* Fix sidebar
2022-07-11 15:36:31 +02:00
Adriane Boyd
d583626a82
Update build setup for aarch64 ( #11112 )
...
* Extend build constraints for aarch64
* Skip mypy for aarch64
2022-07-11 13:29:35 +02:00
Adriane Boyd
5cb6f1ae51
CI: Install with two parallel build jobs ( #11111 )
2022-07-11 12:20:00 +02:00
Richard Hudson
08e58dc71c
Change demo URL ( #11102 )
2022-07-08 19:59:36 +02:00
Madeesh Kannan
1241d9157d
Add examples for new explosion bot commands ( #11082 )
...
* Add examples for new explosion bot commands
* Update extra/DEVELOPER_DOCS/ExplosionBot.md
Co-authored-by: Sofie Van Landeghem <svlandeg@users.noreply.github.com>
Co-authored-by: Sofie Van Landeghem <svlandeg@users.noreply.github.com>
2022-07-08 19:59:16 +02:00
Adriane Boyd
3701039c1f
Tweak build jobs setting, update install docs ( #11077 )
...
* Restrict SPACY_NUM_BUILD_JOBS to only override if set
* Update install docs
2022-07-08 19:21:17 +02:00
Peter Baumgartner
36cb2029a9
displaCy Spans Vertical Alignment Fix 2 ( #11092 )
...
* add in span render slot fix
* fix spacing off by one
* rm demo
* adjust comments
* fix whitespace and overlap issue
2022-07-08 19:20:13 +02:00
Richard Hudson
dc38a0f079
Change demo URL ( #11102 )
2022-07-08 19:19:48 +02:00
Adriane Boyd
66d6461c8f
Use thinc v8.1 ( #11101 )
2022-07-08 17:52:41 +02:00
Adriane Boyd
397197ec0e
Extend to mypy<0.970 ( #11100 )
2022-07-08 14:58:01 +02:00