Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
VisualDL
提交
a780dbf8
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看板
提交
a780dbf8
编写于
1月 03, 2018
作者:
S
superjom
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'develop' of github.com:PaddlePaddle/VisualDL into feature/support_pytorch_demo
上级
712a9f91
0e166b17
变更
14
隐藏空白更改
内联
并排
Showing
14 changed file
with
122 addition
and
17 deletion
+122
-17
.gitignore
.gitignore
+4
-0
CMakeLists.txt
CMakeLists.txt
+1
-1
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
server/visualdl/visual_dl.py
server/visualdl/visual_dl.py
+7
-7
tests.sh
tests.sh
+13
-0
visualdl/logic/im.cc
visualdl/logic/im.cc
+1
-0
visualdl/logic/sdk.cc
visualdl/logic/sdk.cc
+1
-1
visualdl/logic/sdk.h
visualdl/logic/sdk.h
+1
-1
visualdl/logic/sdk_test.cc
visualdl/logic/sdk_test.cc
+1
-1
visualdl/utils/image.h
visualdl/utils/image.h
+0
-3
未找到文件。
.gitignore
浏览文件 @
a780dbf8
...
@@ -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/
CMakeLists.txt
浏览文件 @
a780dbf8
...
@@ -46,7 +46,7 @@ add_executable(vl_test
...
@@ -46,7 +46,7 @@ add_executable(vl_test
${
PROJECT_SOURCE_DIR
}
/visualdl/utils/concurrency.h
${
PROJECT_SOURCE_DIR
}
/visualdl/utils/concurrency.h
${
PROJECT_SOURCE_DIR
}
/visualdl/utils/filesystem.h
${
PROJECT_SOURCE_DIR
}
/visualdl/utils/filesystem.h
)
)
target_link_libraries
(
vl_test sdk storage entry tablet im gtest glog protobuf gflags pthread
)
target_link_libraries
(
vl_test sdk storage entry tablet im gtest glog protobuf gflags pthread
eigen3
)
enable_testing
()
enable_testing
()
...
...
server/build.sh
浏览文件 @
a780dbf8
#!/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
浏览文件 @
a780dbf8
...
@@ -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
浏览文件 @
a780dbf8
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
浏览文件 @
a780dbf8
#!/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
浏览文件 @
a780dbf8
# 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
...
...
server/visualdl/visual_dl.py
浏览文件 @
a780dbf8
...
@@ -50,7 +50,7 @@ server_path = os.path.abspath(os.path.dirname(sys.argv[0]))
...
@@ -50,7 +50,7 @@ server_path = os.path.abspath(os.path.dirname(sys.argv[0]))
static_file_path
=
"./frontend/dist/"
static_file_path
=
"./frontend/dist/"
mock_data_path
=
"./mock_data/"
mock_data_path
=
"./mock_data/"
storage
=
storage
.
LogReader
(
options
.
logdir
)
log_reader
=
storage
.
LogReader
(
options
.
logdir
)
# return data
# return data
...
@@ -87,7 +87,7 @@ def logdir():
...
@@ -87,7 +87,7 @@ def logdir():
@
app
.
route
(
'/data/runs'
)
@
app
.
route
(
'/data/runs'
)
def
runs
():
def
runs
():
result
=
gen_result
(
0
,
""
,
lib
.
get_modes
(
storage
))
result
=
gen_result
(
0
,
""
,
lib
.
get_modes
(
log_reader
))
return
Response
(
json
.
dumps
(
result
),
mimetype
=
'application/json'
)
return
Response
(
json
.
dumps
(
result
),
mimetype
=
'application/json'
)
...
@@ -98,7 +98,7 @@ def scalar_tags():
...
@@ -98,7 +98,7 @@ def scalar_tags():
if
is_debug
:
if
is_debug
:
result
=
mock_tags
.
data
()
result
=
mock_tags
.
data
()
else
:
else
:
result
=
lib
.
get_scalar_tags
(
storage
,
mode
)
result
=
lib
.
get_scalar_tags
(
log_reader
,
mode
)
print
'scalar tags (mode: %s)'
%
mode
,
result
print
'scalar tags (mode: %s)'
%
mode
,
result
result
=
gen_result
(
0
,
""
,
result
)
result
=
gen_result
(
0
,
""
,
result
)
return
Response
(
json
.
dumps
(
result
),
mimetype
=
'application/json'
)
return
Response
(
json
.
dumps
(
result
),
mimetype
=
'application/json'
)
...
@@ -107,7 +107,7 @@ def scalar_tags():
...
@@ -107,7 +107,7 @@ def scalar_tags():
@
app
.
route
(
"/data/plugin/images/tags"
)
@
app
.
route
(
"/data/plugin/images/tags"
)
def
image_tags
():
def
image_tags
():
mode
=
request
.
args
.
get
(
'run'
)
mode
=
request
.
args
.
get
(
'run'
)
result
=
lib
.
get_image_tags
(
storage
)
result
=
lib
.
get_image_tags
(
log_reader
)
print
'image tags (mode: %s)'
%
mode
,
result
print
'image tags (mode: %s)'
%
mode
,
result
result
=
gen_result
(
0
,
""
,
result
)
result
=
gen_result
(
0
,
""
,
result
)
return
Response
(
json
.
dumps
(
result
),
mimetype
=
'application/json'
)
return
Response
(
json
.
dumps
(
result
),
mimetype
=
'application/json'
)
...
@@ -121,7 +121,7 @@ def scalars():
...
@@ -121,7 +121,7 @@ def scalars():
if
is_debug
:
if
is_debug
:
result
=
mock_data
.
sequence_data
()
result
=
mock_data
.
sequence_data
()
else
:
else
:
result
=
lib
.
get_scalar
(
storage
,
run
,
tag
)
result
=
lib
.
get_scalar
(
log_reader
,
run
,
tag
)
result
=
gen_result
(
0
,
""
,
result
)
result
=
gen_result
(
0
,
""
,
result
)
return
Response
(
json
.
dumps
(
result
),
mimetype
=
'application/json'
)
return
Response
(
json
.
dumps
(
result
),
mimetype
=
'application/json'
)
...
@@ -132,7 +132,7 @@ def images():
...
@@ -132,7 +132,7 @@ def images():
mode
=
request
.
args
.
get
(
'run'
)
mode
=
request
.
args
.
get
(
'run'
)
tag
=
request
.
args
.
get
(
'tag'
)
tag
=
request
.
args
.
get
(
'tag'
)
result
=
lib
.
get_image_tag_steps
(
storage
,
mode
,
tag
)
result
=
lib
.
get_image_tag_steps
(
log_reader
,
mode
,
tag
)
result
=
gen_result
(
0
,
""
,
result
)
result
=
gen_result
(
0
,
""
,
result
)
return
Response
(
json
.
dumps
(
result
),
mimetype
=
'application/json'
)
return
Response
(
json
.
dumps
(
result
),
mimetype
=
'application/json'
)
...
@@ -145,7 +145,7 @@ def individual_image():
...
@@ -145,7 +145,7 @@ def individual_image():
step_index
=
int
(
request
.
args
.
get
(
'index'
))
# index of step
step_index
=
int
(
request
.
args
.
get
(
'index'
))
# index of step
offset
=
0
offset
=
0
imagefile
=
lib
.
get_invididual_image
(
storage
,
mode
,
tag
,
step_index
)
imagefile
=
lib
.
get_invididual_image
(
log_reader
,
mode
,
tag
,
step_index
)
response
=
send_file
(
response
=
send_file
(
imagefile
,
as_attachment
=
True
,
attachment_filename
=
'img.png'
)
imagefile
,
as_attachment
=
True
,
attachment_filename
=
'img.png'
)
return
response
return
response
...
...
tests.sh
浏览文件 @
a780dbf8
...
@@ -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
}
}
...
...
visualdl/logic/im.cc
浏览文件 @
a780dbf8
...
@@ -36,6 +36,7 @@ template class SimpleWriteSyncGuard<Entry<float>>;
...
@@ -36,6 +36,7 @@ template class SimpleWriteSyncGuard<Entry<float>>;
template
class
SimpleWriteSyncGuard
<
Entry
<
double
>
>
;
template
class
SimpleWriteSyncGuard
<
Entry
<
double
>
>
;
template
class
SimpleWriteSyncGuard
<
Entry
<
bool
>
>
;
template
class
SimpleWriteSyncGuard
<
Entry
<
bool
>
>
;
template
class
SimpleWriteSyncGuard
<
Entry
<
long
>
>
;
template
class
SimpleWriteSyncGuard
<
Entry
<
long
>
>
;
template
class
SimpleWriteSyncGuard
<
Entry
<
long
long
>
>
;
template
class
SimpleWriteSyncGuard
<
Entry
<
std
::
string
>
>
;
template
class
SimpleWriteSyncGuard
<
Entry
<
std
::
string
>
>
;
template
class
SimpleWriteSyncGuard
<
Entry
<
std
::
vector
<
byte_t
>
>>
;
template
class
SimpleWriteSyncGuard
<
Entry
<
std
::
vector
<
byte_t
>
>>
;
template
class
SimpleWriteSyncGuard
<
Entry
<
int
>
>
;
template
class
SimpleWriteSyncGuard
<
Entry
<
int
>
>
;
...
...
visualdl/logic/sdk.cc
浏览文件 @
a780dbf8
...
@@ -10,7 +10,7 @@ template <typename T>
...
@@ -10,7 +10,7 @@ template <typename T>
std
::
vector
<
T
>
ScalarReader
<
T
>::
records
()
const
{
std
::
vector
<
T
>
ScalarReader
<
T
>::
records
()
const
{
std
::
vector
<
T
>
res
;
std
::
vector
<
T
>
res
;
for
(
int
i
=
0
;
i
<
reader_
.
total_records
();
i
++
)
{
for
(
int
i
=
0
;
i
<
reader_
.
total_records
();
i
++
)
{
res
.
push_back
(
reader_
.
record
(
i
).
data
<
T
>
(
0
).
Get
());
res
.
push_back
(
reader_
.
record
(
i
).
template
data
<
T
>(
0
).
Get
());
}
}
return
res
;
return
res
;
}
}
...
...
visualdl/logic/sdk.h
浏览文件 @
a780dbf8
...
@@ -132,7 +132,7 @@ struct Scalar {
...
@@ -132,7 +132,7 @@ struct Scalar {
record
.
SetId
(
id
);
record
.
SetId
(
id
);
time_t
time
=
std
::
time
(
nullptr
);
time_t
time
=
std
::
time
(
nullptr
);
record
.
SetTimeStamp
(
time
);
record
.
SetTimeStamp
(
time
);
auto
entry
=
record
.
AddData
<
T
>
();
auto
entry
=
record
.
template
AddData
<
T
>();
entry
.
Set
(
value
);
entry
.
Set
(
value
);
}
}
...
...
visualdl/logic/sdk_test.cc
浏览文件 @
a780dbf8
...
@@ -34,7 +34,7 @@ TEST(Scalar, write) {
...
@@ -34,7 +34,7 @@ TEST(Scalar, write) {
ASSERT_TRUE
(
!
reader
.
storage
().
modes
().
empty
());
ASSERT_TRUE
(
!
reader
.
storage
().
modes
().
empty
());
// check tags
// check tags
ASSERT_EQ
(
reader
.
all_tags
().
size
(),
1
);
ASSERT_EQ
(
reader
_
.
all_tags
().
size
(),
1
);
auto
tags
=
reader
.
tags
(
"scalar"
);
auto
tags
=
reader
.
tags
(
"scalar"
);
ASSERT_EQ
(
tags
.
size
(),
2
);
ASSERT_EQ
(
tags
.
size
(),
2
);
ASSERT_EQ
(
tags
.
front
(),
"scalar0"
);
ASSERT_EQ
(
tags
.
front
(),
"scalar0"
);
...
...
visualdl/utils/image.h
浏览文件 @
a780dbf8
...
@@ -67,9 +67,6 @@ static void NormalizeImage(Uint8Image* image,
...
@@ -67,9 +67,6 @@ static void NormalizeImage(Uint8Image* image,
scale
=
(
image_max
<
kZeroThreshold
?
0.0
f
:
255.0
f
)
/
image_max
;
scale
=
(
image_max
<
kZeroThreshold
?
0.0
f
:
255.0
f
)
/
image_max
;
offset
=
0.0
f
;
offset
=
0.0
f
;
}
}
// LOG(INFO) << "scale " << scale;
// Transform image, turning nonfinite values to bad_color
// Transform image, turning nonfinite values to bad_color
for
(
int
i
=
0
;
i
<
depth
;
i
++
)
{
for
(
int
i
=
0
;
i
<
depth
;
i
++
)
{
auto
tmp
=
scale
*
values
.
row
(
i
).
array
()
+
offset
;
auto
tmp
=
scale
*
values
.
row
(
i
).
array
()
+
offset
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录