Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
F
ffm-baseline
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ML
ffm-baseline
Commits
42d5c9c1
Commit
42d5c9c1
authored
Oct 17, 2018
by
高雅喆
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add coverage_rate
parent
fc2d72f5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
node2vec_ctr.py
eda/gray_stat/node2vec_ctr.py
+2
-1
No files found.
eda/gray_stat/node2vec_ctr.py
View file @
42d5c9c1
...
@@ -116,8 +116,9 @@ def main():
...
@@ -116,8 +116,9 @@ def main():
g_ctr
=
g_class
.
get_uid_clk_times
()
/
g_class
.
get_uid_imp_times
()
g_ctr
=
g_class
.
get_uid_clk_times
()
/
g_class
.
get_uid_imp_times
()
a_ctr
=
a_class
.
get_uid_clk_times
()
/
a_class
.
get_uid_imp_times
()
a_ctr
=
a_class
.
get_uid_clk_times
()
/
a_class
.
get_uid_imp_times
()
growth_rate
=
(
g_ctr
-
a_ctr
)
/
a_ctr
growth_rate
=
(
g_ctr
-
a_ctr
)
/
a_ctr
coverage_rate
=
g_class
.
get_uid_count
()
/
a_class
.
get_uid_count
()
line
=
get_yesterday_date
()
+
","
+
str
(
round
(
g_ctr
*
100
,
2
))
+
'
%
'
+
","
+
str
(
round
(
a_ctr
*
100
,
2
))
+
'
%
'
+
","
+
\
line
=
get_yesterday_date
()
+
","
+
str
(
round
(
g_ctr
*
100
,
2
))
+
'
%
'
+
","
+
str
(
round
(
a_ctr
*
100
,
2
))
+
'
%
'
+
","
+
\
str
(
round
(
growth_rate
*
100
,
2
))
+
'
%
'
+
","
+
line1
+
","
+
line2
+
"
\n
"
str
(
round
(
growth_rate
*
100
,
2
))
+
'
%
'
+
","
+
line1
+
","
+
line2
+
"
,"
+
str
(
round
(
coverage_rate
*
100
,
2
))
+
"
%
"
+
"
\n
"
f
.
write
(
line
)
f
.
write
(
line
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment