-
Notifications
You must be signed in to change notification settings - Fork 56
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Augmentations on GPU #8
Comments
I haven't found any HLS implementation on GPU. It might be helpful if the color augmentation could be done on the GPU side. Besides considering reducing the cost of data augmentation, you can also consider reducing the cost of decoding video files. Actually, for Kinetics dataset, I found that convert the default *.mp4 using the command below can significantlty speed up the decoding stage: For example:
|
Thanks much for your feedback, this is helpful. |
@cypw By the way, did you try converting videos to h264 / h265 ? |
Hi, this comes a bit late but removing numpy functions as much as possible and using cv2 equivalents in the
|
Hi, great code !
I have been noticing GPU usage is a bit low (around 40%), and trying to optimize.
I've been noticing that HLSTransform is very CPU intensive.
Are you aware of any way to have it executed on GPU instead of CPU ?
Do you think it could help ?
Thanks
The text was updated successfully, but these errors were encountered: