How this analysis was created: This summary and feature list were written by an AI model that read the project's README and public documentation pages. Each feature links to the documentation it came from; stars, license and language come straight from the GitHub API. The model does not read the source code, and the analysis is refreshed when the project is re-analysed. Learn more on our About page.
Implementation of a classification framework from the paper Aggregated Residual Transformations for Deep Neural Networks
The main features of facebookresearch/resnext are: Computer Vision, Image Classification Architectures.
Open-source alternatives to facebookresearch/resnext include: pytorch/vision — This project is a comprehensive computer vision library for the PyTorch ecosystem, providing a standardized collection… liuzhuang13/densenet — DenseNet is a computer vision model and convolutional neural network implementation designed for image recognition and… jongchan/attention-module — Official PyTorch code for "BAM: Bottleneck Attention Module (BMVC2018)" and "CBAM: Convolutional Block Attention… hujie-frank/senet — Squeeze-and-Excitation Networks. kaiminghe/resnet-1k-layers — Deep Residual Networks with 1K Layers. szagoruyko/wide-residual-networks — 3.8% and 18.3% on CIFAR-10 and CIFAR-100.
Official PyTorch code for "BAM: Bottleneck Attention Module (BMVC2018)" and "CBAM: Convolutional Block Attention Module (ECCV2018)"
DenseNet is a computer vision model and convolutional neural network implementation designed for image recognition and classification tasks. It utilizes a densely connected network architecture where each layer is connected to every other layer to improve feature propagation. The implementation reduces the number of parameters while maintaining accuracy through a dense-connectivity pattern and layer-aggregation concatenation. It supports model construction using both standard and bottleneck-compressed architectures, with configurable network depth and growth rates to balance inference time an