├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md └── docs └── img ├── 2.png ├── VGGFace2-HQ.png ├── girl2-RGB.png ├── girl2.gif ├── logo.png ├── simswap.png └── title.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuralchen/Bivolution/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuralchen/Bivolution/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuralchen/Bivolution/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuralchen/Bivolution/HEAD/README.md -------------------------------------------------------------------------------- /docs/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuralchen/Bivolution/HEAD/docs/img/2.png -------------------------------------------------------------------------------- /docs/img/VGGFace2-HQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuralchen/Bivolution/HEAD/docs/img/VGGFace2-HQ.png -------------------------------------------------------------------------------- /docs/img/girl2-RGB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuralchen/Bivolution/HEAD/docs/img/girl2-RGB.png -------------------------------------------------------------------------------- /docs/img/girl2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuralchen/Bivolution/HEAD/docs/img/girl2.gif -------------------------------------------------------------------------------- /docs/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuralchen/Bivolution/HEAD/docs/img/logo.png -------------------------------------------------------------------------------- /docs/img/simswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuralchen/Bivolution/HEAD/docs/img/simswap.png -------------------------------------------------------------------------------- /docs/img/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuralchen/Bivolution/HEAD/docs/img/title.png --------------------------------------------------------------------------------