Skip to content

Instantly share code, notes, and snippets.

@erykml
Created May 1, 2022 13:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erykml/fb7580867c9e859120c36c5508e0239f to your computer and use it in GitHub Desktop.
Save erykml/fb7580867c9e859120c36c5508e0239f to your computer and use it in GitHub Desktop.
.
├── README.md
├── .github
│ └── workflows
│ └── data_validation.yml
├── data
│ ├── processed
│ │ ├── test
│ │ │ ├── mario
│ │ │ ── wario
│ │ └── train
│ │ ├── mario
│ │ └── wario
│ ├── raw
│ │ ├── mario
│ │ └── wario
│ └── videos
├── data_validation.html
├── dvc.lock
├── dvc.yaml
├── metrics.csv
├── models
├── notebooks
│ ├── 1_downloading_data.ipynb
│ ├── 2_extracting_images.ipynb
│ ├── 3_train_test_split.ipynb
│ ├── 4_cnn_classifier.ipynb
│ ├── 5_deepchecks.ipynb
│ └── README.md
├── params.yml
├── requirements.txt
└── src
├── config.py
├── create_train_test_split.py
├── extract_frames.py
├── get_videos.py
├── train.py
├── utils.py
└── validate_data.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment