Re-using cache data of PersistentDataset on new runs (when using Azure blob storage). #7063
Replies: 1 comment 4 replies
-
It is indeed supposed to re-use the data that it caches to disk. Like if the data is there in the directory that you pointed it to, then it should use that data rather than creating new files. So it sounds like something is wrong. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I am using
PersistentDataset
on a large dataset. Is it possible to re-use the cache data on a new run instead of creating the cache data again? I notice that, if I use the same folder where I cached the data before, it won't re-use the files; instead, it will create new files (increasing the disk memory usage of that folder). I am new at using Monai, so I am not sure if I am missing some input argument or configuration that can allowPersistentDataset
to re-use cache data generated on previous runs. (The transformations don't change between runs). Thank you!Beta Was this translation helpful? Give feedback.
All reactions