Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
VisualDL
提交
8fa56022
V
VisualDL
项目概览
PaddlePaddle
/
VisualDL
1 年多 前同步成功
通知
88
Star
4655
Fork
642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
5
Wiki
分析
仓库
DevOps
项目成员
Pages
V
VisualDL
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
5
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
8fa56022
编写于
1月 03, 2018
作者:
Y
Yan Chunwei
提交者:
GitHub
1月 03, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'develop' into feature/support_pytorch_demo
上级
d350be2f
0e166b17
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
110 addition
and
3 deletion
+110
-3
.gitignore
.gitignore
+4
-0
server/build.sh
server/build.sh
+3
-1
server/visualdl/graph.py
server/visualdl/graph.py
+2
-0
server/visualdl/graph_test.py
server/visualdl/graph_test.py
+74
-0
server/visualdl/graph_test.sh
server/visualdl/graph_test.sh
+12
-0
server/visualdl/mock/download_mock_models.sh
server/visualdl/mock/download_mock_models.sh
+2
-2
tests.sh
tests.sh
+13
-0
未找到文件。
.gitignore
浏览文件 @
8fa56022
...
@@ -106,3 +106,7 @@ ENV/
...
@@ -106,3 +106,7 @@ ENV/
node_modules
node_modules
/.vscode
/.vscode
package-lock.json
package-lock.json
# PyCharm IDE
.idea/
server/build.sh
浏览文件 @
8fa56022
#!/bin/bash
script
=
$(
readlink
-f
"
$0
"
)
script
=
$(
readlink
-f
"
$0
"
)
script_path
=
$(
dirname
"
$script
"
)
script_path
=
$(
dirname
"
$script
"
)
pushd
$script_path
pushd
$script_path
protoc visualdl/onnx/onnx.proto
--python_out
.
protoc
3/bin/protoc
visualdl/onnx/onnx.proto
--python_out
.
python setup.py bdist_wheel
python setup.py bdist_wheel
popd
popd
server/visualdl/graph.py
浏览文件 @
8fa56022
...
@@ -31,6 +31,8 @@ def reorganize_inout(json_obj, key):
...
@@ -31,6 +31,8 @@ def reorganize_inout(json_obj, key):
def
add_edges
(
json_obj
):
def
add_edges
(
json_obj
):
# TODO(daming-lu): should try to de-duplicate node's out-edge
# Currently it is counted twice: 1 as out-edge, 1 as in-edge
json_obj
[
'edges'
]
=
[]
json_obj
[
'edges'
]
=
[]
label_incrementer
=
0
label_incrementer
=
0
...
...
server/visualdl/graph_test.py
0 → 100644
浏览文件 @
8fa56022
import
unittest
import
graph
import
json
class
GraphTest
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
mock_dir
=
"./mock"
def
test_graph_edges_squeezenet
(
self
):
json_str
=
graph
.
load_model
(
self
.
mock_dir
+
'/squeezenet_model.pb'
)
json_obj
=
json
.
loads
(
json_str
)
# 126 edges + 66 nodes (out-edge of each node is counted twice)
self
.
assertEqual
(
len
(
json_obj
[
'edges'
]),
126
+
66
)
# label_0: (in-edge)
# {u'source': u'data_0', u'target': u'node_0', u'label': u'label_0'}
self
.
assertEqual
(
json_obj
[
'edges'
][
0
][
'source'
],
'data_0'
)
self
.
assertEqual
(
json_obj
[
'edges'
][
0
][
'target'
],
'node_0'
)
self
.
assertEqual
(
json_obj
[
'edges'
][
0
][
'label'
],
'label_0'
)
# label_50: (in-edge)
# {u'source': u'fire3/concat_1', u'target': u'node_17', u'label': u'label_50'}
self
.
assertEqual
(
json_obj
[
'edges'
][
50
][
'source'
],
'fire3/concat_1'
)
self
.
assertEqual
(
json_obj
[
'edges'
][
50
][
'target'
],
'node_17'
)
self
.
assertEqual
(
json_obj
[
'edges'
][
50
][
'label'
],
'label_50'
)
# label_100: (in-edge)
# {u'source': u'fire6/squeeze1x1_1', u'target': u'node_34', u'label': u'label_100'}
self
.
assertEqual
(
json_obj
[
'edges'
][
100
][
'source'
],
'fire6/squeeze1x1_1'
)
self
.
assertEqual
(
json_obj
[
'edges'
][
100
][
'target'
],
'node_34'
)
self
.
assertEqual
(
json_obj
[
'edges'
][
100
][
'label'
],
'label_100'
)
# label_111: (out-edge)
# {u'source': u'node_37', u'target': u'fire6/expand3x3_1', u'label': u'label_111'}
self
.
assertEqual
(
json_obj
[
'edges'
][
111
][
'source'
],
'node_37'
)
self
.
assertEqual
(
json_obj
[
'edges'
][
111
][
'target'
],
'fire6/expand3x3_1'
)
self
.
assertEqual
(
json_obj
[
'edges'
][
111
][
'label'
],
'label_111'
)
def
test_graph_edges_inception_v1
(
self
):
json_str
=
graph
.
load_model
(
self
.
mock_dir
+
'/inception_v1_model.pb'
)
json_obj
=
json
.
loads
(
json_str
)
# 286 edges + 143 nodes (out-edge of each node is counted twice)
self
.
assertEqual
(
len
(
json_obj
[
'edges'
]),
286
+
143
)
# label_0: (in-edge)
# {u'source': u'data_0', u'target': u'node_0', u'label': u'label_0'}
self
.
assertEqual
(
json_obj
[
'edges'
][
0
][
'source'
],
'data_0'
)
self
.
assertEqual
(
json_obj
[
'edges'
][
0
][
'target'
],
'node_0'
)
self
.
assertEqual
(
json_obj
[
'edges'
][
0
][
'label'
],
'label_0'
)
# label_50: (in-edge)
# {u'source': u'inception_3a/5x5_reduce_2', u'target': u'node_18', u'label': u'label_50'}
self
.
assertEqual
(
json_obj
[
'edges'
][
50
][
'source'
],
'inception_3a/5x5_reduce_2'
)
self
.
assertEqual
(
json_obj
[
'edges'
][
50
][
'target'
],
'node_18'
)
self
.
assertEqual
(
json_obj
[
'edges'
][
50
][
'label'
],
'label_50'
)
# label_100: (out-edge)
# {u'source': u'node_34', u'target': u'inception_3b/pool_1', u'label': u'label_100'}
self
.
assertEqual
(
json_obj
[
'edges'
][
100
][
'source'
],
'node_34'
)
self
.
assertEqual
(
json_obj
[
'edges'
][
100
][
'target'
],
'inception_3b/pool_1'
)
self
.
assertEqual
(
json_obj
[
'edges'
][
100
][
'label'
],
'label_100'
)
# label_420: (out-edge)
# {u'source': u'node_139', u'target': u'pool5/7x7_s1_2', u'label': u'label_420'}
self
.
assertEqual
(
json_obj
[
'edges'
][
420
][
'source'
],
'node_139'
)
self
.
assertEqual
(
json_obj
[
'edges'
][
420
][
'target'
],
'pool5/7x7_s1_2'
)
self
.
assertEqual
(
json_obj
[
'edges'
][
420
][
'label'
],
'label_420'
)
if
__name__
==
'__main__'
:
unittest
.
main
()
server/visualdl/graph_test.sh
0 → 100644
浏览文件 @
8fa56022
#!/bin/bash
set
-ex
cd
mock
bash download_mock_models.sh
cd
..
python graph_test.py
rm
./mock/
*
.pb
server/visualdl/mock/download_mock_models.sh
浏览文件 @
8fa56022
# Download inception_v1 model
# Download inception_v1 model
curl
-LOk
http://visualdl.bj.bcebos.com/inception_v1.tar.gz
curl
-LOk
http://visualdl.bj.bcebos.com/inception_v1.tar.gz
#curl -LOk https://www.dropbox.com/s/twbfdqgvowzy762/inception_v1.tar.gz?dl=0
tar
-xvzf
inception_v1.tar.gz
tar
-xvzf
inception_v1.tar.gz
cp
inception_v1/model.pb inception_v1_model.pb
cp
inception_v1/model.pb inception_v1_model.pb
...
@@ -11,7 +11,7 @@ rm inception_v1.tar.gz
...
@@ -11,7 +11,7 @@ rm inception_v1.tar.gz
# Download squeezenet model
# Download squeezenet model
curl
-LOk
http://visualdl.bj.bcebos.com/squeezenet.tar.gz
curl
-LOk
http://visualdl.bj.bcebos.com/squeezenet.tar.gz
#curl -LOk https://www.dropbox.com/s/fip3jzxsjf2g6zc/squeezenet.tar.gz?dl=0
tar
-xvzf
squeezenet.tar.gz
tar
-xvzf
squeezenet.tar.gz
cp
squeezenet/model.pb squeezenet_model.pb
cp
squeezenet/model.pb squeezenet_model.pb
...
...
tests.sh
浏览文件 @
8fa56022
...
@@ -27,8 +27,21 @@ frontend_test() {
...
@@ -27,8 +27,21 @@ frontend_test() {
}
}
server_test
()
{
server_test
()
{
sudo
pip
install
google
sudo
pip
install
protobuf
==
3.1.0
cd
$cur
/server
cd
$cur
/server
curl
-OL
https://github.com/google/protobuf/releases/download/v3.1.0/protoc-3.1.0-linux-x86_64.zip
unzip protoc-3.1.0-linux-x86_64.zip
-d
protoc3
export
PATH
=
$PATH
:protoc3/bin
sudo chmod
+x protoc3/bin/protoc
sudo chown
`
whoami
`
protoc3/bin/protoc
bash build.sh
bash build.sh
cd
visualdl
bash graph_test.sh
cd
$cur
/server/visualdl
cd
$cur
/server/visualdl
python lib_test.py
python lib_test.py
}
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录