Commit
·
a0e27b9
1
Parent(s):
87bc588
Update README file
Browse files
README.md
CHANGED
@@ -29,7 +29,7 @@ Then you can use the model like this:
|
|
29 |
from sentence_transformers import SentenceTransformer
|
30 |
sentences = ["This is an example sentence", "Each sentence is converted"]
|
31 |
|
32 |
-
model = SentenceTransformer('bertin-sts-cc-news-es')
|
33 |
embeddings = model.encode(sentences)
|
34 |
print(embeddings)
|
35 |
```
|
@@ -55,8 +55,8 @@ def mean_pooling(model_output, attention_mask):
|
|
55 |
sentences = ['This is an example sentence', 'Each sentence is converted']
|
56 |
|
57 |
# Load model from HuggingFace Hub
|
58 |
-
tokenizer = AutoTokenizer.from_pretrained('bertin-sts-cc-news-es')
|
59 |
-
model = AutoModel.from_pretrained('bertin-sts-cc-news-es')
|
60 |
|
61 |
# Tokenize sentences
|
62 |
encoded_input = tokenizer(sentences, padding=True, truncation=True, return_tensors='pt')
|
|
|
29 |
from sentence_transformers import SentenceTransformer
|
30 |
sentences = ["This is an example sentence", "Each sentence is converted"]
|
31 |
|
32 |
+
model = SentenceTransformer('edumunozsala/bertin-sts-cc-news-es')
|
33 |
embeddings = model.encode(sentences)
|
34 |
print(embeddings)
|
35 |
```
|
|
|
55 |
sentences = ['This is an example sentence', 'Each sentence is converted']
|
56 |
|
57 |
# Load model from HuggingFace Hub
|
58 |
+
tokenizer = AutoTokenizer.from_pretrained('edumunozsala/bertin-sts-cc-news-es')
|
59 |
+
model = AutoModel.from_pretrained('edumunozsala/bertin-sts-cc-news-es')
|
60 |
|
61 |
# Tokenize sentences
|
62 |
encoded_input = tokenizer(sentences, padding=True, truncation=True, return_tensors='pt')
|