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
Hello, thank you for making this program available.
I was able to get your adversarial autoencoder working, but it did require quite a bit of modification do so, namely
Modifying BaseData.getitem to np.int64 -- sample_x, sample_y -> sample_x, sample_y.astype(np.int64)
Forcing the batch ids to be 1-based indexed - there were some really weird indexing errors popping up in _forward_autoencode when 0-based indexed batch ids (which is naturally outputted from sklearn.preprocessing.LabelEncoder).
(1) looks like a bug to me - and having example datasets on the github repo to test NormAE would have been tremendously useful, since it would also help users validate their install. (2) could benefit from better documentation. (3) is probably un-necessary given how many different preprocessing procedures there are.
The text was updated successfully, but these errors were encountered:
Hello, thank you for making this program available.
I was able to get your adversarial autoencoder working, but it did require quite a bit of modification do so, namely
np.int64
--sample_x, sample_y
->sample_x, sample_y.astype(np.int64)
_forward_autoencode
when 0-based indexed batch ids (which is naturally outputted fromsklearn.preprocessing.LabelEncoder
).(1) looks like a bug to me - and having example datasets on the github repo to test NormAE would have been tremendously useful, since it would also help users validate their install. (2) could benefit from better documentation. (3) is probably un-necessary given how many different preprocessing procedures there are.
The text was updated successfully, but these errors were encountered: