Menon_NorBert3s

4
by
RozaA
Other
OTHER
New
4 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
Unknown
Mobile
Laptop
Server
Quick Summary

AI model with specialized capabilities.

Code Examples

Menon relevance classifier (NorBERT3-small)pythontransformers
from transformers import AutoTokenizer, AutoModelForSequenceClassification
import torch

repo_id = "RozaA/Menon_NorBert3s"
tokenizer = AutoTokenizer.from_pretrained(repo_id, trust_remote_code=True)
model = AutoModelForSequenceClassification.from_pretrained(repo_id, trust_remote_code=True)

text = "Example text"
inputs = tokenizer(text, return_tensors="pt", truncation=True, padding=True)
prob = torch.softmax(model(**inputs).logits, dim=1)[0,1].item()
print(prob)

Deploy This Model

Production-ready deployment in minutes

Together.ai

Instant API access to this model

Fastest API

Production-ready inference API. Start free, scale to millions.

Try Free API

Replicate

One-click model deployment

Easiest Setup

Run models in the cloud with simple API. No DevOps required.

Deploy Now

Disclosure: We may earn a commission from these partners. This helps keep LLMYourWay free.