Skip to content

Commit 2257a22

Browse files
authored
Update README.md
1 parent 1cd788b commit 2257a22

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ HyperPose is a library for building high-performance custom pose estimation syst
3232

3333
HyperPose has two key features:
3434

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.
3636
- **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.
4040

4141
## Quick Start
4242

@@ -52,20 +52,20 @@ The easiest way to use the inference library is through a [Docker image](https:/
5252
* [NVIDIA docker](https://github.com/NVIDIA/nvidia-docker) (>= 2.0)
5353
* [Docker CE Engine](https://docs.docker.com/engine/install/) (>= 19.03)
5454

55-
Run this script to check is pre-requisites are ready:
55+
Run this command to check if pre-requisites are ready:
5656

5757
```bash
5858
wget https://raw.githubusercontent.com/tensorlayer/hyperpose/master/scripts/test_docker.py -qO- | python
5959
```
6060

61-
Once pre-requisites are installed, pull
61+
Once pre-requisites are ready, pull
6262
the HyperPose docker:
6363

6464
```bash
6565
docker pull tensorlayer/hyperpose
6666
```
6767

68-
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):
6969

7070
```bash
7171
# [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
120120
pip install -r requirements.txt
121121
```
122122

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.
124124

125125
```python
126126
import tensorflow as tf

0 commit comments

Comments
 (0)