# Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("imxly/sentence_rtb3")
model = AutoModel.from_pretrained("imxly/sentence_rtb3")Quick Links
No model card
- Downloads last month
- 12
# Load model directly
from transformers import AutoTokenizer, AutoModel
tokenizer = AutoTokenizer.from_pretrained("imxly/sentence_rtb3")
model = AutoModel.from_pretrained("imxly/sentence_rtb3")No model card
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="imxly/sentence_rtb3")