mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-14 05:37:03 +03:00
34 lines
1.3 KiB
Markdown
34 lines
1.3 KiB
Markdown
---
|
|
title: What's New in v3.0
|
|
teaser: New features, backwards incompatibilities and migration guide
|
|
menu:
|
|
- ['Summary', 'summary']
|
|
- ['New Features', 'features']
|
|
- ['Backwards Incompatibilities', 'incompat']
|
|
- ['Migrating from v2.x', 'migrating']
|
|
---
|
|
|
|
## Summary {#summary}
|
|
|
|
## New Features {#features}
|
|
|
|
## Backwards Incompatibilities {#incompat}
|
|
|
|
### Removed deprecated methods, attributes and arguments {#incompat-removed}
|
|
|
|
The following deprecated methods, attributes and arguments were removed in v3.0.
|
|
Most of them have been deprecated for quite a while now and many would
|
|
previously raise errors. Many of them were also mostly internals. If you've been
|
|
working with more recent versions of spaCy v2.x, it's unlikely that your code
|
|
relied on them.
|
|
|
|
| Class | Removed |
|
|
| --------------------- | ------------------------------------------------------- |
|
|
| [`Doc`](/api/doc) | `Doc.tokens_from_list`, `Doc.merge` |
|
|
| [`Span`](/api/span) | `Span.merge`, `Span.upper`, `Span.lower`, `Span.string` |
|
|
| [`Token`](/api/token) | `Token.string` |
|
|
|
|
<!-- TODO: complete (see release notes Dropbox Paper doc) -->
|
|
|
|
## Migrating from v2.x {#migrating}
|