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

config.py 492 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
13
14
15
16
17
18
19
20
21
  1. VIDEOS_DIR = "data/videos"
  2. MODELS_DIR = "models"
  3. RAW_IMAGES_DIR = "data/raw"
  4. PROCESSED_IMAGES_DIR = "data/processed"
  5. CLASSES = ["mario", "wario"]
  6. YT_LINKS_DIR = {
  7. "mario": "https://www.youtube.com/watch?v=lXMJt5PP3kM",
  8. "wario": "https://www.youtube.com/watch?v=ZJuxdR0KH-s",
  9. }
  10. VIDEO_NAMES_DIR = {
  11. "mario": "Game Boy Longplay [005] Super Mario Land 2 6 Golden Coins.mp4",
  12. "wario": "Game Boy Longplay [004] Super Mario Land 3 Wario Land.mp4",
  13. }
  14. N_TRAIN = 2500
  15. N_TEST = 500
Tip!

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

Comments

Loading...