-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
wangyuxin
committed
Jun 18, 2023
1 parent
f952089
commit 7a4ad34
Showing
13 changed files
with
175 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: 🐛 Bug Report | ||
description: 提交报告以帮助我们重现和修复 bug | ||
labels: bug | ||
assignees: | ||
- wangyuxinwhy | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: > | ||
在提交您遇到的 bug 之前, 请在 [这里](https://github.com/wangyuxinwhy/uniem/issues?q=) 看看有没有人有类似的问题 🌝 | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: 🐛 bug 说明 | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: python-version | ||
attributes: | ||
label: Python Version | ||
options: | ||
- "3.10" | ||
- 3.11 | ||
- other | ||
- type: markdown | ||
attributes: | ||
value: > | ||
感谢您的支持 🎉! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: 🚀 Feature request | ||
description: 提交您希望 uniem 支持的新特性 | ||
labels: enhancement | ||
assignees: | ||
- wangyuxinwhy | ||
body: | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: 🚀 The feature | ||
validations: | ||
required: true | ||
- type: markdown | ||
attributes: | ||
value: > | ||
感谢您的支持 🎉! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: 💯 MTEB-zh Dataset | ||
description: 提交您希望 MTEB-zh 支持的数据集 | ||
labels: dataset | ||
assignees: | ||
- wangyuxinwhy | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
MTEB-zh 是以 [MTEB](https://github.com/embeddings-benchmark/mteb) 为基础 ,为中文文本嵌入模型设计的 BenckMark。 | ||
您需要提供以下信息,以帮助 uniem 团队将您提供的数据集加入到 MTEB-zh 评测标准中。 | ||
- type: input | ||
id: name | ||
attributes: | ||
label: dataset name | ||
description: 数据集的名称,请使用英文字母,数字,- 或者 _ | ||
placeholder: "Example: MedQQpairs" | ||
validations: | ||
required: true | ||
- type: input | ||
id: id | ||
attributes: | ||
label: huggingface dataset id | ||
description: MTEB-zh 和 MTEB 一样,需要您将数据集开源并托管在 [HuggingFace Datasets](https://huggingface.co/datasets) | ||
placeholder: "Example: vegaviazhang/Med_QQpairs" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: task_type | ||
attributes: | ||
label: task type | ||
desciption: MTEB-zh 支持多种类型的文本嵌入评测任务,比如文本分类,文本检索,文本聚类等,如果您不确定您的数据集属于何种任务,可以不进行选择。 | ||
options: | ||
- Classification | ||
- PairClassification | ||
- Reranking | ||
- Retrieval | ||
- BitextMining | ||
- Clustering | ||
- STS | ||
- Summarization | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: dataset description |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: 💎 MTEB-zh Model | ||
description: 提交您希望 MTEB-zh 支持的模型 | ||
labels: model | ||
assignees: | ||
- wangyuxinwhy | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
MTEB-zh 是以 [MTEB](https://github.com/embeddings-benchmark/mteb) 为基础 ,为中文文本嵌入模型设计的 BenckMark。 | ||
您需要提供以下信息,以帮助 uniem 团队将您提供的模型加入到 MTEB-zh 评测标准中。 | ||
- type: input | ||
id: name | ||
attributes: | ||
label: model name | ||
description: 模型的名称,请使用英文字母,数字,- 或者 _ | ||
placeholder: "Example: m3e-base" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
id: type | ||
attributes: | ||
label: model type | ||
desciption: | | ||
MTEB-zh 支持多种类型的文本嵌入模型,比如 sentence_transformer, text2vec, luotuo 等。 | ||
您可以在[这里](https://github.com/wangyuxinwhy/uniem/blob/main/mteb-zh/mteb_zh/models.py)找到全部支持的类型。 | ||
如果 MTEB-zh 还未支持您的模型,请选择 others ,并在 model description 提供使用方式。 | ||
options: | ||
- sentence_transformer | ||
- text2vec | ||
- luotuo | ||
- erlangshen | ||
- others | ||
validations: | ||
required: true | ||
- type: input | ||
id: id | ||
attributes: | ||
label: huggingface model id | ||
description: 如果您的模型支持通过 [HuggingFace Models](https://huggingface.co/models) 进行加载,请提供 model id | ||
placeholder: "Example: moka-ai/m3e-base" | ||
- type: textarea | ||
id: description | ||
attributes: | ||
label: model description |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters