You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -32,11 +32,11 @@ HyperPose is a library for building high-performance custom pose estimation syst
32
32
33
33
HyperPose has two key features:
34
34
35
-
-**High-performance pose estimation with parallel CPUs/GPUs**: HyperPose achieves real-time pose estimation through a high-performance pose estimation engine. This engine implements numerous system optimisations: pipeline parallelism, model inference with TensorRT, CPU/GPU hybrid scheduling, and many others. These optimisations contribute to up to 10x higher FPS compared to OpenPose and TF-Pose.
35
+
-**High-performance pose estimation with CPUs/GPUs**: HyperPose achieves real-time pose estimation through a high-performance pose estimation engine. This engine implements numerous system optimisations: pipeline parallelism, model inference with TensorRT, CPU/GPU hybrid scheduling, and many others. These optimisations contribute to up to 10x higher FPS compared to OpenPose and TF-Pose.
36
36
-**Flexibility for developing custom pose estimation models**: HyperPose provides high-level Python APIs to develop pose estimation models. HyperPose users can:
37
-
* Customise training, evaluation, visualisation, pre-processing and post-processing in pose estimation models (e.g., OpenPose, Pifpaf, PoseProposal Network).
38
-
* Customise model architectures and training datasets.
39
-
*Seamlessly scale-out training to multiple GPUs.
37
+
* Customise training, evaluation, visualisation, pre-processing and post-processing in pose estimation.
38
+
* Customise model architectures (e.g., OpenPose, Pifpaf, PoseProposal Network) and training datasets.
39
+
*Speed up training with multiple GPUs.
40
40
41
41
## Quick Start
42
42
@@ -52,20 +52,20 @@ The easiest way to use the inference library is through a [Docker image](https:/
We provide 4 examples within this image (The following commands have been tested with Ubuntu 18.04):
68
+
We provide 4 examples within this image (The following commands have been tested on Ubuntu 18.04):
69
69
70
70
```bash
71
71
# [Example 1]: Doing inference on given video, copy the output.avi to the local path.
@@ -120,7 +120,7 @@ We then install the dependencies listed in [requirements.txt](https://github.com
120
120
pip install -r requirements.txt
121
121
```
122
122
123
-
We show how to train a custom pose estimation model with HyperPose. HyperPose APIs contain three key modules: *Config*, *Model* and *Dataset*, and their basic usages are shown below.
123
+
We demonstrate how to train a custom pose estimation model with HyperPose. HyperPose APIs contain three key modules: *Config*, *Model* and *Dataset*, and their basic usages are shown below.
0 commit comments