Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleHub
提交
232321cb
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看板
提交
232321cb
编写于
9月 10, 2019
作者:
S
shenyuhan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add user_home, fix ci
上级
40d0944e
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
14 addition
and
12 deletion
+14
-12
README.md
README.md
+3
-4
demo/lac/lac_demo.py
demo/lac/lac_demo.py
+4
-4
demo/senta/senta_demo.py
demo/senta/senta_demo.py
+2
-2
paddlehub/commands/config.py
paddlehub/commands/config.py
+4
-2
paddlehub/common/dir.py
paddlehub/common/dir.py
+1
-0
未找到文件。
README.md
浏览文件 @
232321cb
...
...
@@ -174,4 +174,3 @@ print(res)
目前版本支持以下模型:词法分析LAC;情感分析Senta;目标检测SSD;图像分类ResNet, MobileNet, NASNet等。
*
迁移学习: 提供了基于预训练模型的Finetune API,用户通过少量代码即可完成迁移学习,包括BERT/ERNIE文本分类、序列标注、图像分类迁移等。
demo/lac/lac_demo.py
浏览文件 @
232321cb
...
...
@@ -19,10 +19,10 @@ if __name__ == "__main__":
results
=
lac
.
lexical_analysis
(
data
=
inputs
,
use_gpu
=
True
,
batch_size
=
10
)
for
result
in
results
:
if
six
.
PY2
:
print
(
json
.
dumps
(
result
[
'word'
],
encoding
=
"utf8"
,
ensure_ascii
=
False
))
print
(
json
.
dumps
(
result
[
'tag'
],
encoding
=
"utf8"
,
ensure_ascii
=
False
))
print
(
json
.
dumps
(
result
[
'word'
],
encoding
=
"utf8"
,
ensure_ascii
=
False
))
print
(
json
.
dumps
(
result
[
'tag'
],
encoding
=
"utf8"
,
ensure_ascii
=
False
))
else
:
print
(
result
[
'word'
])
print
(
result
[
'tag'
])
demo/senta/senta_demo.py
浏览文件 @
232321cb
...
...
@@ -21,7 +21,7 @@ if __name__ == "__main__":
results
[
index
][
"text"
]
=
text
for
index
,
result
in
enumerate
(
results
):
if
six
.
PY2
:
print
(
json
.
dumps
(
results
[
index
],
encoding
=
"utf8"
,
ensure_ascii
=
False
))
print
(
json
.
dumps
(
results
[
index
],
encoding
=
"utf8"
,
ensure_ascii
=
False
))
else
:
print
(
results
[
index
])
paddlehub/commands/config.py
浏览文件 @
232321cb
...
...
@@ -80,8 +80,10 @@ class ConfigCommand(BaseCommand):
@
staticmethod
def
set_log_level
(
level
):
if
level
not
in
[
"CRITICAL"
,
"FATAL"
,
"ERROR"
,
"WARN"
,
"WARNING"
,
"INFO"
,
"DEBUG"
,
"NOTSET"
]:
if
level
not
in
[
"CRITICAL"
,
"FATAL"
,
"ERROR"
,
"WARN"
,
"WARNING"
,
"INFO"
,
"DEBUG"
,
"NOTSET"
]:
print
(
"Allowed values include: "
"CRITICAL, FATAL, ERROR, WARN, WARNING, INFO, DEBUG, NOTSET"
)
return
...
...
paddlehub/common/dir.py
浏览文件 @
232321cb
...
...
@@ -14,6 +14,7 @@
# limitations under the License.
import
os
# TODO: Change dir.py's filename, this naming rule is not qualified
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录