mirror of
https://github.com/explosion/spaCy.git
synced 2025-02-11 09:00:36 +03:00
Merge branch 'develop' into nightly.spacy.io
This commit is contained in:
commit
33d3064b6b
|
@ -243,12 +243,12 @@ $ python -m spacy download en_core_web_trf
|
|||
```python
|
||||
### Example
|
||||
import spacy
|
||||
from thinc.api import use_pytorch_for_gpu_memory, require_gpu
|
||||
from thinc.api import set_gpu_allocator, require_gpu
|
||||
|
||||
# Use the GPU, with memory allocations directed via PyTorch.
|
||||
# This prevents out-of-memory errors that would otherwise occur from competing
|
||||
# memory pools.
|
||||
use_pytorch_for_gpu_memory()
|
||||
set_gpu_allocator("pytorch")
|
||||
require_gpu(0)
|
||||
|
||||
nlp = spacy.load("en_core_web_trf")
|
||||
|
|
Loading…
Reference in New Issue
Block a user