upd readme

This commit is contained in:
iperov 2019-02-05 13:27:18 +04:00
parent 6d95dd4a99
commit 241ae83e0b
2 changed files with 4 additions and 2 deletions

View file

@ -211,6 +211,8 @@ Basic workflow: https://www.youtube.com/watch?v=K98nTNjXkq8
Basic workflow (derpfakes): https://www.youtube.com/watch?v=cVcyghhmQSA
How To Make DeepFakes With DeepFaceLab - An Amatuer's Guide: https://www.youtube.com/watch?v=wBax7_UWXvc
Manual re-extract bad dst aligned frames: https://www.youtube.com/watch?v=7z1ykVVCHhM
### **Build info**

View file

@ -318,8 +318,8 @@ class SAEModel(ModelBase):
st = []
for i in range(0, len(test_A)):
ar = S[i], SS[i], D[i], DD[i], SD[i]
if self.options['learn_mask']:
ar += (SDM[i],)
#if self.options['learn_mask']:
# ar += (SDM[i],)
st.append ( np.concatenate ( ar, axis=1) )
return [ ('SAE', np.concatenate (st, axis=0 )), ]