Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MindSpore
mindinsight
提交
a47ed74a
M
mindinsight
项目概览
MindSpore
/
mindinsight
通知
7
Star
3
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
mindinsight
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
a47ed74a
编写于
4月 02, 2020
作者:
L
luopengting
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add error code for MaxCountExceededError, change exception used in summary_watcher
上级
edb6dc56
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
10 addition
and
10 deletion
+10
-10
mindinsight/datavisual/common/exceptions.py
mindinsight/datavisual/common/exceptions.py
+4
-4
mindinsight/datavisual/data_transform/summary_watcher.py
mindinsight/datavisual/data_transform/summary_watcher.py
+3
-3
mindinsight/datavisual/utils/tools.py
mindinsight/datavisual/utils/tools.py
+2
-2
mindinsight/utils/constant.py
mindinsight/utils/constant.py
+1
-1
未找到文件。
mindinsight/datavisual/common/exceptions.py
浏览文件 @
a47ed74a
...
...
@@ -83,10 +83,10 @@ class NodeNotInGraphError(MindInsightException):
http_code
=
400
)
class
MaxCountExceededE
xception
(
MindInsightException
):
class
MaxCountExceededE
rror
(
MindInsightException
):
"""Count is out of limit."""
def
__init__
(
self
):
error_msg
=
"Count is out of limit."
super
(
MaxCountExceededE
xception
,
self
).
__init__
(
DataVisualErrors
.
NODE_NOT_IN_GRAPH
_ERROR
,
error_msg
,
http_code
=
400
)
super
(
MaxCountExceededE
rror
,
self
).
__init__
(
DataVisualErrors
.
MAX_COUNT_EXCEEDED
_ERROR
,
error_msg
,
http_code
=
400
)
mindinsight/datavisual/data_transform/summary_watcher.py
浏览文件 @
a47ed74a
...
...
@@ -22,7 +22,7 @@ from pathlib import Path
from
mindinsight.datavisual.common.log
import
logger
from
mindinsight.datavisual.common.validation
import
Validation
from
mindinsight.datavisual.utils.tools
import
Counter
from
mindinsight.
utils.exceptions
import
ParamValue
Error
from
mindinsight.
datavisual.common.exceptions
import
MaxCountExceeded
Error
from
mindinsight.utils.exceptions
import
FileSystemPermissionError
...
...
@@ -87,7 +87,7 @@ class SummaryWatcher:
break
try
:
counter
.
add
()
except
ParamValue
Error
:
except
MaxCountExceeded
Error
:
logger
.
info
(
'Stop further scanning due to overall is False and '
'number of scanned files exceeds upper limit.'
)
break
...
...
@@ -132,7 +132,7 @@ class SummaryWatcher:
break
try
:
counter
.
add
()
except
ParamValue
Error
:
except
MaxCountExceeded
Error
:
logger
.
info
(
'Stop further scanning due to overall is False and '
'number of scanned files exceeds upper limit.'
)
break
...
...
mindinsight/datavisual/utils/tools.py
浏览文件 @
a47ed74a
...
...
@@ -20,7 +20,7 @@ import os
from
numbers
import
Number
from
urllib.parse
import
unquote
from
mindinsight.datavisual.common.exceptions
import
MaxCountExceededE
xception
from
mindinsight.datavisual.common.exceptions
import
MaxCountExceededE
rror
from
mindinsight.utils
import
exceptions
_IMG_EXT_TO_MIMETYPE
=
{
...
...
@@ -165,5 +165,5 @@ class Counter:
def
add
(
self
,
value
=
1
):
"""Add value."""
if
self
.
_max_count
is
not
None
and
self
.
_count
+
value
>
self
.
_max_count
:
raise
MaxCountExceededE
xception
()
raise
MaxCountExceededE
rror
()
self
.
_count
+=
value
mindinsight/utils/constant.py
浏览文件 @
a47ed74a
...
...
@@ -50,7 +50,7 @@ class DataVisualErrors(Enum):
"""Enum definition for datavisual errors."""
RESTFUL_API_NOT_EXIST
=
1
REQUEST_METHOD_NOT_ALLOWED
=
2
SUMMARY_LOG_CONTENT_INVALID
=
3
MAX_COUNT_EXCEEDED_ERROR
=
3
CRC_FAILED
=
4
TRAIN_JOB_NOT_EXIST
=
5
SUMMARY_LOG_PATH_INVALID
=
6
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录