Skip to main content

skeleton datasets and transforms for pytorch

Project description

torch_skeleton

Efficient datasets and transforms for skeleton data

Installation

$ pip install torch_skeleton

Documentation

https://torch-skeleton.readthedocs.io/en/latest/index.html#

Datasets

Download and load raw dataset with preprocess

from torch_skeleton.datasets import NTU
import torch_skeleton.transforms as T

# dwonload ntu skeleton dataset
ntu = NTU(
    root="data",
    num_classes=60,
    eval_type="subject",
    split="train",
    transform=T.Compose([
        T.Denoise(),
        T.CenterJoint(),
        T.SplitFrames(),
    ]),
)

x, y = ntu[0]

Cache preprocessed samples to disk

from torch_skeleton.datasets import DiskCache

# cache preprocessing transforms to disk
cache = DiskCache(root="data/NTU", dataset=dataset)

x, y = cache[0]

Apply augmentations to a dataset

from torch_skeleton.datasets import Apply

# cache preprocessing transforms to disk
cache = Apply(
    dataset=dataset, 
    transform=T.Compose([
        T.SampleFrames(num_frames=20),
        T.RandomRotate(degrees=17),
        T.PadFrames(max_frames=20),
    ]),
)

x, y = cache[0]

Training Models using torch_skeleton

Example Training code using torch_skeleton is available under examples

Supported models:

  • SGN

License

torch_skeleton was created by Chanhyuk Jung. It is licensed under the terms of the MIT license.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

torch_skeleton-0.1.2.tar.gz (20.6 kB view hashes)

Uploaded Source

Built Distribution

torch_skeleton-0.1.2-py3-none-any.whl (24.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page