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
Implement variable-sized sequence sampling, both with and without replacement. Sampling from eg LSTMs creates a sequence of random samples, but the amount of random variables sampled varies depending on eg when the EOS token is sampled.
Using the AncestralPlate, we should be able to keep track of exactly what sequences are sampled. When a sequence reaches EOS, we can remove it from the samples in the future to not do double computation. Should be possible both with and without replacement: When doing without replacement, we should only sample the k-1.
The text was updated successfully, but these errors were encountered:
Implement variable-sized sequence sampling, both with and without replacement. Sampling from eg LSTMs creates a sequence of random samples, but the amount of random variables sampled varies depending on eg when the EOS token is sampled.
Using the AncestralPlate, we should be able to keep track of exactly what sequences are sampled. When a sequence reaches EOS, we can remove it from the samples in the future to not do double computation. Should be possible both with and without replacement: When doing without replacement, we should only sample the k-1.
The text was updated successfully, but these errors were encountered: