Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
strategy_embedding
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
strategy_embedding
Commits
65941175
Commit
65941175
authored
Dec 24, 2020
by
赵威
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update viladate
parent
49040396
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
tractate.py
word_vector/tractate.py
+8
-1
No files found.
word_vector/tractate.py
View file @
65941175
...
...
@@ -180,10 +180,17 @@ def validate_tractate_item2vec_by_id(tractate_id, related_tractate_ids):
def
validate_tractate_item2vec
(
tractate_ids
,
n
=
30
):
tractate_ids
=
random
.
sample
(
list
(
tractate_ids
),
n
)
count
=
0
total
=
0
for
tractate_id
in
tractate_ids
:
related_tractate_ids
=
get_tractate_item2vec_by_id
(
tractate_id
,
TRACTATE_CLICK_IDS_MODEL
)
score
=
validate_tractate_item2vec_by_id
(
tractate_id
,
related_tractate_ids
)
if
score
!=
0
:
total
+=
score
count
+=
1
print
(
"{}: {}"
.
format
(
tractate_id
,
score
))
if
total
!=
0
:
print
(
"res: {}/{} avg: {}"
.
format
(
count
,
n
,
total
/
count
))
if
__name__
==
"__main__"
:
...
...
@@ -214,6 +221,6 @@ if __name__ == "__main__":
print
(
"total cost: {:.2f}mins"
.
format
((
time
.
time
()
-
begin_time
)
/
60
))
# validate_tractate_item2vec(TRACTATE_CLICK_IDS, 10)
# validate_tractate_item2vec(TRACTATE_CLICK_IDS, 10
0
)
# spark-submit --master yarn --deploy-mode client --queue root.strategy --driver-memory 16g --executor-memory 1g --executor-cores 1 --num-executors 70 --conf spark.default.parallelism=100 --conf spark.storage.memoryFraction=0.5 --conf spark.shuffle.memoryFraction=0.3 --conf spark.locality.wait=0 --jars /srv/apps/tispark-core-2.1-SNAPSHOT-jar-with-dependencies.jar,/srv/apps/spark-connector_2.11-1.9.0-rc2.jar,/srv/apps/mysql-connector-java-5.1.38.jar /srv/apps/strategy_embedding/word_vector/tractate.py
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