mirror of
https://github.com/deepfakes/faceswap
synced 2025-06-07 10:43:27 -04:00
* Remove tensorflow_probability requirement * setup.py - fix progress bars * requirements.txt: Remove pre python 3.9 packages * update apple requirements.txt * update INSTALL.md * Remove python<3.9 code * setup.py - fix Windows Installer * typing: python3.9 compliant * Update pytest and readthedocs python versions * typing fixes * Python Version updates - Reduce max version to 3.10 - Default to 3.10 in installers - Remove incompatible 3.11 tests * Update dependencies * Downgrade imageio dep for Windows * typing: merge optional unions and fixes * Updates - min python version 3.10 - typing to python 3.10 spec - remove pre-tf2.10 code - Add conda tests * train: re-enable optimizer saving * Update dockerfiles * Update setup.py - Apple Conda deps to setup.py - Better Cuda + dependency handling * bugfix: Patch logging to prevent Autograph errors * Update dockerfiles * Setup.py - Setup.py - stdout to utf-8 * Add more OSes to github Actions * suppress mac-os end to end test
18 lines
573 B
Python
18 lines
573 B
Python
#!/usr/bin/env python3
|
|
""" Package for handling alignments files, detected faces and aligned faces along with their
|
|
associated objects. """
|
|
from __future__ import annotations
|
|
import typing as T
|
|
|
|
from .augmentation import ImageAugmentation
|
|
from .generator import PreviewDataGenerator, TrainingDataGenerator
|
|
from .preview_cv import PreviewBuffer, TriggerType
|
|
|
|
if T.TYPE_CHECKING:
|
|
from .preview_cv import PreviewBase
|
|
Preview: type[PreviewBase]
|
|
|
|
try:
|
|
from .preview_tk import PreviewTk as Preview
|
|
except ImportError:
|
|
from .preview_cv import PreviewCV as Preview
|