Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle-Lite
提交
ff347263
P
Paddle-Lite
项目概览
PaddlePaddle
/
Paddle-Lite
通知
331
Star
4
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
271
列表
看板
标记
里程碑
合并请求
78
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle-Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
271
Issue
271
列表
看板
标记
里程碑
合并请求
78
合并请求
78
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
ff347263
编写于
11月 04, 2019
作者:
S
sangoly
提交者:
GitHub
11月 04, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[Python api doc] update title format test=develop (#2359)
上级
2ffb6dfb
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
62 addition
and
62 deletion
+62
-62
_all_pages/develop/python_api_doc.md
_all_pages/develop/python_api_doc.md
+31
-31
_all_pages/v2.0.0/python_api_doc.md
_all_pages/v2.0.0/python_api_doc.md
+31
-31
未找到文件。
_all_pages/develop/python_api_doc.md
浏览文件 @
ff347263
...
...
@@ -67,7 +67,7 @@ config.set_valid_places(places)
predictor
=
create_paddle_predictor
(
config
)
```
> **set_model_dir(model_dir)**
## `set_model_dir(model_dir)`
设置模型文件夹路径,当需要从磁盘加载非combined模型时使用。
...
...
@@ -81,7 +81,7 @@ predictor = create_paddle_predictor(config)
> **model_dir()**
## `model_dir()`
返回设置的模型文件夹路径。
...
...
@@ -95,7 +95,7 @@ predictor = create_paddle_predictor(config)
> **set_model_file(model_file)**
## `set_model_file(model_file)`
设置模型文件路径,加载combined形式模型时使用。
...
...
@@ -107,7 +107,7 @@ predictor = create_paddle_predictor(config)
> **model_file()**
## `model_file()`
获取设置模型文件路径,加载combined形式模型时使用。
...
...
@@ -121,7 +121,7 @@ predictor = create_paddle_predictor(config)
> **set_param_file(param_file)**
## `set_param_file(param_file)`
设置模型参数文件路径,加载combined形式模型时使用。
...
...
@@ -133,7 +133,7 @@ predictor = create_paddle_predictor(config)
> **param_file()**
## `param_file()`
获取设置模型参数文件路径,加载combined形式模型时使用。
...
...
@@ -147,7 +147,7 @@ predictor = create_paddle_predictor(config)
> **set_valid_places(valid_places)**
## `set_valid_places(valid_places)`
设置可用的places列表。
...
...
@@ -178,7 +178,7 @@ predictor = create_paddle_predictor(config)
> **set_power_mode(mode)**
## `set_power_mode(mode)`
设置CPU能耗模式。若不设置,则默认使用
`PowerMode.LITE_POWER_HIGH`
。
...
...
@@ -194,7 +194,7 @@ predictor = create_paddle_predictor(config)
> **power_mode()**
## `power_mode()`
获取设置的CPU能耗模式。
...
...
@@ -210,7 +210,7 @@ predictor = create_paddle_predictor(config)
> **set_threads(threads)**
## `set_threads(threads)`
设置工作线程数。若不设置,则默认使用单线程。
...
...
@@ -226,7 +226,7 @@ predictor = create_paddle_predictor(config)
> **threads()**
## `threads()`
获取设置的工作线程数。
...
...
@@ -265,7 +265,7 @@ config.set_power_mode(PowerMode.LITE_POWER_NO_BIND)
predictor
=
create_paddle_predictor
(
config
)
```
> **set_model_dir(model_dir)**
## `set_model_dir(model_dir)`
设置模型文件夹路径。
...
...
@@ -281,7 +281,7 @@ predictor = create_paddle_predictor(config)
> **model_dir()**
## `model_dir()`
返回设置的模型文件夹路径。
...
...
@@ -295,7 +295,7 @@ predictor = create_paddle_predictor(config)
> **set_power_mode(mode)**
## `set_power_mode(mode)`
设置CPU能耗模式。若不设置,则默认使用
`PowerMode.LITE_POWER_HIGH`
。
...
...
@@ -311,7 +311,7 @@ predictor = create_paddle_predictor(config)
> **power_mode()**
## `power_mode()`
获取设置的CPU能耗模式。
...
...
@@ -327,7 +327,7 @@ predictor = create_paddle_predictor(config)
> **set_threads(threads)**
## `set_threads(threads)`
设置工作线程数。若不设置,则默认使用单线程。
...
...
@@ -343,7 +343,7 @@ predictor = create_paddle_predictor(config)
> **threads()**
## `threads()`
获取设置的工作线程数。
...
...
@@ -398,7 +398,7 @@ print(output_tensor.shape())
print
(
output_tensor
.
float_data
()[:
10
])
```
> **get_input(index)**
## `get_input(index)`
获取输入Tensor,用来设置模型的输入数据。
...
...
@@ -412,7 +412,7 @@ print(output_tensor.float_data()[:10])
> **get_output(index)**
## `get_output(index)`
获取输出Tensor,用来获取模型的输出结果。
...
...
@@ -426,7 +426,7 @@ print(output_tensor.float_data()[:10])
> **run()**
## `run()`
执行模型预测,需要在
***设置输入数据后**
*
调用。
...
...
@@ -440,7 +440,7 @@ print(output_tensor.float_data()[:10])
> **get_version()**
## `get_version()`
用于获取当前lib使用的代码版本。若代码有相应tag则返回tag信息,如
`v2.0-beta`
;否则返回代码的
`branch(commitid)`
,如
`develop(7e44619)`
。
...
...
@@ -487,7 +487,7 @@ print(output_tensor.shape())
print
(
output_tensor
.
float_data
()[:
10
])
```
> **get_input(index)**
## `get_input(index)`
获取输入Tensor,用来设置模型的输入数据。
...
...
@@ -501,7 +501,7 @@ print(output_tensor.float_data()[:10])
> **get_output(index)**
## `get_output(index)`
获取输出Tensor,用来获取模型的输出结果。
...
...
@@ -515,7 +515,7 @@ print(output_tensor.float_data()[:10])
> **run()**
## `run()`
执行模型预测,需要在
***设置输入数据后**
*
调用。
...
...
@@ -529,7 +529,7 @@ print(output_tensor.float_data()[:10])
> **get_version()**
## `get_version()`
用于获取当前lib使用的代码版本。若代码有相应tag则返回tag信息,如
`v2.0-beta`
;否则返回代码的
`branch(commitid)`
,如
`develop(7e44619)`
。
...
...
@@ -677,7 +677,7 @@ print(output_tensor.shape())
print
(
output_tensor
.
float_data
()[:
10
])
```
> **resize(shape)**
## `resize(shape)`
设置Tensor的维度信息。
...
...
@@ -691,7 +691,7 @@ print(output_tensor.float_data()[:10])
> **shape()**
## `shape()`
获取Tensor的维度信息。
...
...
@@ -705,7 +705,7 @@ print(output_tensor.float_data()[:10])
> **float_data()**
## `float_data()`
获取Tensor的持有的float型数据。
...
...
@@ -727,7 +727,7 @@ print(output_tensor.float_data()[:10])
> **set_float_data(float_data)**
## `set_float_data(float_data)`
设置Tensor持有float数据。
...
...
@@ -749,7 +749,7 @@ input_tensor.set_float_data([1.] * 3 * 224 * 224)
> **set_lod(lod)**
## `set_lod(lod)`
设置Tensor的LoD信息。
...
...
@@ -763,7 +763,7 @@ input_tensor.set_float_data([1.] * 3 * 224 * 224)
> **lod()**
## `lod()`
获取Tensor的LoD信息
...
...
_all_pages/v2.0.0/python_api_doc.md
浏览文件 @
ff347263
...
...
@@ -67,7 +67,7 @@ config.set_valid_places(places)
predictor
=
create_paddle_predictor
(
config
)
```
> **set_model_dir(model_dir)**
## `set_model_dir(model_dir)`
设置模型文件夹路径,当需要从磁盘加载非combined模型时使用。
...
...
@@ -81,7 +81,7 @@ predictor = create_paddle_predictor(config)
> **model_dir()**
## `model_dir()`
返回设置的模型文件夹路径。
...
...
@@ -95,7 +95,7 @@ predictor = create_paddle_predictor(config)
> **set_model_file(model_file)**
## `set_model_file(model_file)`
设置模型文件路径,加载combined形式模型时使用。
...
...
@@ -107,7 +107,7 @@ predictor = create_paddle_predictor(config)
> **model_file()**
## `model_file()`
获取设置模型文件路径,加载combined形式模型时使用。
...
...
@@ -121,7 +121,7 @@ predictor = create_paddle_predictor(config)
> **set_param_file(param_file)**
## `set_param_file(param_file)`
设置模型参数文件路径,加载combined形式模型时使用。
...
...
@@ -133,7 +133,7 @@ predictor = create_paddle_predictor(config)
> **param_file()**
## `param_file()`
获取设置模型参数文件路径,加载combined形式模型时使用。
...
...
@@ -147,7 +147,7 @@ predictor = create_paddle_predictor(config)
> **set_valid_places(valid_places)**
## `set_valid_places(valid_places)`
设置可用的places列表。
...
...
@@ -178,7 +178,7 @@ predictor = create_paddle_predictor(config)
> **set_power_mode(mode)**
## `set_power_mode(mode)`
设置CPU能耗模式。若不设置,则默认使用
`PowerMode.LITE_POWER_HIGH`
。
...
...
@@ -194,7 +194,7 @@ predictor = create_paddle_predictor(config)
> **power_mode()**
## `power_mode()`
获取设置的CPU能耗模式。
...
...
@@ -210,7 +210,7 @@ predictor = create_paddle_predictor(config)
> **set_threads(threads)**
## `set_threads(threads)`
设置工作线程数。若不设置,则默认使用单线程。
...
...
@@ -226,7 +226,7 @@ predictor = create_paddle_predictor(config)
> **threads()**
## `threads()`
获取设置的工作线程数。
...
...
@@ -265,7 +265,7 @@ config.set_power_mode(PowerMode.LITE_POWER_NO_BIND)
predictor
=
create_paddle_predictor
(
config
)
```
> **set_model_dir(model_dir)**
## `set_model_dir(model_dir)`
设置模型文件夹路径。
...
...
@@ -281,7 +281,7 @@ predictor = create_paddle_predictor(config)
> **model_dir()**
## `model_dir()`
返回设置的模型文件夹路径。
...
...
@@ -295,7 +295,7 @@ predictor = create_paddle_predictor(config)
> **set_power_mode(mode)**
## `set_power_mode(mode)`
设置CPU能耗模式。若不设置,则默认使用
`PowerMode.LITE_POWER_HIGH`
。
...
...
@@ -311,7 +311,7 @@ predictor = create_paddle_predictor(config)
> **power_mode()**
## `power_mode()`
获取设置的CPU能耗模式。
...
...
@@ -327,7 +327,7 @@ predictor = create_paddle_predictor(config)
> **set_threads(threads)**
## `set_threads(threads)`
设置工作线程数。若不设置,则默认使用单线程。
...
...
@@ -343,7 +343,7 @@ predictor = create_paddle_predictor(config)
> **threads()**
## `threads()`
获取设置的工作线程数。
...
...
@@ -398,7 +398,7 @@ print(output_tensor.shape())
print
(
output_tensor
.
float_data
()[:
10
])
```
> **get_input(index)**
## `get_input(index)`
获取输入Tensor,用来设置模型的输入数据。
...
...
@@ -412,7 +412,7 @@ print(output_tensor.float_data()[:10])
> **get_output(index)**
## `get_output(index)`
获取输出Tensor,用来获取模型的输出结果。
...
...
@@ -426,7 +426,7 @@ print(output_tensor.float_data()[:10])
> **run()**
## `run()`
执行模型预测,需要在
***设置输入数据后**
*
调用。
...
...
@@ -440,7 +440,7 @@ print(output_tensor.float_data()[:10])
> **get_version()**
## `get_version()`
用于获取当前lib使用的代码版本。若代码有相应tag则返回tag信息,如
`v2.0-beta`
;否则返回代码的
`branch(commitid)`
,如
`develop(7e44619)`
。
...
...
@@ -487,7 +487,7 @@ print(output_tensor.shape())
print
(
output_tensor
.
float_data
()[:
10
])
```
> **get_input(index)**
## `get_input(index)`
获取输入Tensor,用来设置模型的输入数据。
...
...
@@ -501,7 +501,7 @@ print(output_tensor.float_data()[:10])
> **get_output(index)**
## `get_output(index)`
获取输出Tensor,用来获取模型的输出结果。
...
...
@@ -515,7 +515,7 @@ print(output_tensor.float_data()[:10])
> **run()**
## `run()`
执行模型预测,需要在
***设置输入数据后**
*
调用。
...
...
@@ -529,7 +529,7 @@ print(output_tensor.float_data()[:10])
> **get_version()**
## `get_version()`
用于获取当前lib使用的代码版本。若代码有相应tag则返回tag信息,如
`v2.0-beta`
;否则返回代码的
`branch(commitid)`
,如
`develop(7e44619)`
。
...
...
@@ -677,7 +677,7 @@ print(output_tensor.shape())
print
(
output_tensor
.
float_data
()[:
10
])
```
> **resize(shape)**
## `resize(shape)`
设置Tensor的维度信息。
...
...
@@ -691,7 +691,7 @@ print(output_tensor.float_data()[:10])
> **shape()**
## `shape()`
获取Tensor的维度信息。
...
...
@@ -705,7 +705,7 @@ print(output_tensor.float_data()[:10])
> **float_data()**
## `float_data()`
获取Tensor的持有的float型数据。
...
...
@@ -727,7 +727,7 @@ print(output_tensor.float_data()[:10])
> **set_float_data(float_data)**
## `set_float_data(float_data)`
设置Tensor持有float数据。
...
...
@@ -749,7 +749,7 @@ input_tensor.set_float_data([1.] * 3 * 224 * 224)
> **set_lod(lod)**
## `set_lod(lod)`
设置Tensor的LoD信息。
...
...
@@ -763,7 +763,7 @@ input_tensor.set_float_data([1.] * 3 * 224 * 224)
> **lod()**
## `lod()`
获取Tensor的LoD信息
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录