Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
01e82589
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2299
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
01e82589
编写于
1月 12, 2018
作者:
T
Travis CI
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Deploy to GitHub Pages:
3ea2395c
上级
88e430d1
变更
3
展开全部
隐藏空白更改
内联
并排
Showing
3 changed file
with
7 addition
and
9 deletion
+7
-9
develop/doc_cn/_sources/howto/usage/capi/workflow_of_capi_cn.md.txt
...c_cn/_sources/howto/usage/capi/workflow_of_capi_cn.md.txt
+3
-4
develop/doc_cn/howto/usage/capi/workflow_of_capi_cn.html
develop/doc_cn/howto/usage/capi/workflow_of_capi_cn.html
+3
-4
develop/doc_cn/searchindex.js
develop/doc_cn/searchindex.js
+1
-1
未找到文件。
develop/doc_cn/_sources/howto/usage/capi/workflow_of_capi_cn.md.txt
浏览文件 @
01e82589
...
...
@@ -26,10 +26,9 @@
### 准备预测模型
在准备预测模型部分的介绍,我们以手写数字识别任务为例
。手写数字识别任务定义了一个含有[两个隐层的简单全连接网络](https://github.com/PaddlePaddle/book/blob/develop/02.recognize_digits/README.cn.md#softmax回归softmax-regression),网络接受一幅图片作为输入,将图片分类到 0 ~ 9 类别标签之一。完整代码可以查看[此目录](https://github.com/PaddlePaddle/Paddle/tree/develop/paddle/capi/examples/model_inference/dense) 中的相关脚本。
准备预测模型部分,我们以手写数字识别任务为例进行介绍
。手写数字识别任务定义了一个含有[两个隐层的简单全连接网络](https://github.com/PaddlePaddle/book/blob/develop/02.recognize_digits/README.cn.md#softmax回归softmax-regression),网络接受一幅图片作为输入,将图片分类到 0 ~ 9 类别标签之一。完整代码可以查看[此目录](https://github.com/PaddlePaddle/Paddle/tree/develop/paddle/capi/examples/model_inference/dense) 中的相关脚本。
调用C-API开发预测程序需要一个训练好的模型,在终端执行`python mnist_v2.py`
运行[目录](https://github.com/PaddlePaddle/Paddle/tree/develop/paddle/capi/examples/model_inference/dense) 会使用 PaddlePaddle 内置的 [MNIST 数据集](http://yann.lecun.com/exdb/mnist/)进行训练。训练好的模型默认保存在当前运行目录下的`models`目录中。
调用C-API开发预测程序需要一个训练好的模型,运行[MNIST手写数字识别目录](https://github.com/PaddlePaddle/Paddle/tree/develop/paddle/capi/examples/model_inference/dense)下的[mnist_v2.py](https://github.com/PaddlePaddle/Paddle/blob/develop/paddle/capi/examples/model_inference/dense/mnist_v2.py)脚本,在终端执行`python mnist_v2.py`,会使用 PaddlePaddle 内置的 [MNIST 数据集](http://yann.lecun.com/exdb/mnist/)进行训练。训练好的模型默认保存在当前运行目录下的`models`目录中。
下面,我们将训练结束后存储下来的模型转换成预测模型。
...
...
@@ -113,7 +112,7 @@ C-API支持的所有输入数据类型和他们的组织方式,请参考“输
#### step 4. 前向计算
完成上述准备之后,通过调用
`[paddle_gradient_machine_forward](https://github.com/PaddlePaddle/Paddle/blob/develop/paddle/capi/gradient_machine.h#L73)`
接口完成神经网络的前向计算。
完成上述准备之后,通过调用
[`paddle_gradient_machine_forward`](https://github.com/PaddlePaddle/Paddle/blob/develop/paddle/capi/gradient_machine.h#L73)
接口完成神经网络的前向计算。
#### step 5. 清理
...
...
develop/doc_cn/howto/usage/capi/workflow_of_capi_cn.html
浏览文件 @
01e82589
...
...
@@ -273,9 +273,8 @@
</div>
<div
class=
"section"
id=
""
>
<span
id=
"id2"
></span><h2>
准备预测模型
<a
class=
"headerlink"
href=
"#"
title=
"永久链接至标题"
>
¶
</a></h2>
<p>
在准备预测模型部分的介绍,我们以手写数字识别任务为例。手写数字识别任务定义了一个含有
<a
class=
"reference external"
href=
"https://github.com/PaddlePaddle/book/blob/develop/02.recognize_digits/README.cn.md#softmax回归softmax-regression"
>
两个隐层的简单全连接网络
</a>
,网络接受一幅图片作为输入,将图片分类到 0 ~ 9 类别标签之一。完整代码可以查看
<a
class=
"reference external"
href=
"https://github.com/PaddlePaddle/Paddle/tree/develop/paddle/capi/examples/model_inference/dense"
>
此目录
</a>
中的相关脚本。
</p>
<p>
调用C-API开发预测程序需要一个训练好的模型,在终端执行
<code
class=
"docutils literal"
><span
class=
"pre"
>
python
</span>
<span
class=
"pre"
>
mnist_v2.py
</span></code>
运行
<a
class=
"reference external"
href=
"https://github.com/PaddlePaddle/Paddle/tree/develop/paddle/capi/examples/model_inference/dense"
>
目录
</a>
会使用 PaddlePaddle 内置的
<a
class=
"reference external"
href=
"http://yann.lecun.com/exdb/mnist/"
>
MNIST 数据集
</a>
进行训练。训练好的模型默认保存在当前运行目录下的
<code
class=
"docutils literal"
><span
class=
"pre"
>
models
</span></code>
目录中。
</p>
<p>
准备预测模型部分,我们以手写数字识别任务为例进行介绍。手写数字识别任务定义了一个含有
<a
class=
"reference external"
href=
"https://github.com/PaddlePaddle/book/blob/develop/02.recognize_digits/README.cn.md#softmax回归softmax-regression"
>
两个隐层的简单全连接网络
</a>
,网络接受一幅图片作为输入,将图片分类到 0 ~ 9 类别标签之一。完整代码可以查看
<a
class=
"reference external"
href=
"https://github.com/PaddlePaddle/Paddle/tree/develop/paddle/capi/examples/model_inference/dense"
>
此目录
</a>
中的相关脚本。
</p>
<p>
调用C-API开发预测程序需要一个训练好的模型,运行
<a
class=
"reference external"
href=
"https://github.com/PaddlePaddle/Paddle/tree/develop/paddle/capi/examples/model_inference/dense"
>
MNIST手写数字识别目录
</a>
下的
<a
class=
"reference external"
href=
"https://github.com/PaddlePaddle/Paddle/blob/develop/paddle/capi/examples/model_inference/dense/mnist_v2.py"
>
mnist_v2.py
</a>
脚本,在终端执行
<code
class=
"docutils literal"
><span
class=
"pre"
>
python
</span>
<span
class=
"pre"
>
mnist_v2.py
</span></code>
,会使用 PaddlePaddle 内置的
<a
class=
"reference external"
href=
"http://yann.lecun.com/exdb/mnist/"
>
MNIST 数据集
</a>
进行训练。训练好的模型默认保存在当前运行目录下的
<code
class=
"docutils literal"
><span
class=
"pre"
>
models
</span></code>
目录中。
</p>
<p>
下面,我们将训练结束后存储下来的模型转换成预测模型。
</p>
<ol>
<li><p
class=
"first"
>
序列化神经网络模型配置
</p>
...
...
@@ -358,7 +357,7 @@
</div>
<div
class=
"section"
id=
"step-4"
>
<span
id=
"step-4"
></span><h3>
step 4. 前向计算
<a
class=
"headerlink"
href=
"#step-4"
title=
"永久链接至标题"
>
¶
</a></h3>
<p>
完成上述准备之后,通过调用
<
code
class=
"docutils literal"
><span
class=
"pre"
>
[paddle_gradient_machine_forward](https://github.com/PaddlePaddle/Paddle/blob/develop/paddle/capi/gradient_machine.h#L73)
</span></code
>
接口完成神经网络的前向计算。
</p>
<p>
完成上述准备之后,通过调用
<
a
class=
"reference external"
href=
"https://github.com/PaddlePaddle/Paddle/blob/develop/paddle/capi/gradient_machine.h#L73"
><code
class=
"docutils literal"
><span
class=
"pre"
>
paddle_gradient_machine_forward
</span></code></a
>
接口完成神经网络的前向计算。
</p>
</div>
<div
class=
"section"
id=
"step-5"
>
<span
id=
"step-5"
></span><h3>
step 5. 清理
<a
class=
"headerlink"
href=
"#step-5"
title=
"永久链接至标题"
>
¶
</a></h3>
...
...
develop/doc_cn/searchindex.js
浏览文件 @
01e82589
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录