novel-sentence-bert-base-tone-embedding

2
license:apache-2.0
by
ganbon
Embedding Model
OTHER
3B params
New
2 downloads
Early-stage
Edge AI:
Mobile
Laptop
Server
7GB+ RAM
Mobile
Laptop
Server
Quick Summary

AI model with specialized capabilities.

Device Compatibility

Mobile
4-6GB RAM
Laptop
16GB RAM
Server
GPU
Minimum Recommended
3GB+ RAM

Code Examples

How to Usebash
$ pip install -U sentence-transformers
How to Usepython
from sentence_transformers import SentenceTransformer

model_path = "ganbon/novel-sentence-bert-base-tone-embedding"
sentences = ["今日はいい天気ですわ", "この紅茶は本当においしいですわ", "今日はいい天気だな"]
model = SentenceTransformer(model_path)
embeddings = model.encode(sentences)
anchor, anchor_embedding  = sentences[0], embeddings[0]
print(f"anchoer:{anchor}")
for embedding, sentence in zip(embeddings[1:], sentences[1:]):
    print(f"{sentence}: {model.similarity(anchor_embedding, embedding).item():.2}")

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.