-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #223 from InnopolisUni/pose_estimation
pose estimation dataset and model
- Loading branch information
Showing
5 changed files
with
88 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
task: | ||
- image-detection | ||
|
||
name: pose recognition dataset | ||
description: "COCO Pose dataset for human pose recognitoon. See more: https://cocodataset.org/#keypoints-2017" | ||
markup_info: There is a total of 2346 unique images, format compatible with ultralytics | ||
date_time: 22.05.2024 | ||
|
||
_target_: innofw.core.integrations.ultralytics.datamodule.UltralyticsDataModuleAdapter | ||
|
||
train: | ||
source: https://api.blackhole.ai.innopolis.university/public-datasets/coco_pose_recognition/train.zip | ||
target: ./data/coco_pose/train/ | ||
|
||
test: | ||
source: https://api.blackhole.ai.innopolis.university/public-datasets/coco_pose_recognition/test.zip | ||
target: ./data/coco_pose/test/ | ||
|
||
infer: | ||
source: https://api.blackhole.ai.innopolis.university/public-datasets/coco_pose_recognition/test.zip | ||
target: ./data/coco_pose/test/ | ||
|
||
num_workers: 8 | ||
|
||
val_size: 0.2 | ||
channels_num: 3 | ||
image_size: 512 | ||
num_classes: 1 | ||
is_keypoint: True | ||
names: | ||
- person |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# @package _global_ | ||
defaults: | ||
- override /datasets: detection/coco_pose_recognition.yaml | ||
- override /models: detection/yolo8_pose.yaml | ||
|
||
# devices: 1 | ||
epochs: 3 | ||
accelerator: gpu | ||
batch_size: 32 | ||
project: coco_pose_recognition | ||
random_seed: 0 | ||
task: image-detection | ||
weights_freq: 1 | ||
|
||
|
||
wandb: | ||
enable: True | ||
project: coco_pose_recognition | ||
entity: "k-galliamov" | ||
group: none | ||
job_type: training |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
_target_: ultralytics.YOLO | ||
description: yolov8 pose by ultralytics | ||
model: yolov8n-pose.pt | ||
name: yolov8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters