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
When a tilde (~) is used in the extraction path passed to the dataset constructor, the dataset will not be properly extracted and will yield an object with no records.
Example:
This works: testset = tonic.datasets.DVSGesture(save_to="./data", train=False)
But this wont: testset = tonic.datasets.DVSGesture(save_to="~/SNN_DVSGesture/data", train=False)
printing it returns 0:
The text was updated successfully, but these errors were encountered:
When a tilde (
~
) is used in the extraction path passed to the dataset constructor, the dataset will not be properly extracted and will yield an object with no records.Example:
This works:
testset = tonic.datasets.DVSGesture(save_to="./data", train=False)
But this wont:
testset = tonic.datasets.DVSGesture(save_to="~/SNN_DVSGesture/data", train=False)
printing it returns 0:
The text was updated successfully, but these errors were encountered: