文件最后提交记录最后更新时间
!2335 高性能预训练模型 seresnet50 和 ST-GCN 回归问题修改 !2335 高性能预训练模型 seresnet50 和 ST-GCN 回归问题修改 3 年前
!2127 [西安电子科技大学][高校贡献][Pytorch][SE-Resnet50]-高性能预训练模型提交+功能 !2127 [西安电子科技大学][高校贡献][Pytorch][SE-Resnet50]-高性能预训练模型提交+功能 3 年前
!4671 【fix】批量修改模型python版本,兼容环境上的python3.8版本 * fix python version 3 年前
!5631 [PyTorch] 更新Readme版本支持列表 Merge pull request !5631 from 沈鹏程/fix_PT_requirement 2 年前
!5631 [PyTorch] 更新Readme版本支持列表 Merge pull request !5631 from 沈鹏程/fix_PT_requirement 2 年前
!6074 PyTorch 2.2 版本依赖配套更新 Merge pull request !6074 from Chai/master 2 年前
!6349 PyTorch 2.3 版本依赖配套更新 Merge pull request !6349 from 周嘉益/master 1 年前
!6574 PyTorch 2.4 版本依赖配套更新 Merge pull request !6574 from 周嘉益/pt24 1 年前
init 4 年前
fix link validity Co-authored-by: frozenleaves<914814442@qq.com> # message auto-generated for no-merge-commit merge: !7517 merge master into master fix link validity Created-by: frozenn Commit-by: frozenleaves Merged-by: ascend-robot Description: ## Motivation Please describe the motivation of this PR and the goal you want to achieve through this PR. ## Modification Please briefly describe what modification is made in this PR. ## Self-test (Optional) If modifications to this PR may cause/fix function/accuracy/performance DTSs/issues, a self-inspection record needs to be attached. ## BC-breaking (Optional) If there are compatibility issues, such as dependencies on cann/torch_npu versions, they need to be explained in the PR. ## Checklist **Before PR**: - [ ] The new code needs to comply with the Clean Code specification. - [ ] The PR content is self-checked, and the expression can be clear and the writing standardized **After PR**: - [ ] CLA has been signed and all committers have signed the CLA in this PR. - [ ] The ci-pipeline is passed, Code Check is passed. See merge request: Ascend/ModelZoo-PyTorch!75171 个月前
!4671 【fix】批量修改模型python版本,兼容环境上的python3.8版本 * fix python version 3 年前
!5261 【pytorch】【contrib】【cv】 模型公网地址整改 * 【pytorch】【contrib】【cv】 模型公网地址整改 2 年前
!2127 [西安电子科技大学][高校贡献][Pytorch][SE-Resnet50]-高性能预训练模型提交+功能 !2127 [西安电子科技大学][高校贡献][Pytorch][SE-Resnet50]-高性能预训练模型提交+功能 3 年前
!1042 [西安交通大学][高校贡献][PyTorch迁移1.8][SE-ResNet-50]--初次提交 !1042 [西安交通大学][高校贡献][PyTorch迁移1.8][SE-ResNet-50]--初次提交 3 年前
!772 [众智][PyTorch]SE-Resnet-50模型用repeat算子取代转连续,修改后可以将性能从2000+提升至5000+ !772 [众智][PyTorch]SE-Resnet-50模型用repeat算子取代转连续,修改后可以将性能从2000+提升至5000+ 3 年前
init 4 年前
!7376 optimize public_address_statement.md Merge pull request !7376 from 王凯宇/master 8 个月前
!772 [众智][PyTorch]SE-Resnet-50模型用repeat算子取代转连续,修改后可以将性能从2000+提升至5000+ !772 [众智][PyTorch]SE-Resnet-50模型用repeat算子取代转连续,修改后可以将性能从2000+提升至5000+ 3 年前
!5261 【pytorch】【contrib】【cv】 模型公网地址整改 * 【pytorch】【contrib】【cv】 模型公网地址整改 2 年前
!5261 【pytorch】【contrib】【cv】 模型公网地址整改 * 【pytorch】【contrib】【cv】 模型公网地址整改 2 年前
README.md

SE-ResNet-50 for PyTorch

概述

简述

