Sentence Similarity
sentence-transformers
PyTorch
ONNX
Safetensors
OpenVINO
Chinese
bert
Sentence Transformers
Instructions to use shibing624/text2vec-base-chinese with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- sentence-transformers
How to use shibing624/text2vec-base-chinese with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("shibing624/text2vec-base-chinese") sentences = [ "那是 個快樂的人", "那是 條快樂的狗", "那是 個非常幸福的人", "今天是晴天" ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [4, 4] - Inference
- Notebooks
- Google Colab
- Kaggle
Commit ·
b455bb0
1
Parent(s): 01b324a
Update README.md
Browse files
README.md
CHANGED
|
@@ -20,7 +20,7 @@ For an automated evaluation of this model, see the *Evaluation Benchmark*: [text
|
|
| 20 |
- chinese text matching task:
|
| 21 |
|
| 22 |
| Model Name | ATEC | BQ | LCQMC | PAWSX | STS-B | Avg | QPS |
|
| 23 |
-
| :--
|
| 24 |
| w2v-light-tencent-chinese | 20.00 | 31.49 | 59.46 | 2.57 | 55.78 | 33.86 | 10283 |
|
| 25 |
| paraphrase-multilingual-MiniLM-L12-v2 | 18.42 | 38.52 | 63.96 | 10.14 | 78.90 | 41.99 | 2371 |
|
| 26 |
| text2vec-base-chinese | 31.93 | 42.67 | 70.16 | 17.21 | 79.30 | **48.25** | 2572 |
|
|
|
|
| 20 |
- chinese text matching task:
|
| 21 |
|
| 22 |
| Model Name | ATEC | BQ | LCQMC | PAWSX | STS-B | Avg | QPS |
|
| 23 |
+
| :---- | :-: | :-: | :-: | :-: | :-: | :-: | :-: |
|
| 24 |
| w2v-light-tencent-chinese | 20.00 | 31.49 | 59.46 | 2.57 | 55.78 | 33.86 | 10283 |
|
| 25 |
| paraphrase-multilingual-MiniLM-L12-v2 | 18.42 | 38.52 | 63.96 | 10.14 | 78.90 | 41.99 | 2371 |
|
| 26 |
| text2vec-base-chinese | 31.93 | 42.67 | 70.16 | 17.21 | 79.30 | **48.25** | 2572 |
|