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
I'm new to using torchtyping, and my usecase is the following: I have a data structure that has tensor of size N and another one of size N - 1. Is there a way to specify this? Naive attempt of using TensorType["time" - 1] failed.
Thanks!
The text was updated successfully, but these errors were encountered:
Currently the best way to specify this is just TensorType["time - 1"]. This will just define another dimension name though. So it's good for documentation purposes but won't be able to check that "time" - 1 = "time" - 1, so to speak.
Having this work is something I'd like to add; see issue #2. It should be possible to make work at a technical level; I just haven't found the time to implement it.
Hi,
I'm new to using torchtyping, and my usecase is the following: I have a data structure that has tensor of size N and another one of size N - 1. Is there a way to specify this? Naive attempt of using
TensorType["time" - 1]
failed.Thanks!
The text was updated successfully, but these errors were encountered: