Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MegEngine 天元
MegEngine
提交
68da973e
MegEngine
项目概览
MegEngine 天元
/
MegEngine
1 年多 前同步成功
通知
403
Star
4705
Fork
582
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
MegEngine
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
68da973e
编写于
5月 14, 2021
作者:
M
Megvii Engine Team
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(mge/network_visualize): fix warning 'span dist too large'
GitOrigin-RevId: 8db691b8ac9cac81bb4761a5b420c54bcca167e9
上级
baa30400
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
27 addition
and
20 deletion
+27
-20
imperative/python/megengine/tools/network_visualize.py
imperative/python/megengine/tools/network_visualize.py
+2
-7
imperative/python/megengine/utils/module_stats.py
imperative/python/megengine/utils/module_stats.py
+25
-13
未找到文件。
imperative/python/megengine/tools/network_visualize.py
浏览文件 @
68da973e
...
...
@@ -74,8 +74,6 @@ def visualize(
exc_info
=
True
,
)
return
# FIXME: remove this after resolving "span dist too large" warning
old_level
=
set_mgb_log_level
(
logging
.
ERROR
)
enable_receptive_field
()
...
...
@@ -136,13 +134,13 @@ def visualize(
flops_stats
[
"class_name"
]
=
node
.
type
flops_list
.
append
(
flops_stats
)
acts
=
get_activation_stats
(
node_oup
.
numpy
()
)
acts
=
get_activation_stats
(
node_oup
)
acts
[
"name"
]
=
node
.
name
acts
[
"class_name"
]
=
node
.
type
activations_list
.
append
(
acts
)
if
node
.
type
==
"ImmutableTensor"
:
param_stats
=
get_param_stats
(
node
.
numpy
()
)
param_stats
=
get_param_stats
(
node
_oup
)
# add tensor size attr
if
log_path
:
attr
[
"size"
]
=
AttrValue
(
...
...
@@ -209,9 +207,6 @@ def visualize(
print_summary
(
**
extra_info
)
# FIXME: remove this after resolving "span dist too large" warning
_imperative_rt_logger
.
set_log_level
(
old_level
)
return
(
total_stats
(
param_size
=
total_param_size
,
flops
=
total_flops
,
act_size
=
total_act_size
,
...
...
imperative/python/megengine/utils/module_stats.py
浏览文件 @
68da973e
...
...
@@ -15,6 +15,8 @@ import megengine as mge
import
megengine.module
as
m
import
megengine.module.qat
as
qatm
import
megengine.module.quantized
as
qm
from
megengine
import
Tensor
from
megengine
import
functional
as
F
from
megengine.core.tensor.dtype
import
get_dtype_bit
from
megengine.functional.tensor
import
zeros
...
...
@@ -152,6 +154,16 @@ hook_modules = (
)
def
_mean
(
inp
):
inp
=
mge
.
tensor
(
inp
)
return
F
.
mean
(
inp
).
numpy
()
def
_std
(
inp
):
inp
=
mge
.
tensor
(
inp
)
return
F
.
std
(
inp
).
numpy
()
def
dict2table
(
list_of_dict
,
header
):
table_data
=
[
header
]
for
d
in
list_of_dict
:
...
...
@@ -266,16 +278,16 @@ def print_op_stats(flops):
logger
.
info
(
"flops stats:
\n
"
+
tabulate
.
tabulate
(
dict2table
(
flops
,
header
=
header
)))
def
get_param_stats
(
param
:
np
.
ndarray
):
nbits
=
get_dtype_bit
(
param
.
dtype
.
name
)
def
get_param_stats
(
param
:
Tensor
):
nbits
=
get_dtype_bit
(
np
.
dtype
(
param
.
dtype
)
.
name
)
shape
=
param
.
shape
param_dim
=
np
.
prod
(
param
.
shape
)
param_size
=
param_dim
*
nbits
//
8
return
{
"dtype"
:
param
.
dtype
,
"dtype"
:
np
.
dtype
(
param
.
dtype
)
,
"shape"
:
shape
,
"mean"
:
"{:.3g}"
.
format
(
param
.
mean
(
)),
"std"
:
"{:.3g}"
.
format
(
param
.
std
(
)),
"mean"
:
"{:.3g}"
.
format
(
_mean
(
param
)),
"std"
:
"{:.3g}"
.
format
(
_std
(
param
)),
"param_dim"
:
param_dim
,
"nbits"
:
nbits
,
"size"
:
param_size
,
...
...
@@ -323,9 +335,9 @@ def print_param_stats(params):
)
def
get_activation_stats
(
output
:
np
.
ndarray
):
def
get_activation_stats
(
output
:
Tensor
):
out_shape
=
output
.
shape
activations_dtype
=
output
.
dtype
activations_dtype
=
np
.
dtype
(
output
.
dtype
)
nbits
=
get_dtype_bit
(
activations_dtype
.
name
)
act_dim
=
np
.
prod
(
out_shape
)
act_size
=
act_dim
*
nbits
//
8
...
...
@@ -333,8 +345,8 @@ def get_activation_stats(output: np.ndarray):
"dtype"
:
activations_dtype
,
"shape"
:
out_shape
,
"act_dim"
:
act_dim
,
"mean"
:
"{:.3g}"
.
format
(
output
.
mean
(
)),
"std"
:
"{:.3g}"
.
format
(
output
.
std
(
)),
"mean"
:
"{:.3g}"
.
format
(
_mean
(
output
)),
"std"
:
"{:.3g}"
.
format
(
_std
(
output
)),
"nbits"
:
nbits
,
"size"
:
act_size
,
}
...
...
@@ -418,20 +430,20 @@ def module_stats(
if
hasattr
(
module
,
"weight"
)
and
module
.
weight
is
not
None
:
w
=
module
.
weight
param_stats
=
get_param_stats
(
w
.
numpy
()
)
param_stats
=
get_param_stats
(
w
)
param_stats
[
"name"
]
=
name
+
"-w"
params
.
append
(
param_stats
)
if
hasattr
(
module
,
"bias"
)
and
module
.
bias
is
not
None
:
b
=
module
.
bias
param_stats
=
get_param_stats
(
b
.
numpy
()
)
param_stats
=
get_param_stats
(
b
)
param_stats
[
"name"
]
=
name
+
"-b"
params
.
append
(
param_stats
)
if
not
isinstance
(
outputs
,
tuple
)
or
not
isinstance
(
outputs
,
list
):
output
=
outputs
.
numpy
()
output
=
outputs
else
:
output
=
outputs
[
0
]
.
numpy
()
output
=
outputs
[
0
]
activation_stats
=
get_activation_stats
(
output
)
activation_stats
[
"name"
]
=
name
activation_stats
[
"class_name"
]
=
class_name
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录