https://github.com/dianhsu/swin-transformer-cpp
Swin Transformer C++ Implementation
https://github.com/dianhsu/swin-transformer-cpp
cpp neural-network swin-transformer transformer
Last synced: about 1 year ago
JSON representation
Swin Transformer C++ Implementation
- Host: GitHub
- URL: https://github.com/dianhsu/swin-transformer-cpp
- Owner: dianhsu
- Created: 2021-04-16T14:59:29.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2021-05-19T14:42:16.000Z (almost 5 years ago)
- Last Synced: 2024-10-27T19:00:49.982Z (over 1 year ago)
- Topics: cpp, neural-network, swin-transformer, transformer
- Language: C++
- Homepage:
- Size: 234 KB
- Stars: 54
- Watchers: 6
- Forks: 13
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Swin Transformer Implementation of C++
> reference: [https://github.com/berniwal/swin-transformer-pytorch](https://github.com/berniwal/swin-transformer-pytorch)
This is Swin Transformer C++ Implementation, inspired
by [swin-transformer-pytorch](https://github.com/berniwal/swin-transformer-pytorch).
The official Pytorch Implementation can be found
in [https://github.com/microsoft/Swin-Transformer](https://github.com/microsoft/Swin-Transformer)
## Structure

## Build and Run
> Linux required, cmake(version 3.16 and higher), make
build:
```shell
git clone https://github.com/dianhsu/swin-transformer-cpp
cd swin-transformer-cpp
mkdir build
cd build
cmake ..
make
```
run:
```shell
./swin-transformer-cpp
```