Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
VisualDL
提交
bec06f5d
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看板
未验证
提交
bec06f5d
编写于
9月 03, 2020
作者:
走神的阿圆
提交者:
GitHub
9月 03, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add stat for product (#782)
上级
b5026ee0
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
13 addition
and
3 deletion
+13
-3
visualdl/server/app.py
visualdl/server/app.py
+1
-1
visualdl/server/args.py
visualdl/server/args.py
+8
-0
visualdl/utils/update_util.py
visualdl/utils/update_util.py
+4
-2
未找到文件。
visualdl/server/app.py
浏览文件 @
bec06f5d
...
...
@@ -63,7 +63,7 @@ def create_app(args):
babel
=
Babel
(
app
)
api_call
=
create_api_call
(
args
.
logdir
,
args
.
model
,
args
.
cache_timeout
)
update_util
.
PbUpdater
().
start
()
update_util
.
PbUpdater
(
args
.
product
).
start
()
public_path
=
args
.
public_path
api_path
=
public_path
+
'/api'
...
...
visualdl/server/args.py
浏览文件 @
bec06f5d
...
...
@@ -37,6 +37,7 @@ class DefaultArgs(object):
self
.
api_only
=
args
.
get
(
'api_only'
,
False
)
self
.
open_browser
=
args
.
get
(
'open_browser'
,
False
)
self
.
model
=
args
.
get
(
'model'
,
''
)
self
.
product
=
args
.
get
(
'product'
,
'normal'
)
def
get_host
(
host
=
default_host
,
port
=
default_port
):
...
...
@@ -94,6 +95,7 @@ class ParseArgs(object):
self
.
api_only
=
args
.
api_only
self
.
open_browser
=
args
.
open_browser
self
.
model
=
args
.
model
self
.
product
=
args
.
product
def
parse_args
():
...
...
@@ -172,6 +174,12 @@ def parse_args():
action
=
"version"
,
version
=
"%(prog)s {}"
.
format
(
__version__
)
)
parser
.
add_argument
(
"--product"
,
type
=
str
,
action
=
"store"
,
default
=
"normal"
,
help
=
"specify the product"
)
args
=
parser
.
parse_args
()
...
...
visualdl/utils/update_util.py
浏览文件 @
bec06f5d
...
...
@@ -29,7 +29,8 @@ def md5(text):
class
PbUpdater
(
threading
.
Thread
):
def
__init__
(
self
):
def
__init__
(
self
,
product
=
'normal'
):
self
.
product
=
product
threading
.
Thread
.
__init__
(
self
)
def
update_pb
(
self
,
...
...
@@ -39,7 +40,8 @@ class PbUpdater(threading.Thread):
payload
=
{
"data"
:
{
"version"
:
version
,
"md5"
:
md5_code
"md5"
:
md5_code
,
"product"
:
self
.
product
}
}
url
=
'https://paddlepaddle.org.cn/paddlehub/stat?from=vdl'
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录