• Stars
    star
    105
  • Rank 326,351 (Top 7 %)
  • Language
    Python
  • License
    MIT License
  • Created over 5 years ago
  • Updated over 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

PyTorch implementation of Res2Net

PyTorch implementation of Res2Net

This repository contains code for Res2Net based on Res2Net: A New Multi-scale Backbone Architecture implemented in PyTorch.

Requirements

  • Python 3.6
  • PyTorch 1.0

Training

CIFAR-100

  • Res2NeXt-29, 6cx24wx4scale:
python train.py --dataset cifar100 --arch res2next29_6cx24wx4scale
  • Res2NeXt-29, 8cx25wx4scale:
python train.py --dataset cifar100 --arch res2next29_8cx25wx4scale
  • Res2NeXt-29, 6cx24wx6scale:
python train.py --dataset cifar100 --arch res2next29_6cx24wx6scale
  • Res2NeXt-29, 6cx24wx4scale-SE:
python train.py --dataset cifar100 --arch res2next29_6cx24wx4scale_se
  • Res2NeXt-29, 8cx25wx4scale-SE:
python train.py --dataset cifar100 --arch res2next29_8cx25wx4scale_se
  • Res2NeXt-29, 6cx24wx6scale-SE:
python train.py --dataset cifar100 --arch res2next29_6cx24wx6scale_se

ImageNet

  • Res2Net-50:
python train.py --dataset imagenet --imagenet-dir </path/to/data> --arch res2net50 --epoch 100 --milestones 30 --weight-decay 1e-4
  • Res2Net-101:
python train.py --dataset imagenet --imagenet-dir </path/to/data> --arch res2net101 --epoch 100 --milestones 30 --weight-decay 1e-4
  • Res2Net-152:
python train.py --dataset imagenet --imagenet-dir </path/to/data> --arch res2net152 --epoch 100 --milestones 30 --weight-decay 1e-4
  • Res2NeXt-50_32x4d:
python train.py --dataset imagenet --imagenet-dir </path/to/data> --arch res2next50_32x4d --epoch 100 --milestones 30 --weight-decay 1e-4
  • SE-Res2Net-50:
python train.py --dataset imagenet --imagenet-dir </path/to/data> --arch se_res2net50 --epoch 100 --milestones 30 --weight-decay 1e-4

Results

Coming soon...

More Repositories

1

pytorch-nested-unet

PyTorch implementation of UNet++ (Nested U-Net).
Python
709
star
2

pytorch-deform-conv-v2

PyTorch implementation of Deformable ConvNets v2 (Modulated Deformable Convolution)
Python
654
star
3

keras-arcface

Keras implementation of ArcFace, CosFace, and SphereFace
Python
271
star
4

pytorch-adacos

PyTorch implementation of AdaCos
Python
204
star
5

pytorch-auto-augment

PyTorch implementation of AutoAugment.
Python
148
star
6

kaggle-aptos2019-blindness-detection

11th place solution for APTOS 2019 Blindness Detection on Kaggle (https://www.kaggle.com/c/aptos2019-blindness-detection).
Python
42
star
7

keras-cosine-annealing

Keras implementation of Cosine Annealing Scheduler
Python
41
star
8

pytorch-ricap

PyTorch implementation of RICAP (Random Image Cropping And Patching)
Python
37
star
9

keras-auto-augment

Keras implementation of AutoAugment.
Python
34
star
10

kaggle-pku-autonomous-driving

Part of 5th place solution for Peking University/Baidu - Autonomous Driving on Kaggle (https://www.kaggle.com/c/pku-autonomous-driving).
Python
21
star
11

pytorch-lars

PyTorch implementation of LARS (Layer-wise Adaptive Rate Scaling)
Python
16
star
12

tf-dark-pose

This is an unofficial TensorFlow implementation of DARK Pose (Distribution Aware Coordinate Representation for Human Pose Estimation).
Python
2
star
13

pytorch-scale-aware-triplet

PyTorch implementation of Scale-Aware Triplet Networks
Python
2
star
14

kaggle-carvana-image-masking-challenge

48th solution for Carvana image masking challenge on Kaggle (https://www.kaggle.com/c/carvana-image-masking-challenge).
Python
1
star
15

chainer-m2det

Chainer implementation of M2Det.
Python
1
star