mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-07-11 07:37:03 -07:00
refactoring. Added RecycleGAN for testing.
This commit is contained in:
parent
8686309417
commit
f8824f9601
24 changed files with 1661 additions and 1505 deletions
7
mathlib/__init__.py
Normal file
7
mathlib/__init__.py
Normal file
|
@ -0,0 +1,7 @@
|
|||
from .umeyama import umeyama
|
||||
|
||||
def get_power_of_two(x):
|
||||
i = 0
|
||||
while (1 << i) < x:
|
||||
i += 1
|
||||
return i
|
Loading…
Add table
Add a link
Reference in a new issue