mirror of
https://github.com/deepfakes/faceswap
synced 2025-06-07 10:43:27 -04:00
* Extraction - Speed improvements (#522) * Initial Plugin restructure * Detectors to plugins. Detector speed improvements * Re-implement dlib aligner, remove models, FAN to TF. Parallel processing * Update manual, update convert, implement parallel/serial switching * linting + fix cuda check (setup.py). requirements update keras 2.2.4 * Add extract size option. Fix dlib hog init * GUI: Increase tooltip width * Update alignment tool to support new DetectedFace * Add skip existing faces option * Fix sort tool to new plugin structure * remove old align plugin * fix convert -skip faces bug * Fix convert skipping no faces frames * Convert - draw onto transparent layer * Fix blur threshold bug * fix skip_faces convert bug * Fix training
7 lines
No EOL
176 B
Python
7 lines
No EOL
176 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
__author__ = """Based on https://github.com/shaoanlu/"""
|
|
__version__ = '0.1.0'
|
|
|
|
from .Model import GANModel as Model
|
|
from .Trainer import Trainer |