An open API service indexing awesome lists of open source software.

https://github.com/jaketae/res-mlp

PyTorch implementation of ResMLP: Feedforward networks for image classification with data-efficient training
https://github.com/jaketae/res-mlp

computer-vision image-classification mlp pytorch

Last synced: 23 days ago
JSON representation

PyTorch implementation of ResMLP: Feedforward networks for image classification with data-efficient training

Awesome Lists containing this project

README

          

# ResMLP

PyTorch implementation of [ResMLP: Feedforward networks for image classification with data-efficient training](https://arxiv.org/abs/2105.03404).

## Quickstart

Clone this repository.

```
git clone https://github.com/jaketae/res-mlp.git
```

Navigate to the cloned directory. You can start using the model via

```python
>>> from res_mlp import ResMLP
>>> model = ResMLP()
```

By default, the model comes with the following parameters:

```python
ResMLP(
image_size=256,
patch_size=16,
in_channels=3,
num_features=128,
expansion_factor=2,
num_layers=6,
num_classes=10,
)
```

## Resources

- [Original Paper](https://arxiv.org/abs/2105.03404)
- [Going deeper with Image Transformers](https://arxiv.org/abs/2103.17239)