Update README.md
Browse files
README.md
CHANGED
@@ -97,8 +97,8 @@ query = "How many people live in London?"
|
|
97 |
docs = ["Around 9 Million people live in London", "London is known for its financial district"]
|
98 |
|
99 |
# Load model from HuggingFace Hub
|
100 |
-
tokenizer = AutoTokenizer.from_pretrained("
|
101 |
-
model = AutoModel.from_pretrained("
|
102 |
|
103 |
#Encode query and docs
|
104 |
query_emb = encode(query)
|
@@ -154,8 +154,8 @@ query = "How many people live in London?"
|
|
154 |
docs = ["Around 9 Million people live in London", "London is known for its financial district"]
|
155 |
|
156 |
# Load model from HuggingFace Hub
|
157 |
-
tokenizer = AutoTokenizer.from_pretrained("
|
158 |
-
model = TFAutoModel.from_pretrained("
|
159 |
|
160 |
#Encode query and docs
|
161 |
query_emb = encode(query)
|
|
|
97 |
docs = ["Around 9 Million people live in London", "London is known for its financial district"]
|
98 |
|
99 |
# Load model from HuggingFace Hub
|
100 |
+
tokenizer = AutoTokenizer.from_pretrained("SeyedAli/Multilingual-Text-Semantic-Search-Siamese-BERT-V1")
|
101 |
+
model = AutoModel.from_pretrained("SeyedAli/Multilingual-Text-Semantic-Search-Siamese-BERT-V1")
|
102 |
|
103 |
#Encode query and docs
|
104 |
query_emb = encode(query)
|
|
|
154 |
docs = ["Around 9 Million people live in London", "London is known for its financial district"]
|
155 |
|
156 |
# Load model from HuggingFace Hub
|
157 |
+
tokenizer = AutoTokenizer.from_pretrained("SeyedAli/Multilingual-Text-Semantic-Search-Siamese-BERT-V1")
|
158 |
+
model = TFAutoModel.from_pretrained("SeyedAli/Multilingual-Text-Semantic-Search-Siamese-BERT-V1")
|
159 |
|
160 |
#Encode query and docs
|
161 |
query_emb = encode(query)
|