# Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("KennethEnevoldsen/dacy-large-encoder")
model = AutoModel.from_pretrained("KennethEnevoldsen/dacy-large-encoder")Quick Links
DaCy Encoder Large
The encoder of v0.2.0 large model in DaCy.
This encoder is intended primarily for experimentation.
- Downloads last month
- 18
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="KennethEnevoldsen/dacy-large-encoder")