You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The encoder has different layer names than the network. As a result, the ae_net_dict here is an empty dictionary. One possible revision,
ae_net_dict = {k: v for k, v in ae_net_dict.items() if 'encoder' in k}
The text was updated successfully, but these errors were encountered:
Deep-SAD-PyTorch/src/DeepSAD.py, line 123
The encoder has different layer names than the network. As a result, the ae_net_dict here is an empty dictionary. One possible revision,
ae_net_dict = {k: v for k, v in ae_net_dict.items() if 'encoder' in k}
The text was updated successfully, but these errors were encountered: