# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("AlanRobotics/rubert-siamese", trust_remote_code=True, dtype="auto")Quick Links
Модель для распознавания намерений пользователя
- Downloads last month
- 20
# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("AlanRobotics/rubert-siamese", trust_remote_code=True, dtype="auto")Модель для распознавания намерений пользователя
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="AlanRobotics/rubert-siamese", trust_remote_code=True)