├── .gitignore ├── ReadMe.md ├── notebooks ├── Inference Notebook.ipynb └── Train Notebook.ipynb ├── requirements.txt ├── title.png ├── utils ├── dataset.py ├── model.py ├── prep_utils.py └── trainer.py └── weights └── model_final /.gitignore: -------------------------------------------------------------------------------- 1 | data/ 2 | *.png 3 | .ipynb_checkpoints/ 4 | __pycache__/ -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlgaChernytska/2D-Hand-Pose-Estimation-RGB/HEAD/ReadMe.md -------------------------------------------------------------------------------- /notebooks/Inference Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlgaChernytska/2D-Hand-Pose-Estimation-RGB/HEAD/notebooks/Inference Notebook.ipynb -------------------------------------------------------------------------------- /notebooks/Train Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlgaChernytska/2D-Hand-Pose-Estimation-RGB/HEAD/notebooks/Train Notebook.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlgaChernytska/2D-Hand-Pose-Estimation-RGB/HEAD/requirements.txt -------------------------------------------------------------------------------- /title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlgaChernytska/2D-Hand-Pose-Estimation-RGB/HEAD/title.png -------------------------------------------------------------------------------- /utils/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlgaChernytska/2D-Hand-Pose-Estimation-RGB/HEAD/utils/dataset.py -------------------------------------------------------------------------------- /utils/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlgaChernytska/2D-Hand-Pose-Estimation-RGB/HEAD/utils/model.py -------------------------------------------------------------------------------- /utils/prep_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlgaChernytska/2D-Hand-Pose-Estimation-RGB/HEAD/utils/prep_utils.py -------------------------------------------------------------------------------- /utils/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlgaChernytska/2D-Hand-Pose-Estimation-RGB/HEAD/utils/trainer.py -------------------------------------------------------------------------------- /weights/model_final: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OlgaChernytska/2D-Hand-Pose-Estimation-RGB/HEAD/weights/model_final --------------------------------------------------------------------------------