Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleHub
提交
42e69693
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看板
提交
42e69693
编写于
7月 12, 2019
作者:
W
wuzewu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix ci bug
上级
677c7bfd
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
10 addition
and
11 deletion
+10
-11
.travis.yml
.travis.yml
+1
-2
README.md
README.md
+7
-7
demo/README.md
demo/README.md
+1
-1
paddlehub/__init__.py
paddlehub/__init__.py
+1
-1
未找到文件。
.travis.yml
浏览文件 @
42e69693
...
...
@@ -4,9 +4,8 @@ python:
-
'
2.7'
-
'
3.5'
-
'
3.6'
-
'
3.7'
script
:
/bin/bash ./scripts/check_code_style.sh
script
:
if [[ $TRAVIS_PYTHON_VERSION != 2.7 ]]; then /bin/bash ./scripts/check_code_style.sh; fi
notifications
:
email
:
...
...
README.md
浏览文件 @
42e69693
...
...
@@ -7,7 +7,7 @@
PaddleHub是基于PaddlePaddle生态下的预训练模型管理和迁移学习工具,可以结合预训练模型更便捷地开展迁移学习工作。通过PaddleHub,您可以:
*
便捷地获取PaddlePaddle生态下的所有预训练模型,涵盖了图像分类、目标检测、词法分析、语义模型、情感分析、语言模型、视频分类、图像生成八类主流模型。
*
更多详情可查看官网:http://hub.paddlepaddle.org.cn
*
更多详情可查看官网:http://hub.paddlepaddle.org.cn
*
通过PaddleHub Fine-tune API,结合少量代码即可完成
**大规模预训练模型**
的迁移学习,具体Demo可参考以下链接:
*
[
文本分类
](
https://github.com/PaddlePaddle/PaddleHub/tree/release/v1.0.0/demo/text-classification
)
*
[
序列标注
](
https://github.com/PaddlePaddle/PaddleHub/tree/release/v1.0.0/demo/sequence-labeling
)
...
...
@@ -73,19 +73,19 @@ $ hub run faster_rcnn_coco2017 --input_path test_object_detection.jpg
## 在线体验
我们在AI Studio和AIBook上提供了IPython NoteBook形式的demo,您可以直接在平台上在线体验,链接如下:
*
ERNIE文本分类:
*
[
AI Studio
](
https://aistudio.baidu.com/aistudio/projectDetail/79380
)
*
[
AI Studio
](
https://aistudio.baidu.com/aistudio/projectDetail/79380
)
*
[
AIBook
](
https://console.bce.baidu.com/bml/?_=1562072915183#/bml/aibook/ernie_txt_cls
)
*
ERNIE序列标注:
*
[
AI Studio
](
https://aistudio.baidu.com/aistudio/projectDetail/79377
)
*
[
AI Studio
](
https://aistudio.baidu.com/aistudio/projectDetail/79377
)
*
[
AIBook
](
https://console.bce.baidu.com/bml/?_=1562072915183#/bml/aibook/ernie_seq_label
)
*
ELMo文本分类:
*
[
AI Studio
](
https://aistudio.baidu.com/aistudio/projectDetail/79400
)
*
[
AI Studio
](
https://aistudio.baidu.com/aistudio/projectDetail/79400
)
*
[
AIBook
](
https://console.bce.baidu.com/bml/#/bml/aibook/elmo_txt_cls
)
*
senta情感分类:
*
[
AI Studio
](
https://aistudio.baidu.com/aistudio/projectDetail/79398
)
*
[
AI Studio
](
https://aistudio.baidu.com/aistudio/projectDetail/79398
)
*
[
AIBook
](
https://console.bce.baidu.com/bml/#/bml/aibook/senta_bilstm
)
*
图像分类:
*
[
AI Studio
](
https://aistudio.baidu.com/aistudio/projectDetail/79378
)
*
图像分类:
*
[
AI Studio
](
https://aistudio.baidu.com/aistudio/projectDetail/79378
)
*
[
AIBook
](
https://console.bce.baidu.com/bml/#/bml/aibook/img_cls
)
## 答疑
...
...
demo/README.md
浏览文件 @
42e69693
...
...
@@ -44,7 +44,7 @@
该样例展示了PaddleHub
>* 如何将ERNIE和BERT作为预训练模型在ChnSentiCorp、LCQMC和NLPCC-DBQA等数据集上完成文本分类的FineTune和预测。
>* 如何将ELMo预训练得到的中文word embedding加载,完成在ChnSentiCorp数据集上文本分类的FineTune和预测。
>* 如何将ELMo预训练得到的中文word embedding加载,完成在ChnSentiCorp数据集上文本分类的FineTune和预测。
## 多标签分类
...
...
paddlehub/__init__.py
浏览文件 @
42e69693
...
...
@@ -17,7 +17,7 @@ import six
if
six
.
PY2
:
import
sys
reload
(
sys
)
reload
(
sys
)
# noqa
sys
.
setdefaultencoding
(
"UTF-8"
)
from
.
import
module
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录