更新贡献者信息,添加刘十一的角色和任务,修改更新贡献者函数以包含Ascend模型支持文档

This commit is contained in:
KMnO4-zx
2026-01-07 14:01:02 +08:00
parent 018359c067
commit 4a794af296
4 changed files with 20 additions and 7 deletions
+1
View File
@@ -208,6 +208,7 @@
- [宋志学(不要葱姜蒜)-项目负责人](https://github.com/KMnO4-zx) Datawhale成员)
- [邹雨衡-项目负责人](https://github.com/logan-zou) Datawhale成员-对外经济贸易大学)
- [刘十一-Ascend专区负责人](https://github.com/Zhiwen-Liu)Datawhale成员-鲸英助教)
- [姜舒凡](https://github.com/Tsumugii24)(内容创作者-Datawhale成员)
- [郭宣伯](https://github.com/Twosugar666)(内容创作者-北京航空航天大学)
- [林泽毅](https://github.com/Zeyi-Lin)(内容创作者-SwanLab产品负责人)
+4
View File
@@ -7,6 +7,10 @@
"info": "[邹雨衡-项目负责人](https://github.com/logan-zou) Datawhale成员-对外经济贸易大学)",
"task_num": 306
},
"刘十一": {
"info": "[刘十一-Ascend专区负责人](https://github.com/Zhiwen-Liu)Datawhale成员-鲸英助教)",
"task_num": 150
},
"姜舒凡": {
"info": "[姜舒凡](https://github.com/Tsumugii24)(内容创作者-Datawhale成员)",
"task_num": 18
+4 -4
View File
@@ -19,12 +19,12 @@
### Qwen3
[Qwen3](https://github.com/QwenLM/Qwen3)
- [x] [Qwen3-8B MindIE 部署调用](./models_ascend/qwen3/01-Qwen3-8B-MindIE部署调用.md) @刘志文
- [x] [Qwen3-8B vLLM-ascend 部署调用](./models_ascend/qwen3/02-Qwen3-8B-vLLM-ascend部署调用.md) @刘志文
- [x] [Qwen3-8B MindIE 部署调用](./models_ascend/qwen3/01-Qwen3-8B-MindIE部署调用.md) @刘十一
- [x] [Qwen3-8B vLLM-ascend 部署调用](./models_ascend/qwen3/02-Qwen3-8B-vLLM-ascend部署调用.md) @刘十一
### 大模型服务化性能和精度测试
- [x] [AISBench 测试工具环境配置](https://github.com/Zhiwen-Liu/LLM-Testing/blob/main/%E6%B5%8B%E8%AF%84%E5%89%8D%E5%87%86%E5%A4%87/AISBench%E5%AE%89%E8%A3%85%E4%B8%8E%E5%8D%B8%E8%BD%BD.md) @刘志文
- [x] [昇腾大模型服务化性能和精度测试](https://github.com/Zhiwen-Liu/LLM-Testing) @刘志文
- [x] [AISBench 测试工具环境配置](https://github.com/Zhiwen-Liu/LLM-Testing/blob/main/%E6%B5%8B%E8%AF%84%E5%89%8D%E5%87%86%E5%A4%87/AISBench%E5%AE%89%E8%A3%85%E4%B8%8E%E5%8D%B8%E8%BD%BD.md) @刘十一
- [x] [昇腾大模型服务化性能和精度测试](https://github.com/Zhiwen-Liu/LLM-Testing) @刘十一
## Ascend NPU 环境配置通用指南
+11 -3
View File
@@ -8,7 +8,7 @@ def update_contributors():
Update contributors' task numbers and sort them based on contribution.
This function:
- Reads the support_model.md and support_model_amd.md to extract tasks
- Reads the support_model.md, support_model_amd.md, and support_model_Ascend.md to extract tasks
- Counts contribution points (2 for LoRA tasks, 1 for regular tasks)
- Adds special contributor points
- Sorts contributors by their contribution points
@@ -25,6 +25,9 @@ def update_contributors():
with open('./support_model_amd.md', 'r') as f:
readme_amd = f.read()
with open('./support_model_Ascend.md', 'r') as f:
readme_ascend = f.read()
with open('./contributors.json', 'r') as f:
contributors = json.load(f)
@@ -41,8 +44,12 @@ def update_contributors():
tasks_amd = readme_amd.split('\n')
tasks_amd = [task for task in tasks_amd if '@' in task]
# Extract tasks from Ascend support_model_Ascend.md
tasks_ascend = readme_ascend.split('\n')
tasks_ascend = [task for task in tasks_ascend if '@' in task]
# Combine all tasks
all_tasks = tasks + tasks_amd
all_tasks = tasks + tasks_amd + tasks_ascend
# Count points: LoRA tasks +2, regular tasks +1
for task in all_tasks:
@@ -60,7 +67,8 @@ def update_contributors():
# Add special contributor points
special_contributors = {
'不要葱姜蒜': 300,
'Logan Zou': 300
'Logan Zou': 300,
'刘十一': 150,
}
for name, points in special_contributors.items():
if name in contributors: