Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleClas
提交
6595325b
P
PaddleClas
项目概览
PaddlePaddle
/
PaddleClas
大约 1 年 前同步成功
通知
115
Star
4999
Fork
1114
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
19
列表
看板
标记
里程碑
合并请求
6
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleClas
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
19
Issue
19
列表
看板
标记
里程碑
合并请求
6
合并请求
6
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
6595325b
编写于
8月 17, 2022
作者:
R
root
提交者:
Tingquan Gao
8月 19, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
perf: rm sys.path.append() & only in CLI will print_info() be call
上级
87822ba1
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
11 addition
and
16 deletion
+11
-16
paddleclas.py
paddleclas.py
+11
-16
未找到文件。
paddleclas.py
浏览文件 @
6595325b
...
...
@@ -13,10 +13,6 @@
# limitations under the License.
import
os
import
sys
__dir__
=
os
.
path
.
dirname
(
__file__
)
sys
.
path
.
append
(
os
.
path
.
join
(
__dir__
,
""
))
from
typing
import
Union
,
Generator
import
argparse
import
shutil
...
...
@@ -32,16 +28,16 @@ from tqdm import tqdm
from
prettytable
import
PrettyTable
import
paddle
import
ppcls.arch.backbone
as
backbone
from
ppcls.utils
import
logger
from
.ppcls.arch
import
backbone
from
.
ppcls.utils
import
logger
from
deploy.python.predict_cls
import
ClsPredictor
from
deploy.utils.get_image_list
import
get_image_list
from
deploy.utils
import
config
from
.
deploy.python.predict_cls
import
ClsPredictor
from
.
deploy.utils.get_image_list
import
get_image_list
from
.
deploy.utils
import
config
# for the PaddleClas Project
to import
import
deploy
import
ppcls
# for the PaddleClas Project
from
.
import
deploy
from
.
import
ppcls
# for building model with loading pretrained weights from backbone
logger
.
init_logger
()
...
...
@@ -205,6 +201,7 @@ class InputModelError(Exception):
def
init_config
(
model_type
,
model_name
,
inference_model_dir
,
**
kwargs
):
cfg_path
=
f
"deploy/configs/PULC/
{
model_name
}
/inference_
{
model_name
}
.yaml"
if
model_type
==
"pulc"
else
"deploy/configs/inference_cls.yaml"
__dir__
=
os
.
path
.
dirname
(
__file__
)
cfg_path
=
os
.
path
.
join
(
__dir__
,
cfg_path
)
cfg
=
config
.
get_config
(
cfg_path
,
show
=
False
)
...
...
@@ -456,10 +453,6 @@ class PaddleClas(object):
"""PaddleClas.
"""
if
not
os
.
environ
.
get
(
'ppcls'
,
False
):
os
.
environ
.
setdefault
(
'ppcls'
,
'True'
)
print_info
()
def
__init__
(
self
,
model_name
:
str
=
None
,
inference_model_dir
:
str
=
None
,
...
...
@@ -474,6 +467,7 @@ class PaddleClas(object):
topk (int, optional): Return the top k prediction results with the highest score. Defaults to 5.
"""
super
().
__init__
()
self
.
model_type
,
inference_model_dir
=
self
.
_check_input_model
(
model_name
,
inference_model_dir
)
self
.
_config
=
init_config
(
self
.
model_type
,
model_name
,
...
...
@@ -598,6 +592,7 @@ class PaddleClas(object):
def
main
():
"""Function API used for commad line.
"""
print_info
()
cfg
=
args_cfg
()
clas_engine
=
PaddleClas
(
**
cfg
)
res
=
clas_engine
.
predict
(
cfg
[
"infer_imgs"
],
print_pred
=
True
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录