Created
August 6, 2020 22:15
-
-
Save thunderInfy/ff43679bd91decd939d4ab5233479906 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # update the queue | |
| queue = torch.cat((queue, k), 0) | |
| # dequeue if the queue gets larger than the max queue size - denoted by K | |
| # batch size is 256, can be replaced by a variable | |
| if queue.shape[0] > K: | |
| queue = queue[256:,:] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment