-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/unsupervised training #29
Conversation
…pervised_training
dead-end as function design is not ready
fix typo in epoch_shift
add random_obfuscator() fix unsupervised_loss()
fix y has one column in tabnet_train_unsupervised()
lower data size in secondary tests
fix typo in subseting dataset in test
…/unsupervised_training
add train_batch_un() and valid_batch_un() fix epoch_shift value missing
Merge branch 'main' of https://github.com/mlverse/tabnet into feature/unsupervised_training # Conflicts: # R/model.R
Hey @cregouby ! This looks awesome!! It's almost there! I think the problem was that the decoder was returning only the combined steps output instead of the intermediate ones. We now get to a |
Thanks a lot for this push @dfalbel ! I'll definitively continue with the model serialization. |
…ll fails to pipe unsupervised to supervised.
Still need to convert network from one to the other
still failing saveRDS serialisation and val-split
remove duplicate function
move some tests to -scenarios
…/unsupervised_training
relaxed tolerance between two training epoch
fix typo add few more explainations
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome @cregouby ! Merging now!
Thanks a lot, @dfalbel ! |
Hello,
Unsupervised training is working now, and can be part of training scenario ( see test-hardhat-scenarios.R)
except for CUDA where I can't get
torch_bernoulli()
work on GPU (see mlverse/torch#480)Fix #18