tucan9389 / tf2-mobile-2d-single-pose-estimation

:dancer: Pose estimation for iOS and android using TensorFlow 2.0
Apache License 2.0
167 stars 41 forks source link

Restructure folder hierarchy #29

Open tucan9389 opened 4 years ago

tucan9389 commented 4 years ago

TO-BE

Source Code

~/tf2-mobile-pose-estimation
   ├── config
   |   ├── dataset
   |   ├── model
   |   └── output
   ├── data_loader
   |
   ├── models
   |
   ├── train.py
   ├── common.py
   ├── requirements.txt

Dataset

~/datasets
   ├── coco2017
   |   ├── train2017
   |   ├── valid2017
   |   └── annotations_trainval2017
   |       ├── person_keypoints_train2017.json
   |       └── person_keypoints_val2017.json
   ├── ai_challenger
   |   ├── train
   |   |   ├── images
   |   |   └── annotation.json
   |   ├── valid
   |   |   ├── images
   |   |   └── annotation.json
   |   └── README.md

Output

~/outputs
   ├── experiment001
   |   ├── coco2017
   |   |   ├── logs
   |   |   |   ├── {start_time}-{model_name}
   |   |   |   |   └── events.out.tfevents.1590810750.nipa2020-0851.12023.14386.v2
   |   |   |   ├── {start_time}-{model_name}
   |   |   |   |   └── events.out.tfevents.1590810750.nipa2020-0851.12023.14386.v2
   |   |   ├── saved_models
   |   |   ├── tflite_models
   |   |   ├── coreml_models
   |   |   └── README.md
   ├── experiment002
   ├── experiment003