小言_互联网的博客

想学AI开发很简单:只要你会复制粘贴

250人阅读  评论(0)
摘要:本次实践基于 mobilenetV2 实现猫狗图像分类,贯穿了数据集获取及处理、预训练模型微调及迁移、端侧部署及推理等环节和知识点,体会到了 MindSpore 简单的开发体验和全场景快速部署的魅力。
  • startTime: 2021年1月23日00:43:22
  • endTime: 2021年1月23日11:34:44

(包含学习、睡觉、吃饭、爬坑、水文……的时间)

了解MindSpore开源生态

发现一个小秘密。 github 上多三个仓库,是什么呢?

此处应是 github 过滤的 bug ,实际上mindspore-ai 有 15 个仓库, 比 gitee 多出来的三个是:mindspore-21-days-tutorials、 mail_templates、 infrastructure

 

别看这 3 个不起眼的仓库,在社区建设方面却大有作为。比如,mindspore-21-days-tutorials 是我们之前参加 21 天实战营的参考代码和指导文档,多么宝贵的学习资料;另外两个是 MindSpore 的开源基础建设,其中 infrastructure 包含了用于配置 Mindspore 社区的所有必需 Dockerfile 和 YAML 文件,并借助 Github 的 Action 定时自动同步 Gitee 的代码到 Github 。

训练时长截图

手机识别截图

学习总结

在学习之前我以为我会了,但真正实践起来还是磕磕碰碰,所有的代码似曾相识,都是 26 个字母加一些符号组成,但真正去理解还是发现基本功不够:一是不知道怎么写,二是不知道为什么要这么写。尽管如此,我大概理顺了整个实践流程:训练猫狗图像分类模型(云端) --> 手机端推理及应用 --> 从 “1” 开始 Fine Tune 模型(本地) --> 手机端验证 ,当然作为学渣,整个操作过程肯定不止一个小时, 深刻体会到“眼睛:学会了,脑子:学废了!”,因此必须借此帖记录一下“学废了”的过程:

目的

本次实践基于 mobilenetV2 实现猫狗图像分类,贯穿了数据集获取及处理、预训练模型微调及迁移、端侧部署及推理等环节和知识点,体会到了 MindSpore 简单的开发体验和全场景快速部署的魅力。

项目目录


  
  1. MindSporePetClassification
  2. ├─ ADB // 支持手机与电脑传递文件工具
  3. │ ├─ adb .exe
  4. │ ├─ AdbWinApi .dll
  5. │ ├─ AdbWinUsbApi .dll
  6. │ └─ fastboot .exe
  7. ├─ code // Fine tune训练代码及数据集
  8. │ ├─ dataset
  9. │ │ ├─ PetImages
  10. │ │ │ ├─ eval
  11. │ │ │ │ ├─ Cat
  12. │ │ │ │ └─ Dog
  13. │ │ │ ├─ train
  14. │ │ │ │ ├─ Cat
  15. │ │ │ │ └─ Dog
  16. │ │ ├─ MSR-LA - 3467 .docx
  17. │ │ └─ readme [1] .txt
  18. │ ├─ src
  19. │ │ ├─ __pycache__
  20. │ │ │ ├─ args .cpython-37 .pyc
  21. │ │ │ ├─ config .cpython-37 .pyc
  22. │ │ │ ├─ dataset .cpython-37 .pyc
  23. │ │ │ ├─ lr_generator .cpython-37 .pyc
  24. │ │ │ ├─ mobilenetV2 .cpython-37 .pyc
  25. │ │ │ ├─ models .cpython-37 .pyc
  26. │ │ │ └─ utils .cpython-37 .pyc
  27. │ │ ├─ args .py
  28. │ │ ├─ config .py
  29. │ │ ├─ dataset .py
  30. │ │ ├─ lr_generator .py
  31. │ │ ├─ mobilenetV2 .py
  32. │ │ ├─ models .py
  33. │ │ └─ utils .py
  34. │ ├─ mobilenetV2 .ckpt // 预训练模型文件
  35. │ ├─ preprocessing_dataset .py // 预先处理数据集脚本
  36. │ └─ train .py // 主训练脚本
  37. ├─ converter // 转换工具MindSpore Lite Converter
  38. │ ├─ converter_lite .exe
  39. │ ├─ libgcc_s_seh-1 .dll
  40. │ ├─ libglog .dll
  41. │ ├─ libmindspore_gvar .dll
  42. │ ├─ libssp-0 .dll
  43. │ ├─ libstdc++-6 .dll
  44. │ └─ libwinpthread-1 .dll
  45. └─ kagglecatsanddogs_3367a .zip

