mirror of
https://github.com/facefusion/facefusion.git
synced 2026-04-22 01:16:00 +02:00
57fcb86b82
* mark as next * add fran model * add support for corridor key (#1060) * introduce despill color * simplify the apply dispill color * finalize naming for both fill and despill * follow vision_frame convension * patch fran model * adjust fran urls * Feat/dynamic env setup (#1061) * dynamic environment setup * dynamic environment setup * fix fran model * prevent directml using incompatible corridor_key model * fix environment setup for windows * switch to corridor_key_1024 and corridor_key_2048 * switch to corridor_key_1024 and corridor_key_2048 * mark it as 3.6.0 * rename environment to conda * rename environment to conda * fix testing for face analyser * some background remove cosmetics * some background remove cosmetics * some background remove cosmetics * update preview --------- Co-authored-by: harisreedhar <h4harisreedhar.s.s@gmail.com>
12 lines
162 B
Python
Executable File
12 lines
162 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import os
|
|
|
|
os.environ['OMP_NUM_THREADS'] = '1'
|
|
|
|
from facefusion import conda, core
|
|
|
|
if __name__ == '__main__':
|
|
conda.setup()
|
|
core.cli()
|