Joaquin Anton
Joaquin Anton
You can try disabling the shuffling (Comment out `random.shuffle(self.files)`), and/or, print the label during `__next__`, so that you can see the order of the files, and you could easily see...
Closing this issue now. If you still need help, please reopen.
@jasonxzhou Higher bitdepth support is now available via `fn.experimental.decoders.image`: ``` decoded = fn.experimental.decoders.image( encoded, device='mixed', dtype=types.UINT16) ``` I hope this helps
We simply use the experimental namespace when we introduce something new, or when we know it's not yet feature complete. Other times, like this one, it's a replacement for an...
Closing this issue now. If you still need help, please reopen.
Assuming you want to crop the whole sequence of frames with a given anchor and size of the cropping window, you can do something like this: ``` from nvidia.dali import...
If you wanted to apply a different cropping window per frame, currently there's no built-in way to do so, but you can do it by processing each frame independently, like...
!build
Hi @JunHyunjae I've check your code above and it produces valid results. I had to modify it a little bit to make it run: ``` from nvidia.dali import Pipeline, fn,...
Hi @dengjiahao12. Thank you for your question. The best tool I can recommend is nsight systems profiler. You can collect your profile like this: ``` # (optional) lower paranoid level...