-
Hi everyone, I try to deal with the chemical dataset, which has a lot of small molecules with different atoms. How to use torchdict to store those non-aligned data, for example, coordinates. What should I set the batch_size? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 14 replies
-
Good question One thing I'm interested in is to provide a nice solution to build TDs with bin evenly spaced data that come in stream (say stream 1 gives you data at 7Hz and stream 2 gives you data at 3Hz), and you want to build TD that can be indexed along the time dimension at, say, 5Hz. Is your problem similar? |
Beta Was this translation helpful? Give feedback.
#955
Merged!
If you use nightlies (from tomorrow) you will be able to call
densify
and all the entries will be accessible.From there, you can call
to_padded_tensor
if you need to make these nested tensors "regular" ones.If needed I can make another PR that adds a
padded
option indensify
.