mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-07-15 01:23:44 -07:00
Pixel loss may help to enhance fine details and stabilize face color. Use it only if quality does not improve over time. SAE: previous SAE model will not work with this update. Greatly decreased chance of model collapse. Increased model accuracy. Residual blocks now default and this option has been removed. Improved 'learn mask'. Added masked preview (switch by space key) Converter: fixed rct/lct in seamless mode added mask mode (6) learned*FAN-prd*FAN-dst added mask editor, its created for refining dataset for FANSeg model, and not for production, but you can spend your time and test it in regular fakes with face obstructions
25 lines
No EOL
637 B
Python
25 lines
No EOL
637 B
Python
from .estimate_sharpness import estimate_sharpness
|
|
from .equalize_and_stack_square import equalize_and_stack_square
|
|
|
|
from .text import get_text_image
|
|
from .text import get_draw_text_lines
|
|
|
|
from .draw import draw_polygon
|
|
from .draw import draw_rect
|
|
|
|
from .morph import morph_by_points
|
|
|
|
from .warp import gen_warp_params
|
|
from .warp import warp_by_params
|
|
|
|
from .reduce_colors import reduce_colors
|
|
|
|
from .color_transfer import color_hist_match
|
|
from .color_transfer import reinhard_color_transfer
|
|
from .color_transfer import linear_color_transfer
|
|
|
|
from .DCSCN import DCSCN
|
|
|
|
from .common import normalize_channels
|
|
|
|
from .IEPolys import IEPolys |