Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
gm_strategy_cvr
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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rank
gm_strategy_cvr
Commits
ecc5c559
Commit
ecc5c559
authored
Jul 21, 2020
by
赵威
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update timer
parent
3268d3e7
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
3 deletions
+18
-3
main.py
src/main.py
+16
-1
model.py
src/models/esmm/model.py
+2
-2
No files found.
src/main.py
View file @
ecc5c559
...
@@ -47,11 +47,26 @@ def main():
...
@@ -47,11 +47,26 @@ def main():
# print(next(iter(predictions)))
# print(next(iter(predictions)))
test_300
=
test_df
.
sample
(
300
)
test_300
=
test_df
.
sample
(
300
)
test_300_2
=
test_df
.
sample
(
300
)
test_300_3
=
test_df
.
sample
(
300
)
predict_fn
=
tf
.
contrib
.
predictor
.
from_saved_model
(
save_path
)
time_1
=
timeit
.
default_timer
()
time_1
=
timeit
.
default_timer
()
model_predict
(
test_300
,
save_path
)
model_predict
(
test_300
,
predict_fn
)
total_1
=
(
timeit
.
default_timer
()
-
time_1
)
total_1
=
(
timeit
.
default_timer
()
-
time_1
)
print
(
"prediction cost {:.5f} s"
.
format
(
total_1
))
print
(
"prediction cost {:.5f} s"
.
format
(
total_1
))
time_2
=
timeit
.
default_timer
()
model_predict
(
test_300_2
,
predict_fn
)
total_2
=
(
timeit
.
default_timer
()
-
time_2
)
print
(
"prediction cost {:.5f} s"
.
format
(
total_2
))
time_3
=
timeit
.
default_timer
()
model_predict
(
test_300_3
,
predict_fn
)
total_3
=
(
timeit
.
default_timer
()
-
time_3
)
print
(
"prediction cost {:.5f} s"
.
format
(
total_3
))
total_time
=
(
time
.
time
()
-
time_begin
)
/
60
total_time
=
(
time
.
time
()
-
time_begin
)
/
60
print
(
"cost {:.2f} mins at {}"
.
format
(
total_time
,
datetime
.
now
()))
print
(
"cost {:.2f} mins at {}"
.
format
(
total_time
,
datetime
.
now
()))
...
...
src/models/esmm/model.py
View file @
ecc5c559
...
@@ -89,8 +89,8 @@ def _bytes_feature(value):
...
@@ -89,8 +89,8 @@ def _bytes_feature(value):
return
tf
.
train
.
Feature
(
bytes_list
=
tf
.
train
.
BytesList
(
value
=
[
value
]))
return
tf
.
train
.
Feature
(
bytes_list
=
tf
.
train
.
BytesList
(
value
=
[
value
]))
def
model_predict
(
inputs
,
model_path
):
def
model_predict
(
inputs
,
predict_fn
):
predict_fn
=
tf
.
contrib
.
predictor
.
from_saved_model
(
model_path
)
int_columns
=
[
int_columns
=
[
"active_type"
,
"active_days"
,
"card_id"
,
"is_pure_author"
,
"is_have_reply"
,
"is_have_pure_reply"
,
"content_level"
,
"active_type"
,
"active_days"
,
"card_id"
,
"is_pure_author"
,
"is_have_reply"
,
"is_have_pure_reply"
,
"content_level"
,
"topic_num"
,
"favor_num"
,
"vote_num"
"topic_num"
,
"favor_num"
,
"vote_num"
...
...
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