├── .gitignore ├── LICENSE ├── README.md ├── examples ├── images │ ├── 12010.png │ └── 2.png └── theta │ └── 2.npy ├── misc ├── StyleSwap.png └── styleswap-teaser.png ├── models ├── arcface.py ├── op │ ├── fused_act.py │ └── upfirdn2d.py └── styleswap.py ├── test.py └── utils ├── align_face.py ├── prepare_data.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanseattle/StyleSwap/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanseattle/StyleSwap/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanseattle/StyleSwap/HEAD/README.md -------------------------------------------------------------------------------- /examples/images/12010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanseattle/StyleSwap/HEAD/examples/images/12010.png -------------------------------------------------------------------------------- /examples/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanseattle/StyleSwap/HEAD/examples/images/2.png -------------------------------------------------------------------------------- /examples/theta/2.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanseattle/StyleSwap/HEAD/examples/theta/2.npy -------------------------------------------------------------------------------- /misc/StyleSwap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanseattle/StyleSwap/HEAD/misc/StyleSwap.png -------------------------------------------------------------------------------- /misc/styleswap-teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanseattle/StyleSwap/HEAD/misc/styleswap-teaser.png -------------------------------------------------------------------------------- /models/arcface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanseattle/StyleSwap/HEAD/models/arcface.py -------------------------------------------------------------------------------- /models/op/fused_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanseattle/StyleSwap/HEAD/models/op/fused_act.py -------------------------------------------------------------------------------- /models/op/upfirdn2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanseattle/StyleSwap/HEAD/models/op/upfirdn2d.py -------------------------------------------------------------------------------- /models/styleswap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanseattle/StyleSwap/HEAD/models/styleswap.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanseattle/StyleSwap/HEAD/test.py -------------------------------------------------------------------------------- /utils/align_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanseattle/StyleSwap/HEAD/utils/align_face.py -------------------------------------------------------------------------------- /utils/prepare_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanseattle/StyleSwap/HEAD/utils/prepare_data.py -------------------------------------------------------------------------------- /utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seanseattle/StyleSwap/HEAD/utils/util.py --------------------------------------------------------------------------------