sentence-transformers How to use bobox/DeBERTaV3-small-ST-AdaptiveLayerAllNormalized with sentence-transformers:
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("bobox/DeBERTaV3-small-ST-AdaptiveLayerAllNormalized")
sentences = [
"The pitcher is pitching the ball in a game of baseball.",
"the lady digs into the ground",
"A group of people are sitting at tables.",
"The pitcher throws the ball."
]
embeddings = model.encode(sentences)
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [4, 4]