Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleHub
提交
34b79406
P
PaddleHub
项目概览
PaddlePaddle
/
PaddleHub
1 年多 前同步成功
通知
283
Star
12117
Fork
2091
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
200
列表
看板
标记
里程碑
合并请求
4
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleHub
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
200
Issue
200
列表
看板
标记
里程碑
合并请求
4
合并请求
4
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
34b79406
编写于
4月 22, 2019
作者:
Z
Zeyu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add ssd demo
上级
d4fb75b1
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
24 addition
and
5 deletion
+24
-5
demo/ssd/README.md
demo/ssd/README.md
+4
-4
demo/ssd/cli_demo.sh
demo/ssd/cli_demo.sh
+0
-0
demo/ssd/ssd_demo.py
demo/ssd/ssd_demo.py
+19
-0
demo/text-classification/run_classifier.sh
demo/text-classification/run_classifier.sh
+1
-1
未找到文件。
demo/ssd/README.md
浏览文件 @
34b79406
...
...
@@ -27,18 +27,18 @@ $ pip install --upgrade paddlepaddle
## 命令行方式预测
`
infer
.sh`
给出了使用命令行调用Module预测的示例脚本
`
cli_demo
.sh`
给出了使用命令行调用Module预测的示例脚本
通过以下命令试验下效果
```
shell
$
sh
infer
.sh
$
sh
cli_demo
.sh
```
## 通过python API预测
`
infer_by_code
.py`
给出了使用python API调用Module预测的示例代码
`
ssd_demo
.py`
给出了使用python API调用Module预测的示例代码
通过以下命令试验下效果
```
shell
python
infer_by_code
.py
python
ssd_demo
.py
```
demo/ssd/
infer
.sh
→
demo/ssd/
cli_demo
.sh
浏览文件 @
34b79406
文件已移动
demo/ssd/
infer_by_code
.py
→
demo/ssd/
ssd_demo
.py
浏览文件 @
34b79406
import
os
import
paddlehub
as
hub
def
infer_with_input_path
():
# get ssd module
if
__name__
==
"__main__"
:
ssd
=
hub
.
Module
(
name
=
"ssd_mobilenet_v1_pascal"
)
test_img_path
=
os
.
path
.
join
(
"test"
,
"test_img_bird.jpg"
)
...
...
@@ -19,26 +17,3 @@ def infer_with_input_path():
results
=
ssd
.
object_detection
(
data
=
input_dict
)
for
result
in
results
:
hub
.
logger
.
info
(
result
)
def
infer_with_input_file
():
# get ssd module
ssd
=
hub
.
Module
(
name
=
"ssd_mobilenet_v1_pascal"
)
# get the input keys for signature 'object_detection'
data_format
=
ssd
.
processor
.
data_format
(
sign_name
=
'object_detection'
)
key
=
list
(
data_format
.
keys
())[
0
]
# parse input file
test_file
=
os
.
path
.
join
(
"test"
,
"test.txt"
)
test_images
=
hub
.
io
.
parser
.
txt_parser
.
parse
(
test_file
)
# set input dict
input_dict
=
{
key
:
test_images
}
results
=
ssd
.
object_detection
(
data
=
input_dict
)
for
result
in
results
:
hub
.
logger
.
info
(
result
)
if
__name__
==
"__main__"
:
infer_with_input_file
()
demo/text-classification/run_classifier.sh
浏览文件 @
34b79406
...
...
@@ -10,7 +10,7 @@ CKPT_DIR="./ckpt_${DATASET}"
python
-u
text_classifier.py
\
--batch_size
=
24
\
--use_gpu
=
Tru
e
\
--use_gpu
=
Fals
e
\
--dataset
=
${
DATASET
}
\
--checkpoint_dir
=
${
CKPT_DIR
}
\
--learning_rate
=
5e-5
\
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录