依赖安装

本次实践依赖opencv-python 和 matplotlib,一个用来处理图形比如打印图片和嵌入文字,一个用来将数据集以可视化图片的形式展现出来。


  
  1. pip install opencv-python -i https: //pypi.tuna.tsinghua.edu.cn/simple
  2. pip install matplotlib -i https: //pypi.tuna.tsinghua.edu.cn/simple

数据预处理

主要删除一些不符合要求(如非JPEG格式)的图片并分割 train 和 eval 数据集,默认9:1:

python preprocessing_dataset.py 您的路径\kagglecatsaData to Dragnddogs_3367a.zip

Fine tune

执行Fine tune脚本train.py,并生成模型文件:

python train.py

此时会弹窗提示6张图片,这是因为脚本会在正式训练前从数据集中抽取6张图片载入当前模型文件,需要手动关闭才能继续,这是 AI 很傻,全都识别成了 Dog 。

当然,我这边由于机器的原因,没少踩坑,这不“出师未捷身先死”,突然的报错把我整蒙了,将所有num_parallel_workers参数设置为4之后,继续训练!


  
  1. $ python train.py
  2. start cache feature!
  3. Traceback (most recent call last):
  4. File "train.py", line 52, in < module>
  5. data, step_size = extract_features(backbone_net, args_opt.dataset_path, config)
  6. File "F:\dosomethings\serverless\ModelArts\MIndSpore\MindSporePetClassification\MindSporePetClassification\code\src\dataset.py",
  7. line 84, in extract_features
  8. train_dataset = create_dataset(dataset_path=os.path.join(dataset_path, "train"), do_train= True, config=config)
  9. File "F:\dosomethings\serverless\ModelArts\MIndSpore\MindSporePetClassification\MindSporePetClassification\code\src\dataset.py",
  10. line 41, in create_dataset
  11. ds = de.ImageFolderDataset(dataset_path, num_parallel_workers= 8, shuffle= True)
  12. File "C:\Users\huqi\AppData\Local\Programs\Python\Python37\lib\site-packages\mindspore\dataset\engine\validators.py", line 51, in new_method
  13. validate_dataset_param_value(nreq_param_int, param_dict, int)
  14. File "C:\Users\huqi\AppData\Local\Programs\Python\Python37\lib\site-packages\mindspore\dataset\core\validator_helpers.py", line 352, in validate_dataset_param_value
  15. check_num_parallel_workers(param_dict.get(param_name))
  16. File "C:\Users\huqi\AppData\Local\Programs\Python\Python37\lib\site-packages\mindspore\dataset\core\validator_helpers.py", line 340, in check_num_parallel_workers
  17. raise ValueError( "num_parallel_workers exceeds the boundary between 1 and {}!".format(cpu_count()))
  18. ValueError: num_parallel_workers exceeds the boundary between 1 and 4!

这一步耗时就和本地机器的性能有关了,我的粗粮渣渣机大概跑废了。趁着训练的空档,学习了一些代码。作为新晋调参学徒,我大概知道参数和配置在code\src\args.py和code\src\config.py这两个文件,而数据的加载在code\src\dataset.py这个文件处理,code\src\mobilenetV2.py定义了模型,code\src\models.py这个文件读取和保存模型并打印输出训练日志。