SE-ResNet是加入了“Squeeze-and-Excitation”(SE)模块的ResNet架构模型。SE模块能显式地建模特征通道之间的相互依赖关系。另外,SE-ResNet不引入一个新的空间维度来进行特征通道间的融合,而是采用了一种全新的“特征重标定”策略。具体来说,就是通过学习的方式来自动获取到每个特征通道的重要程度,然后依照这个重要程度去提升有用的特征并抑制对当前任务用处不大的特征。SE模块以最小的额外计算成本为深层架构带来了显著的性能改进。

  • 参考实现:

    url=https://github.com/hujie-frank/SENet
    commit_id=0262d43d44c561fd53c3dba210cc8bacfc60500d
    
  • 适配昇腾 AI 处理器的实现:

    url=https://gitcode.com/ascend/ModelZoo-PyTorch.git
    code_path=PyTorch/contrib/cv/classification
    

准备训练环境

准备环境

  • 当前模型支持的 PyTorch 版本和已知三方库依赖如下表所示。

    表 1 版本支持表

    Torch_Version 三方库依赖版本
    PyTorch 1.11 torchvision==0.12.0
    PyTorch 2.1 torchvision==0.16.0
    PyTorch 2.2 torchvision==0.17.0
    PyTorch 2.3 torchvision==0.18.1
    PyTorch 2.4 torchvision==0.19.0
  • 环境准备指导。

    请参考《Pytorch框架训练环境准备》。

  • 安装依赖。

    在模型源码包根目录下执行命令,安装模型对应PyTorch版本需要的依赖。

    pip install -r 1.11_requirements.txt  # PyTorch1.11版本
    
    pip install -r 2.1_requirements.txt  # PyTorch2.1版本
    
    pip install -r 2.2_requirements.txt  # PyTorch2.2版本
    
    pip install -r 2.3_requirements.txt  # PyTorch2.3版本
    
    pip install -r 2.4_requirements.txt  # PyTorch2.4版本
    

    说明: 只需执行一条对应的PyTorch版本依赖安装命令。

准备数据集

  1. 获取数据集。

    用户自行获取原始数据集,使用的开源数据集为ImageNet,将数据集上传到服务器任意路径下并解压。

    数据集目录结构参考如下所示。

    ├── ImageNet
       ├──train
            ├──类别1
                  │──图片1
                  │──图片2
                  │   ...       
            ├──类别2
                  │──图片1
                  │──图片2
                  │   ...   
            ├──...                     
       ├──val  
            ├──类别1
                  │──图片1
                  │──图片2
                  │   ...       
            ├──类别2
                  │──图片1
                  │──图片2
                  │   ...    
    

    说明: 该数据集的训练过程脚本只作为一种参考示例

开始训练

训练模型

  1. 进入解压后的源码包根目录。

    cd /${模型文件夹名称}
    
  2. 运行训练脚本。

    该模型支持单机单卡训练和单机8卡训练。

    • 单机单卡训练

      启动单卡训练。

      bash ./test/train_performance_1p.sh --data_path=/data/xxx/  # 单卡性能
      
    • 单机8卡训练

      启动8卡训练。

      bash ./test/train_full_8p.sh --data_path=/data/xxx/  # 8卡精度
      
      bash ./test/train_performance_8p.sh --data_path=/data/xxx/  # 8卡性能
      
    • 单机8卡评测

      启动8卡评测。

      bash ./test/train_eval_8p.sh --data_path=/data/xxx/  # 启动评测脚本前,需对应修改评测脚本中的--resume参数,指定ckpt文件路径
      
    • 多机多卡性能数据获取流程

      1. 安装环境
      2. 开始训练,每个机器请按下面提示进行配置
       bash ./test/train_performance_multinodes.sh --data_path=数据集路径 --batch_size=单卡batch_size*所有卡数 --nnodes=机器总数量 --node_rank=当前机器rank(0,1,2..) --local_addr=当前机器IP(需要和master_addr处于同一网段) --master_addr=主节点IP
      

    --data_path参数填写数据集路径,需写到数据集的一级目录。

    模型训练脚本参数说明如下。

    公共参数:
    --addr                              //主机地址
    --workers                           //加载数据进程数
    --epochs                            //重复训练次数
    --batch-size                        //训练批次大小
    --learning-rate                     //初始学习率
    --mom                               //动量
    --weight-decay                      //权重衰减
    --amp                               //是否混合精度,默认:False
    --device                            //使用设备,gpu或npu
    多卡训练参数:
    --multiprocessing-distributed       //是否使用多卡训练
    

训练结果展示

表 2 训练结果展示表

NAME Acc@1 FPS Epochs AMP_Type Torch_Version
1p-竞品V - - 1 - 1.5
8p-竞品V - - 100 - 1.5
1p-NPU - 747.41 1 O2 1.8
8p-NPU 77.521 5306.66 100 O2 1.8

版本说明

2022.08.01:更新pytorch1.8版本,重新发布。

FAQ

无。

公网地址说明

代码涉及公网地址参考 public_address_statement.md