Implement BatchLazyTensor
See original GitHub issueThere is a BatchRepeatLazyTensor
, but no BatchLazyTensor
that would allow batching of a number of arbitrary LazyTensor
s of the same size.
I’d like to use this to set up a BlockDiagLazyTensor
with a base_lazy_tensor that is a batch of LazyTensor
s.
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
LazyTensor — KeOps
LazyTensor encode numerical arrays through the combination of a symbolic, mathematical formula and a list of small data arrays. They can be used ......
Read more >Make DiagLazyTensor work with any batch size #361 - GitHub
I'm in agreement with this change for sure, a DiagLazyTensor created with a 2 x 3 x 4 tensor should represent a 2...
Read more >Source code for gpytorch.lazy.lazy_tensor
This probably won't have to be overwritten by LazyTensors, unless they use batch dimensions in a special way (e.g. BlockDiagLazyTensor, SumBatchLazyTensor) ...
Read more >Advanced Mini-Batching — pytorch_geometric documentation
All other tensors will just get concatenated in the first dimension without any further increasement of their values. However, there are a few...
Read more >Lazy Tensor Core - PyTorch Dev Discussions
Lazy Tensors in PyTorch is an active area of exploration, and this is a call for community involvement to discuss the requirements, implementation,...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’m working on a unsqueezing option right now as part of the batch mode PR. I’ll try to get that component up soon. @Balandat
Seems like we don’t need after all this as we can use
CatLazyTensor
on unsqueezed Lazies.