Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleHub
提交
4e4297df
P
PaddleHub
项目概览
PaddlePaddle
/
PaddleHub
1 年多 前同步成功
通知
284
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看板
提交
4e4297df
编写于
4月 01, 2019
作者:
W
wuzewu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
support init module with key
上级
32ff186b
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
41 addition
and
13 deletion
+41
-13
paddle_hub/__init__.py
paddle_hub/__init__.py
+1
-0
paddle_hub/dataset/__init__.py
paddle_hub/dataset/__init__.py
+2
-0
paddle_hub/module/manager.py
paddle_hub/module/manager.py
+7
-2
paddle_hub/module/module.py
paddle_hub/module/module.py
+31
-11
未找到文件。
paddle_hub/__init__.py
浏览文件 @
4e4297df
...
...
@@ -37,3 +37,4 @@ from .finetune.config import FinetuneConfig
from
.finetune.task
import
Task
from
.reader
import
BERTTokenizeReader
from
.reader.cv_reader
import
ImageClassificationReader
paddle_hub/dataset/__init__.py
浏览文件 @
4e4297df
...
...
@@ -15,3 +15,5 @@
from
.dataset
import
InputExample
,
HubDataset
from
.chnsenticorp
import
ChnSentiCorp
from
.msra_ner
import
MSRA_NER
from
.dogcat
import
DogCatDataset
as
DogCat
from
.flowers
import
FlowersDataset
as
Flowers
paddle_hub/module/manager.py
浏览文件 @
4e4297df
...
...
@@ -21,12 +21,13 @@ import shutil
from
paddle_hub.common
import
utils
from
paddle_hub.common.downloader
import
default_downloader
from
paddle_hub.common.dir
import
MODULE_HOME
import
paddle_hub
as
hub
class
LocalModuleManager
:
def
__init__
(
self
,
module_home
=
None
):
self
.
local_modules_dir
=
module_home
if
module_home
else
hub
.
MODULE_HOME
self
.
local_modules_dir
=
module_home
if
module_home
else
MODULE_HOME
self
.
modules_dict
=
{}
if
not
os
.
path
.
exists
(
self
.
local_modules_dir
):
utils
.
mkdir
(
self
.
local_modules_dir
)
...
...
@@ -77,7 +78,11 @@ class LocalModuleManager:
save_name
=
module_name
,
replace
=
True
)
result
,
tips
,
module_dir
=
default_downloader
.
uncompress
(
file
=
module_zip_file
,
dirname
=
hub
.
MODULE_HOME
,
delete_file
=
True
)
file
=
module_zip_file
,
dirname
=
MODULE_HOME
,
delete_file
=
True
)
save_path
=
os
.
path
.
join
(
MODULE_HOME
,
module_name
)
shutil
.
move
(
module_dir
,
save_path
)
module_dir
=
save_path
if
module_dir
:
tips
=
"Successfully installed %s"
%
module_name
...
...
paddle_hub/module/module.py
浏览文件 @
4e4297df
...
...
@@ -15,24 +15,28 @@
from
__future__
import
absolute_import
from
__future__
import
division
from
__future__
import
print_function
import
os
import
time
import
sys
import
functools
from
shutil
import
copyfile
import
paddle
import
paddle.fluid
as
fluid
from
paddle_hub.common
import
utils
from
paddle_hub.common
import
paddle_helper
from
paddle_hub.common.logger
import
logger
from
paddle_hub.common.downloader
import
default_downloader
from
paddle_hub.common
import
paddle_helper
from
paddle_hub.module
import
module_desc_pb2
from
paddle_hub.module
import
check_info_pb2
from
paddle_hub.module.signature
import
Signature
,
create_signature
from
paddle_hub.module.checker
import
ModuleChecker
from
paddle_hub.module.manager
import
default_module_manager
from
paddle_hub.module.base_processor
import
BaseProcessor
from
paddle_hub.io.reader
import
yaml_reader
from
paddle_hub
import
version
from
paddle_hub.module.base_processor
import
BaseProcessor
from
shutil
import
copyfile
import
os
import
time
import
sys
import
functools
import
paddle
import
paddle.fluid
as
fluid
__all__
=
[
'Module'
,
'create_module'
]
...
...
@@ -89,6 +93,7 @@ class ModuleHelper(object):
class
Module
(
object
):
def
__init__
(
self
,
key
=
None
,
url
=
None
,
module_dir
=
None
,
signatures
=
None
,
...
...
@@ -105,7 +110,9 @@ class Module(object):
self
.
processor
=
None
self
.
name
=
"temp"
# TODO(wuzewu): print more module loading info log
if
url
:
if
key
:
self
.
_init_with_key
(
key
=
key
)
elif
url
:
self
.
_init_with_url
(
url
=
url
)
elif
module_dir
:
self
.
_init_with_module_file
(
module_dir
=
module_dir
)
...
...
@@ -124,10 +131,23 @@ class Module(object):
else
:
raise
"Error! HubModule can't init with nothing"
def
_init_with_key
(
self
,
key
):
logger
.
info
(
"Try installing module %s"
%
key
)
result
,
tips
,
module_dir
=
default_module_manager
.
install_module
(
module_name
=
key
)
if
not
result
:
logger
.
error
(
tips
)
exit
(
1
)
logger
.
info
(
tips
)
self
.
_init_with_module_file
(
module_dir
)
def
_init_with_url
(
self
,
url
):
utils
.
check_url
(
url
)
result
,
_
,
module_dir
=
default_downloader
.
download_file_and_uncompress
(
result
,
tips
,
module_dir
=
default_downloader
.
download_file_and_uncompress
(
url
,
save_path
=
"."
)
if
not
result
:
logger
.
error
(
tips
)
exit
(
1
)
self
.
_init_with_module_file
(
module_dir
)
def
_dump_processor
(
self
):
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录