Ines Montani
85e816738f
Merge branch 'develop' into spacy.io-develop
2020-07-01 15:37:03 +02:00
Ines Montani
8fb574900a
Update parent package and version
2020-07-01 15:35:23 +02:00
Ines Montani
4f42bcdd13
Merge branch 'develop' of https://github.com/explosion/spaCy into develop
2020-07-01 15:33:57 +02:00
Ines Montani
38f226bda8
Update images [ci skip]
2020-07-01 15:33:54 +02:00
Matthew Honnibal
0ada186dda
Set version to v3.0.0.dev14
2020-07-01 15:31:04 +02:00
Matthw Honnibal
cb51bb637b
Merge branch 'develop' of https://github.com/explosion/spaCy into develop
2020-07-01 15:17:27 +02:00
Matthw Honnibal
7734cbc34d
Set batch size in begin_training
2020-07-01 15:16:59 +02:00
Matthw Honnibal
1f7709e9a6
Improve max length check in corpus
2020-07-01 15:16:43 +02:00
Matthw Honnibal
2fa56484b2
Fix eval batch size
2020-07-01 15:16:25 +02:00
Matthw Honnibal
c5d12d1a22
Allow batch size to be set for evaluation in spacy train
2020-07-01 15:04:36 +02:00
Ines Montani
6e28760316
Fix 404 [ci skip]
2020-07-01 15:02:55 +02:00
Matthw Honnibal
f5532757a3
Filter out 0-length examples in Corpus
2020-07-01 15:02:37 +02:00
Ines Montani
7037512e55
Handle robots.txt for nightly/special deploys [ci skip]
2020-07-01 14:50:58 +02:00
Ines Montani
1220fd3e6c
Handle robots.txt for nightly/special deploys [ci skip]
2020-07-01 14:50:38 +02:00
Ines Montani
997f6eeca7
Adjust nightly site url [ci skip]
2020-07-01 14:42:59 +02:00
Ines Montani
e1eb48e932
Add nightly social image [ci skip]
2020-07-01 14:41:13 +02:00
Ines Montani
5d02f71653
Add nightly favicon and Binder [ci skip]
2020-07-01 14:33:33 +02:00
Ines Montani
db12ee4da9
Merge branch 'develop' of https://github.com/explosion/spaCy into develop
2020-07-01 14:21:49 +02:00
Ines Montani
bc87ba97e0
Merge pull request #5681 from svlandeg/bugfix/exec-cwd
2020-07-01 14:13:19 +02:00
Ines Montani
dc6d9c2fac
Auto-infer nightly state from branch
2020-07-01 14:05:11 +02:00
Ines Montani
f2a932a60c
Update netlify.toml [ci skip]
2020-07-01 13:34:35 +02:00
Ines Montani
02334aeafc
Make alert more prominent
2020-07-01 13:25:13 +02:00
Ines Montani
360e54863a
Update netlify.toml
2020-07-01 13:23:58 +02:00
Ines Montani
a0204e7d9a
Revert change for now
2020-07-01 13:15:34 +02:00
Ines Montani
53ffee91b4
Experiment with hiding "new" tags
2020-07-01 13:11:00 +02:00
Ines Montani
f9a56a6993
Update site to support nightly mode
2020-07-01 13:03:04 +02:00
Ines Montani
5e24b8d481
Set to nightly
2020-07-01 13:02:30 +02:00
Ines Montani
26df4efa94
Add new in v3.0
2020-07-01 13:02:17 +02:00
Ines Montani
18a900abc2
Fix markup
2020-07-01 13:02:07 +02:00
Ines Montani
414dc7ace1
Merge branch 'spacy.io' into spacy.io-develop
2020-07-01 11:47:47 +02:00
Matthw Honnibal
52338a07bb
Set version to v3.0.0.dev13
2020-07-01 02:49:17 +02:00
Matthw Honnibal
fa6d473390
Fix parser maxout_pieces=1
2020-07-01 02:48:58 +02:00
Matthw Honnibal
35af5819e0
Merge branch 'develop' of https://github.com/explosion/spaCy into develop
2020-07-01 01:03:39 +02:00
Matthw Honnibal
0d6edf5397
Clean up debug code in transition_system
2020-07-01 01:03:20 +02:00
Matthw Honnibal
a1b6add4c8
Fix parser gold cutting and gradient normalization
2020-07-01 01:02:58 +02:00
Matthw Honnibal
8c5a88e777
Fix per-epoch shuffling
2020-07-01 01:02:35 +02:00
svlandeg
a7d547c65e
small fix
2020-06-30 21:56:17 +02:00
svlandeg
8eca7e995e
add try-except to git commands to get an informative warning
2020-06-30 21:53:40 +02:00
Ines Montani
b032943c34
Fix funny printing again
2020-06-30 21:33:41 +02:00
Matthw Honnibal
d525552979
Fix efficiency of parser backprop_nonlinearity
2020-06-30 21:22:54 +02:00
Ines Montani
d64644d9d1
Adjust auto-formatting
2020-06-30 20:36:30 +02:00
Ines Montani
6da3500728
Fix command substitution
2020-06-30 20:35:51 +02:00
Álvaro Abella Bascarán
7111b9de2e
Fix in docs: pipe(docs) instead of pipe(texts) ( #5680 )
...
Very minor fix in docs, specifically in this part:
```
matcher = PhraseMatcher(nlp.vocab)
> for doc in matcher.pipe(texts, batch_size=50):
> pass
```
`texts` suggests the input is an iterable of strings. I replaced it for `docs`.
2020-06-30 20:01:12 +02:00
Álvaro Abella Bascarán
ff0dbe5c64
Fix in docs: pipe(docs) instead of pipe(texts) ( #5680 )
...
Very minor fix in docs, specifically in this part:
```
matcher = PhraseMatcher(nlp.vocab)
> for doc in matcher.pipe(texts, batch_size=50):
> pass
```
`texts` suggests the input is an iterable of strings. I replaced it for `docs`.
2020-06-30 20:00:50 +02:00
Matthias Hertel
305221f3e5
Website: fixed the token span in the text about the rule-based matching example ( #5669 )
...
* fixed token span in pattern matcher example
* contributor agreement
2020-06-30 19:58:55 +02:00
Matthias Hertel
8b0f749606
Website: fixed the token span in the text about the rule-based matching example ( #5669 )
...
* fixed token span in pattern matcher example
* contributor agreement
2020-06-30 19:58:23 +02:00
svlandeg
e7aff9c5fc
bugfix exec usage in dvc.yaml
2020-06-30 18:51:20 +02:00
Ines Montani
3383d1c822
Merge pull request #5679 from svlandeg/fix/project-exp
2020-06-30 18:00:11 +02:00
svlandeg
60f97bc519
add custom warning when run_command fails
2020-06-30 17:28:43 +02:00
svlandeg
39953c7c60
fix print_run_help with new arg order
2020-06-30 17:28:09 +02:00