Merge remote-tracking branch 'origin/main' 6888605
Chiquitin commited on
How to use Alverciito/beast_cased with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("feature-extraction", model="Alverciito/beast_cased", trust_remote_code=True) # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("Alverciito/beast_cased", trust_remote_code=True, dtype="auto")