Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

test_datasets_video_utils_opt.py 356 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
  1. import unittest
  2. import test_datasets_video_utils
  3. from torchvision import set_video_backend # noqa: 401
  4. # Disabling the video backend switching temporarily
  5. # set_video_backend('video_reader')
  6. if __name__ == "__main__":
  7. suite = unittest.TestLoader().loadTestsFromModule(test_datasets_video_utils)
  8. unittest.TextTestRunner(verbosity=1).run(suite)
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...