训练完成会,又会调用predict_from_net方法来显示预测的图片和标签,这回我们发现 AI 挺棒的,全部识别正确! 当我满怀信心点击关闭的时候,以为程序立马会给我一个mobilenetv2.mindir,结果我又蒙了,返回了一串错误日志!!!


  
  1. early stop! the best epoch is 2
  2. train total cost 4141.2663 s
  3. Traceback (most recent call last):
  4. File "train.py", line 81, in < module>
  5. export_mindir(net, "mobilenetv2")
  6. File "F:\dosomethings\serverless\ModelArts\MIndSpore\MindSporePetClassification\MindSporePetClassification\code\src\utils.py", line 93, in export_mindir
  7. export(net, Tensor(input_np), file_name= path, file_format= 'MINDIR')
  8. File "C:\Users\huqi\AppData\Local\Programs\Python\Python37\lib\site-packages\mindspore\train\serialization.py", line 535, in export
  9. Validator.check_file_name_by_regular(file_name)
  10. File "C:\Users\huqi\AppData\Local\Programs\Python\Python37\lib\site-packages\mindspore\_checkparam.py", line 438, in check_file_name_by_regular
  11. target, prim_name, reg, flag))
  12. ValueError: 'F:\dosomethings\serverless\ModelArts\MIndSpore\MindSporePetClassification\MindSporePetClassification\code\mobilenetv2.mindir' is illegal, it should be match regular '^[0-9a-zA-Z\_\-\.\/\\]+$' by flags '256'

一开始我以为是文件层级太深了,将文件目录迁移到盘的根目录,重来重来!好在不需要再次加载数据集了,不然又得漫长的等待。 满怀信心结果又被“啪啪啪”打脸,之后群里请教一遍之后,王辉老师建议我把路径改成文件名再试试,果然立马奏效~


  
  1. - path = os. path.abspath(f "{name}.mindir")
  2. + path = name

终于如愿以偿,code\mobilenetv2.mindir她来了!

手机端推理及应用

  • 训练模型转换
    将.mindir模型文件转换成.ms文件,.ms文件可以导入端侧设备并基于MindSpore端侧框架训练。
F:\MindSporePetClassification\converter>call converter_lite --fmk=MINDIR --modelFile=f:\MindSporePetClassification\code\mobilenetv2.mindir --outputFile=pet

我们可以下载 MindSpore 官方提供的 Android APP 源码: https://gitee.com/mindspore/mindspore/tree/master/model_zoo/official/lite/pet_classification

或者直接下载打包好的 APP 安装到手机: https://download.mindspore.cn/model_zoo/official/lite/apk/pet/petclassification.apk

 

先体验下预训练模型的识别效果:

接着我们把转换好的模型移动到手机端的/sdcard/PetClassification,这里用到的是 ADB 工具:需要确保手机已开启开发者模式并打开文件传输


  
  1. F:\MindSporePetClassification\converter>adb push f:\MindSporePetClassification\converter\pet.ms /sdcard/PetClassification
  2. * daemon not running; starting now at tcp: 5037
  3. * daemon started successfully
  4. f:\MindSporePetClassification\converter\pet. ms: 1 file pushed, 0 skipped. 43.4 MB/s ( 8900552 bytes in 0.196s)

再试试识别效果:

对本次实践 APP 端代码感兴趣的小伙伴可以直接去阅读源码: https://gitee.com/mindspore/mindspore/blob/master/model_zoo/official/lite/pet_classification/app/src/main/java/com/mindspore/classificationforpet/widget/MainActivity.java

本文分享自华为云社区《Copy攻城狮1小时入门AI开发工程师》,原文作者:胡琦。

 

点击关注,第一时间了解华为云新鲜技术~


转载:https://blog.csdn.net/devcloud/article/details/113106915
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场