Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleHub
提交
84ca16d9
P
PaddleHub
项目概览
PaddlePaddle
/
PaddleHub
大约 1 年 前同步成功
通知
282
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看板
提交
84ca16d9
编写于
1月 07, 2019
作者:
W
wuzewu
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'master' of
https://github.com/PaddlePaddle/PaddleHub
上级
f42505c0
8b313651
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
13 addition
and
21 deletion
+13
-21
README.md
README.md
+1
-0
tests/test_export_n_load_module.py
tests/test_export_n_load_module.py
+12
-21
未找到文件。
README.md
浏览文件 @
84ca16d9
# PaddleHub
# PaddleHub
[
![Build Status
](
https://travis-ci.org/PaddlePaddle/PaddleHub.svg?branch=master
)
](https://travis-ci.org/PaddlePaddle/PaddleHub)
[
![License
](
https://img.shields.io/badge/license-Apache%202-blue.svg
)
](LICENSE)
[
![License
](
https://img.shields.io/badge/license-Apache%202-blue.svg
)
](LICENSE)
tests/test_export_n_load_module.py
浏览文件 @
84ca16d9
...
@@ -162,8 +162,6 @@ def train(use_cuda=False):
...
@@ -162,8 +162,6 @@ def train(use_cuda=False):
target_vars
=
[
predict_word
],
target_vars
=
[
predict_word
],
executor
=
exe
)
executor
=
exe
)
create
dictionary
=
defaultdict
(
int
)
dictionary
=
defaultdict
(
int
)
w_id
=
0
w_id
=
0
for
w
in
word_dict
:
for
w
in
word_dict
:
...
@@ -211,25 +209,18 @@ def test_save_module(use_cuda=False):
...
@@ -211,25 +209,18 @@ def test_save_module(use_cuda=False):
target_vars
=
[
word_emb
],
target_vars
=
[
word_emb
],
executor
=
exe
)
executor
=
exe
)
dictionary
=
defaultdict
(
int
)
dictionary
=
defaultdict
(
int
)
w_id
=
0
w_id
=
0
for
w
in
word_dict
:
for
w
in
word_dict
:
if
isinstance
(
w
,
bytes
):
if
isinstance
(
w
,
bytes
):
w
=
w
.
decode
(
"ascii"
)
w
=
w
.
decode
(
"ascii"
)
dictionary
[
w
]
=
w_id
dictionary
[
w
]
=
w_id
w_id
+=
1
w_id
+=
1
signature
=
hub
.
create_singature
(
signature
=
hub
.
create_signature
(
"default"
,
inputs
=
[
data
],
outputs
=
[
word_emb
])
"default"
,
inputs
=
[
words
],
outputs
=
[
word_emb
])
hub
.
create_module
(
hub
.
create_module
(
sign_arr
=
signature
,
program
=
main_program
,
path
=
save_module_dir
)
sign_arr
=
signature
,
program
=
main_program
,
path
=
saved_module_dir
)
# input_desc = {"words": words.name}
# output_desc = {"emb": word_emb.name}
# config = hub.ModuleConfig(saved_module_dir)
# config.register_feed_signature(input_desc, sign_name="default")
# config.register_fetch_signature(output_desc, sign_name="default")
# config.save_dict(word_dict=dictionary)
# config.dump()
def
test_load_module
(
use_cuda
=
False
):
def
test_load_module
(
use_cuda
=
False
):
...
@@ -243,7 +234,7 @@ def test_load_module(use_cuda=False):
...
@@ -243,7 +234,7 @@ def test_load_module(use_cuda=False):
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
use_cuda
=
Tru
e
use_cuda
=
Fals
e
print
(
"train..."
)
print
(
"train..."
)
train
(
use_cuda
)
train
(
use_cuda
)
print
(
"save module..."
)
print
(
"save module..."
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录