# MindFormers大模型使用教程
## 配套版本
| 版本对应关系 | MindFormers | MindPet | MindSpore | Python | 芯片 |
| :----------: | :---------: | :-----: | :-------: | :---------: | :----------------: |
| 版本号 | dev | 1.0.0 | 2.0/1.10 | 3.7.5/3.9.0 | Ascend910A NPU/CPU |
## 支持镜像
### 裸金属镜像
- docker下载命令
```shell
docker pull swr.cn-central-221.ovaijisuan.com/mindformers/mindformers_dev_mindspore_2_0:mindformers_0.6.0dev_20230616_py39_37
```
- 创建容器
```shell
# --device用于控制指定容器的运行NPU卡号和范围
# -v 用于映射容器外的目录
# --name 用于自定义容器名称
docker run -it -u root \
--ipc=host \
--network host \
--device=/dev/davinci0 \
--device=/dev/davinci1 \
--device=/dev/davinci2 \
--device=/dev/davinci3 \
--device=/dev/davinci4 \
--device=/dev/davinci5 \
--device=/dev/davinci6 \
--device=/dev/davinci7 \
--device=/dev/davinci_manager \
--device=/dev/devmm_svm \
--device=/dev/hisi_hdc \
-v /etc/localtime:/etc/localtime \
-v /usr/local/Ascend/driver:/usr/local/Ascend/driver \
-v /var/log/npu/:/usr/slog \
-v /usr/local/bin/npu-smi:/usr/local/bin/npu-smi \
--name {请手动输入容器名称} \
swr.cn-central-221.ovaijisuan.com/mindformers/mindformers_dev_mindspore_2_0:mindformers_0.6.0dev_20230616_py39_37 \
/bin/bash
```
### AICC镜像
**详情请参考[MindFormers AICC使用教程](aicc_cards/README.md)**
我们在[镜像仓库网 (hqcases.com)](http://mirrors.cn-central-221.ovaijisuan.com/)上发布了一些经过验证的**标准镜像版本**,可以通过几行简单的docker命令的形式,直接使用验证过的标准镜像拉起MindFormers套件的训练任务,而无需进行较为繁琐的自定义镜像并上传的步骤。
- 镜像列表
```text
1. swr.cn-central-221.ovaijisuan.com/mindformers/mindformers_dev_mindspore_1_10_1:mindformers_0.6.0dev_20230615_py39
```
- 在一台准备好docker引擎的计算机上,root用户执行docker pull命令拉取该镜像
```shell
docker pull swr.cn-central-221.ovaijisuan.com/mindformers/mindformers_dev_mindspore_1_10_1:mindformers_0.6.0dev_20230615_py39
```
## 模型矩阵
**此处给出了MindFormers套件中支持的任务名称和模型名称,用于高阶开发时的索引名**
| 模型 | 任务(task name) | 模型(model name) |
| :-------------------------------------: | :----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [BERT](model_cards/bert.md) | masked_language_modeling<br>[text_classification](task_cards/text_classification.md)<br>[token_classification](task_cards/token_classification.md)<br>[question_answering](task_cards/question_answering.md) | bert_base_uncased <br>txtcls_bert_base_uncased<br>txtcls_bert_base_uncased_mnli <br>tokcls_bert_base_chinese<br>tokcls_bert_base_chinese_cluener <br>qa_bert_base_uncased<br>qa_bert_base_chinese_uncased |
| [T5](model_cards/t5.md) | translation | t5_small |
| [GPT2](model_cards/gpt2.md) | text_generation | gpt2_small <br>gpt2_13b <br>gpt2_52b |
| [PanGuAlpha](model_cards/pangualpha.md) | text_generation | pangualpha_2_6_b<br>pangualpha_13b |
| [GLM](model_cards/glm.md) | text_generation | glm_6b<br>glm_6b_lora |
| [GLM2](model_cards/glm2.md) | text_generation | glm2_6b |
| [LLama](model_cards/llama.md) | text_generation | llama_7b <br>llama_13b <br>llama_65b <br>llama_7b_lora |
| [Bloom](model_cards/bloom.md) | text_generation | bloom_560m<br>bloom_7.1b <br>bloom_65b<br>bloom_176b |
| [MAE](model_cards/mae.md) | masked_image_modeling | mae_vit_base_p16 |
| [VIT](model_cards/vit.md) | [image_classification](task_cards/image_classification.md) | vit_base_p16 |
| [Swin](model_cards/swin.md) | [image_classification](task_cards/image_classification.md)
没有合适的资源?快使用搜索试试~ 我知道了~
MindSpore Transformers套件的目标是构建一个大模型训练、推理、部署的全流程套件
共661个文件
py:396个
yaml:82个
png:61个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 188 浏览量
2023-10-08
14:30:03
上传
评论
收藏 25.88MB ZIP 举报
温馨提示
MindSpore Transformers套件的目标是构建一个大模型训练、推理、部署的全流程套件: 提供业内主流的Transformer类预训练模型, 涵盖丰富的并行特性。 期望帮助用户轻松的实现大模型训练。
资源推荐
资源详情
资源评论
收起资源包目录
MindSpore Transformers套件的目标是构建一个大模型训练、推理、部署的全流程套件 (661个子文件)
my_theme.css 54B
.gitignore 2KB
sam_by_prompt.ipynb 11.65MB
sam_by_image.ipynb 5.58MB
truck.jpg 265KB
groceries.jpg 164KB
inference_process.jpg 116KB
dog.jpg 98KB
inference_framework.JPG 47KB
LICENSE 11KB
Makefile 650B
gpt2_example.md 60KB
README.md 49KB
Parallel_Design.md 49KB
blip2.md 42KB
baichuan2.md 39KB
llama.md 39KB
llama_example.md 38KB
gpt2.md 35KB
glm.md 34KB
bloom.md 33KB
model_support_list.md 30KB
pangualpha.md 29KB
Transform_Ckpt.md 22KB
Config_Design.md 18KB
llama2.md 18KB
glm2.md 18KB
Inference.md 14KB
AICC.md 14KB
transformer仓Python编程规范.md 13KB
swin.md 13KB
README.md 13KB
vit.md 13KB
baichuan.md 13KB
Segment_Anything_Model.md 13KB
Performance_Tuning.md 12KB
mae.md 12KB
Develop_With_Api.md 12KB
Using_Api.md 11KB
internlm.md 9KB
clip.md 7KB
text_classification.md 6KB
image_classification.md 6KB
bert.md 6KB
Precision_Optimization.md 5KB
token_classification.md 5KB
README.md 5KB
question_answering.md 5KB
ziya.md 5KB
FAQ.md 5KB
Text_Generator.md 4KB
codegeex.md 4KB
t5.md 4KB
zero_shot_image_classification.md 4KB
Chat_Web.md 4KB
Pet_Tuners_Design.md 4KB
masked_image_modeling.md 3KB
Eval_While_Training.md 3KB
Pet_Tuners.md 3KB
Resume_Training.md 3KB
contrastive_language_image_pretrain.md 2KB
AutoClass_Design.md 1KB
Pipeline_Design.md 485B
Trainer_Design.md 366B
text_generation.md 265B
PULL_REQUEST_TEMPLATE.zh-CN.md 182B
ISSUE_TEMPLATE.zh-CN.md 79B
README.md 0B
OWNERS 73B
9-全图分割.png 1.03MB
10-全图分割.png 1.03MB
9-单点确定一个物体_1.png 479KB
10-单点确定一个物体_1.png 479KB
1-单点确定一个物体_1.png 479KB
9-单点确定一个物体_0.png 479KB
1-单点确定一个物体_0.png 479KB
10-单点确定一个物体_0.png 479KB
4-一个前景点和背景点.png 475KB
6-框和背景点确定物体.png 473KB
5-单框确定一个物体.png 472KB
3-两点确定不同物体.png 472KB
1-单点确定一个物体_2.png 472KB
9-单点确定一个物体_2.png 472KB
10-单点确定一个物体_2.png 472KB
7-多组框和点确定不同物体.png 471KB
2-两点确定相同物体.png 467KB
8-多个框确定不同物体.png 447KB
llama13b_autotrans_1to16_train_modelarts_log2.png 282KB
llama13b_autotrans_1to16_train_modelarts_log1.png 183KB
train_logs.png 101KB
llama7b_autotrans_1to8_train_log2.png 98KB
llama7b_autotrans_8to4_train_log2.png 97KB
mirrors_upload.png 85KB
llama13b_autotrans_1to16_train_modelarts_strategy.png 74KB
aihub.png 71KB
train_args.png 63KB
train_task1.png 57KB
obs_prepare.png 56KB
llama7b_autotrans_1to8_train_log1.png 53KB
llama13b_autotrans_1to16_train_modelarts_distribute_ckpt.png 47KB
共 661 条
- 1
- 2
- 3
- 4
- 5
- 6
- 7
资源评论
Java程序员-张凯
- 粉丝: 1w+
- 资源: 7361
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功