Update README.md
Browse files
README.md
CHANGED
@@ -146,9 +146,9 @@ from sentence_transformers import SentenceTransformer
|
|
146 |
model = SentenceTransformer("Prashasst/anime-recommendation-model")
|
147 |
# Run inference
|
148 |
sentences = [
|
149 |
-
'
|
150 |
-
'
|
151 |
-
'
|
152 |
]
|
153 |
embeddings = model.encode(sentences)
|
154 |
print(embeddings.shape)
|
|
|
146 |
model = SentenceTransformer("Prashasst/anime-recommendation-model")
|
147 |
# Run inference
|
148 |
sentences = [
|
149 |
+
'I want anime like onepiece.',
|
150 |
+
'Pirates',
|
151 |
+
'Action',
|
152 |
]
|
153 |
embeddings = model.encode(sentences)
|
154 |
print(embeddings.shape)
|