提交 05b9c43b 编写于 作者: C chenjian

first version

上级 9b291a76
# stgan_bald
|Module Name|stgan_bald|
| :--- | :---: |
|Category|image generation|
|Network|STGAN|
|Dataset|CelebA|
|Fine-tuning supported or not|No|
|Module Size|287MB|
|Latest update date|2021-02-26|
|Data indicators|-|
## I.Basic Information
- ### Application Effect Display
- Please refer to this [link](https://aistudio.baidu.com/aistudio/projectdetail/1145381)
- ### Module Introduction
- This module is based on STGAN model, trained on CelebA dataset, and can be used to predict bald appearance after 1, 3 and 5 years.
## II.Installation
- ### 1、Environmental Dependence
- paddlepaddle >= 1.8.2
- paddlehub >= 1.8.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation
- ```shell
$ hub install stgan_bald
```
- In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction
- ### 1、Prediction Code Example
- ```python
import paddlehub as hub
import cv2
stgan_bald = hub.Module(name="stgan_bald")
result = stgan_bald.bald(images=[cv2.imread('/PATH/TO/IMAGE')])
# or
# result = stgan_bald.bald(paths=['/PATH/TO/IMAGE'])
```
- ### 2、API
- ```python
def bald(images=None,
paths=None,
use_gpu=False,
visualization=False,
output_dir="bald_output")
```
- Bald appearance generation API.
- **Parameters**
- images (list\[numpy.ndarray\]): image data, ndarray.shape is in the format [H, W, C], BGR;
- paths (list[str]): image path;
- use_gpu (bool): use GPU or not; **set the CUDA_VISIBLE_DEVICES environment variable first if you are using GPU**
- visualization (bool): Whether to save the results as picture files;
- output_dir (str): save path of images;
**NOTE:** choose one parameter to provide data from paths and images
- **Return**
- res (list\[numpy.ndarray\]): result list,ndarray.shape 为 \[H, W, C\]
## IV.Server Deployment
- PaddleHub Serving can deploy an online service of bald appearance generation.
- ### Step 1: Start PaddleHub Serving
- Run the startup command:
- ```shell
$ hub serving start -m stgan_bald
```
- The servitization API is now deployed and the default port number is 8866.
- **NOTE:** If GPU is used for prediction, set CUDA_VISIBLE_DEVICES environment variable before the service, otherwise it need not be set.
- ### Step 2: Send a predictive request
- With a configured server, use the following lines of code to send the prediction request and obtain the result
- ```python
import requests
import json
import cv2
import base64
import numpy as np
def cv2_to_base64(image):
data = cv2.imencode('.jpg', image)[1]
return base64.b64encode(data.tostring()).decode('utf8')
def base64_to_cv2(b64str):
data = base64.b64decode(b64str.encode('utf8'))
data = np.fromstring(data, np.uint8)
data = cv2.imdecode(data, cv2.IMREAD_COLOR)
return data
# Send an HTTP request
data = {'images':[cv2_to_base64(cv2.imread("/PATH/TO/IMAGE"))]}
headers = {"Content-type": "application/json"}
url = "http://127.0.0.1:8866/predict/stgan_bald"
r = requests.post(url=url, headers=headers, data=json.dumps(data))
# save results
one_year =cv2.cvtColor(base64_to_cv2(r.json()["results"]['data_0']), cv2.COLOR_RGB2BGR)
three_year =cv2.cvtColor(base64_to_cv2(r.json()["results"]['data_1']), cv2.COLOR_RGB2BGR)
five_year =cv2.cvtColor(base64_to_cv2(r.json()["results"]['data_2']), cv2.COLOR_RGB2BGR)
cv2.imwrite("stgan_bald_server.png", one_year)
```
## V.Release Note
* 1.0.0
First release
- ```shell
$ hub install stgan_bald==1.0.0
```
...@@ -32,14 +32,14 @@ ...@@ -32,14 +32,14 @@
- paddlepaddle >= 2.0.0 - paddlepaddle >= 2.0.0
- paddlehub >= 2.0.0 | [How to install PaddleHub]() - paddlehub >= 2.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install Photo2Cartoon $ hub install Photo2Cartoon
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -38,14 +38,14 @@ ...@@ -38,14 +38,14 @@
- paddlepaddle >= 2.0.0 - paddlepaddle >= 2.0.0
- paddlehub >= 2.0.0 | [How to install PaddleHub]() - paddlehub >= 2.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install U2Net_Portrait $ hub install U2Net_Portrait
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -38,14 +38,14 @@ ...@@ -38,14 +38,14 @@
- paddlepaddle >= 1.8.0 - paddlepaddle >= 1.8.0
- paddlehub >= 1.8.0 | [How to install PaddleHub]() - paddlehub >= 1.8.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install UGATIT_100w $ hub install UGATIT_100w
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -39,14 +39,14 @@ ...@@ -39,14 +39,14 @@
- paddlepaddle >= 1.8.0 - paddlepaddle >= 1.8.0
- paddlehub >= 1.8.0 | [How to install PaddleHub]() - paddlehub >= 1.8.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install animegan_v1_hayao_60 $ hub install animegan_v1_hayao_60
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -37,14 +37,14 @@ ...@@ -37,14 +37,14 @@
- paddlepaddle >= 1.8.0 - paddlepaddle >= 1.8.0
- paddlehub >= 1.8.0 | [How to install PaddleHub]() - paddlehub >= 1.8.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install animegan_v2_hayao_64 $ hub install animegan_v2_hayao_64
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -37,14 +37,14 @@ ...@@ -37,14 +37,14 @@
- paddlepaddle >= 1.8.0 - paddlepaddle >= 1.8.0
- paddlehub >= 1.8.0 | [How to install PaddleHub]() - paddlehub >= 1.8.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install animegan_v2_hayao_99 $ hub install animegan_v2_hayao_99
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -38,14 +38,14 @@ ...@@ -38,14 +38,14 @@
- paddlepaddle >= 1.8.0 - paddlepaddle >= 1.8.0
- paddlehub >= 1.8.0 | [How to install PaddleHub]() - paddlehub >= 1.8.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install animegan_v2_paprika_74 $ hub install animegan_v2_paprika_74
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -38,14 +38,14 @@ ...@@ -38,14 +38,14 @@
- paddlepaddle >= 1.8.0 - paddlepaddle >= 1.8.0
- paddlehub >= 1.8.0 | [How to install PaddleHub]() - paddlehub >= 1.8.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install animegan_v2_paprika_98 $ hub install animegan_v2_paprika_98
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -38,14 +38,14 @@ ...@@ -38,14 +38,14 @@
- paddlepaddle >= 1.8.0 - paddlepaddle >= 1.8.0
- paddlehub >= 1.8.0 | [How to install PaddleHub]() - paddlehub >= 1.8.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install animegan_v2_shinkai_33 $ hub install animegan_v2_shinkai_33
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -38,14 +38,14 @@ ...@@ -38,14 +38,14 @@
- paddlepaddle >= 1.8.0 - paddlepaddle >= 1.8.0
- paddlehub >= 1.8.0 | [How to install PaddleHub]() - paddlehub >= 1.8.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install animegan_v2_shinkai_53 $ hub install animegan_v2_shinkai_53
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -30,14 +30,14 @@ ...@@ -30,14 +30,14 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install stylepro_artistic $ hub install stylepro_artistic
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 2.0.0 - paddlepaddle >= 2.0.0
- paddlehub >= 2.0.0 | [How to install PaddleHub]() - paddlehub >= 2.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- paddlex >= 1.3.7 - paddlex >= 1.3.7
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
- ```shell - ```shell
$ hub install DriverStatusRecognition $ hub install DriverStatusRecognition
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
- ### 3、Online experience - ### 3、Online experience
[AI Studio](https://aistudio.baidu.com/aistudio/projectdetail/1649513) [AI Studio](https://aistudio.baidu.com/aistudio/projectdetail/1649513)
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 2.0.0 - paddlepaddle >= 2.0.0
- paddlehub >= 2.0.0 | [How to install PaddleHub]() - paddlehub >= 2.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- paddlex >= 1.3.7 - paddlex >= 1.3.7
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
- ```shell - ```shell
$ hub install SnakeIdentification $ hub install SnakeIdentification
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
- ### 3、Online experience - ### 3、Online experience
[AI Studio](https://aistudio.baidu.com/aistudio/projectdetail/1646951) [AI Studio](https://aistudio.baidu.com/aistudio/projectdetail/1646951)
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install alexnet_imagenet $ hub install alexnet_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install darknet53_imagenet $ hub install darknet53_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install densenet121_imagenet $ hub install densenet121_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install densenet161_imagenet $ hub install densenet161_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install densenet169_imagenet $ hub install densenet169_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install densenet201_imagenet $ hub install densenet201_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install densenet264_imagenet $ hub install densenet264_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
- ```shell - ```shell
$ hub install dpn107_imagenet $ hub install dpn107_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
- ```shell - ```shell
$ hub install dpn131_imagenet $ hub install dpn131_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install dpn68_imagenet $ hub install dpn68_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
- ```shell - ```shell
$ hub install dpn92_imagenet $ hub install dpn92_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
- ```shell - ```shell
$ hub install dpn98_imagenet $ hub install dpn98_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
- ```shell - ```shell
$ hub install efficientnetb0_imagenet $ hub install efficientnetb0_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
- ```shell - ```shell
$ hub install efficientnetb0_small_imagenet $ hub install efficientnetb0_small_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install efficientnetb1_imagenet $ hub install efficientnetb1_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
- ```shell - ```shell
$ hub install efficientnetb2_imagenet $ hub install efficientnetb2_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
- ```shell - ```shell
$ hub install efficientnetb3_imagenet $ hub install efficientnetb3_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
- ```shell - ```shell
$ hub install efficientnetb4_imagenet $ hub install efficientnetb4_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
- ```shell - ```shell
$ hub install efficientnetb5_imagenet $ hub install efficientnetb5_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install efficientnetb6_imagenet $ hub install efficientnetb6_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
- ```shell - ```shell
$ hub install efficientnetb7_imagenet $ hub install efficientnetb7_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
- ```shell - ```shell
$ hub install fix_resnext101_32x48d_wsl_imagenet $ hub install fix_resnext101_32x48d_wsl_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 2.0.0 - paddlepaddle >= 2.0.0
- paddlehub >= 2.0.0 | [How to install PaddleHub]() - paddlehub >= 2.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- paddlex >= 1.3.7 - paddlex >= 1.3.7
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
- ```shell - ```shell
$ hub install food_classification $ hub install food_classification
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install googlenet_imagenet $ hub install googlenet_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
- ```shell - ```shell
$ hub install inception_v4_imagenet $ hub install inception_v4_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 2.0.0 - paddlepaddle >= 2.0.0
- paddlehub >= 2.0.0 | [How to install PaddleHub]() - paddlehub >= 2.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install marine_biometrics $ hub install marine_biometrics
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -29,7 +29,7 @@ ...@@ -29,7 +29,7 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
- ```shell - ```shell
$ hub install mobilenet_v2_animals $ hub install mobilenet_v2_animals
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
- ```shell - ```shell
$ hub install mobilenet_v2_dishes $ hub install mobilenet_v2_dishes
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install mobilenet_v2_imagenet $ hub install mobilenet_v2_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
- ```shell - ```shell
$ hub install mobilenet_v2_imagenet_ssld $ hub install mobilenet_v2_imagenet_ssld
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install mobilenet_v3_large_imagenet_ssld $ hub install mobilenet_v3_large_imagenet_ssld
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
- ```shell - ```shell
$ hub install mobilenet_v3_small_imagenet_ssld $ hub install mobilenet_v3_small_imagenet_ssld
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
- ```shell - ```shell
$ hub install nasnet_imagenet $ hub install nasnet_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
- ```shell - ```shell
$ hub install pnasnet_imagenet $ hub install pnasnet_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
- ```shell - ```shell
$ hub install res2net101_vd_26w_4s_imagenet $ hub install res2net101_vd_26w_4s_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -35,7 +35,7 @@ ...@@ -35,7 +35,7 @@
- ```shell - ```shell
$ hub install resnet18_vd_imagenet $ hub install resnet18_vd_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
- ```shell - ```shell
$ hub install resnet50_vd_10w $ hub install resnet50_vd_10w
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
- ```shell - ```shell
$ hub install resnet50_vd_dishes $ hub install resnet50_vd_dishes
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
- ```shell - ```shell
$ hub install resnet50_vd_wildanimals $ hub install resnet50_vd_wildanimals
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install resnet_v2_101_imagenet $ hub install resnet_v2_101_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install resnet_v2_152_imagenet $ hub install resnet_v2_152_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
- ```shell - ```shell
$ hub install resnet_v2_18_imagenet $ hub install resnet_v2_18_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install resnet_v2_34_imagenet $ hub install resnet_v2_34_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install resnet_v2_50_imagenet $ hub install resnet_v2_50_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.6.0 - paddlepaddle >= 1.6.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install resnext101_32x16d_wsl $ hub install resnext101_32x16d_wsl
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.6.0 - paddlepaddle >= 1.6.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install resnext101_32x32d_wsl $ hub install resnext101_32x32d_wsl
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.6.0 - paddlepaddle >= 1.6.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install resnext101_32x48d_wsl $ hub install resnext101_32x48d_wsl
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
- ```shell - ```shell
$ hub install resnext101_32x4d_imagenet $ hub install resnext101_32x4d_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.6.0 - paddlepaddle >= 1.6.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install resnext101_32x8d_wsl $ hub install resnext101_32x8d_wsl
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install resnext101_64x4d_imagenet $ hub install resnext101_64x4d_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install resnext101_vd_32x4d_imagenet $ hub install resnext101_vd_32x4d_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install resnext101_vd_64x4d_imagenet $ hub install resnext101_vd_64x4d_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install resnext152_32x4d_imagenet $ hub install resnext152_32x4d_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
- ```shell - ```shell
$ hub install resnext152_64x4d_imagenet $ hub install resnext152_64x4d_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
- ```shell - ```shell
$ hub install resnext152_vd_64x4d_imagenet $ hub install resnext152_vd_64x4d_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
- ```shell - ```shell
$ hub install resnext50_32x4d_imagenet $ hub install resnext50_32x4d_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install resnext50_64x4d_imagenet $ hub install resnext50_64x4d_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install resnext50_vd_32x4d_imagenet $ hub install resnext50_vd_32x4d_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install resnext50_vd_64x4d_imagenet $ hub install resnext50_vd_64x4d_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install se_resnext101_32x4d_imagenet $ hub install se_resnext101_32x4d_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install se_resnext50_32x4d_imagenet $ hub install se_resnext50_32x4d_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install shufflenet_v2_imagenet $ hub install shufflenet_v2_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
- paddlepaddle >= 2.0.0 - paddlepaddle >= 2.0.0
- paddlehub >= 2.0.0 | [How to install PaddleHub]() - paddlehub >= 2.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
- ```shell - ```shell
$ hub install spinalnet_res101_gemstone $ hub install spinalnet_res101_gemstone
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
- paddlepaddle >= 2.0.0 - paddlepaddle >= 2.0.0
- paddlehub >= 2.0.0 | [How to install PaddleHub]() - paddlehub >= 2.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
- ```shell - ```shell
$ hub install spinalnet_res50_gemstone $ hub install spinalnet_res50_gemstone
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 2.0.0 - paddlepaddle >= 2.0.0
- paddlehub >= 2.0.0 | [How to install PaddleHub]() - paddlehub >= 2.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install spinalnet_vgg16_gemstone $ hub install spinalnet_vgg16_gemstone
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install vgg11_imagenet $ hub install vgg11_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install vgg13_imagenet $ hub install vgg13_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install vgg16_imagenet $ hub install vgg16_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
- ```shell - ```shell
$ hub install vgg19_imagenet $ hub install vgg19_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install xception41_imagenet $ hub install xception41_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install xception65_imagenet $ hub install xception65_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
- paddlepaddle >= 1.4.0 - paddlepaddle >= 1.4.0
- paddlehub >= 1.0.0 | [How to install PaddleHub]() - paddlehub >= 1.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
- ```shell - ```shell
$ hub install xception71_imagenet $ hub install xception71_imagenet
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -31,14 +31,14 @@ ...@@ -31,14 +31,14 @@
- paddlepaddle >= 2.0.0 - paddlepaddle >= 2.0.0
- paddlehub >= 2.0.0 | [How to install PaddleHub]() - paddlehub >= 2.0.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install MiDaS_Large $ hub install MiDaS_Large
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -32,14 +32,14 @@ ...@@ -32,14 +32,14 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install pyramidbox_face_detection $ hub install pyramidbox_face_detection
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -31,14 +31,14 @@ ...@@ -31,14 +31,14 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install pyramidbox_lite_mobile $ hub install pyramidbox_lite_mobile
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -32,14 +32,14 @@ ...@@ -32,14 +32,14 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install pyramidbox_lite_mobile_mask $ hub install pyramidbox_lite_mobile_mask
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -32,14 +32,14 @@ ...@@ -32,14 +32,14 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install pyramidbox_lite_server $ hub install pyramidbox_lite_server
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -31,14 +31,14 @@ ...@@ -31,14 +31,14 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install pyramidbox_lite_server_mask $ hub install pyramidbox_lite_server_mask
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -31,14 +31,14 @@ ...@@ -31,14 +31,14 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install ultra_light_fast_generic_face_detector_1mb_320 $ hub install ultra_light_fast_generic_face_detector_1mb_320
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -31,14 +31,14 @@ ...@@ -31,14 +31,14 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install ultra_light_fast_generic_face_detector_1mb_640 $ hub install ultra_light_fast_generic_face_detector_1mb_640
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -34,14 +34,14 @@ ...@@ -34,14 +34,14 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install faster_rcnn_resnet50_coco2017 $ hub install faster_rcnn_resnet50_coco2017
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -31,14 +31,14 @@ ...@@ -31,14 +31,14 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install faster_rcnn_resnet50_fpn_coco2017 $ hub install faster_rcnn_resnet50_fpn_coco2017
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -24,14 +24,14 @@ ...@@ -24,14 +24,14 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install faster_rcnn_resnet50_fpn_venus $ hub install faster_rcnn_resnet50_fpn_venus
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -31,14 +31,14 @@ ...@@ -31,14 +31,14 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install ssd_mobilenet_v1_pascal $ hub install ssd_mobilenet_v1_pascal
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -32,14 +32,14 @@ ...@@ -32,14 +32,14 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install ssd_vgg16_512_coco2017 $ hub install ssd_vgg16_512_coco2017
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
...@@ -31,14 +31,14 @@ ...@@ -31,14 +31,14 @@
- paddlepaddle >= 1.6.2 - paddlepaddle >= 1.6.2
- paddlehub >= 1.6.0 | [How to install PaddleHub]() - paddlehub >= 1.6.0 | [How to install PaddleHub](../../../../docs/docs_en/get_start/installation.rst)
- ### 2、Installation - ### 2、Installation
- ```shell - ```shell
$ hub install yolov3_darknet53_coco2017 $ hub install yolov3_darknet53_coco2017
``` ```
- In case of any problems during installation, please refer to: [Windows_Quickstart]() | [Linux_Quickstart]() | [Mac_Quickstart]() - In case of any problems during installation, please refer to: [Windows_Quickstart](../../../../docs/docs_en/get_start/windows_quickstart.md) | [Linux_Quickstart](../../../../docs/docs_en/get_start/linux_quickstart.md) | [Mac_Quickstart](../../../../docs/docs_en/get_start/mac_quickstart.md)
## III.Module API Prediction ## III.Module API Prediction
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册