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
865d27eb
Commit
865d27eb
authored
Oct 14, 2020
by
赵威
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
get data
parent
246497ff
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
6 deletions
+11
-6
word_to_vec.py
word_vector/word_to_vec.py
+11
-6
No files found.
word_vector/word_to_vec.py
View file @
865d27eb
...
...
@@ -2,12 +2,17 @@ import os
import
time
from
gensim.models
import
word2vec
from
gm_rpcd.all
import
bind
base_dir
=
os
.
getcwd
()
print
(
"base_dir: "
+
base_dir
)
model_dir
=
os
.
path
.
join
(
base_dir
,
"_models"
)
data_dir
=
os
.
path
.
join
(
base_dir
,
"_data"
)
model_output_name
=
"w2v_model"
model_path
=
os
.
path
.
join
(
model_dir
,
model_output_name
)
WORD2VEC_MODEL
=
word2vec
.
Word2Vec
.
load
(
model_path
)
class
W2vSentences
:
def
__init__
(
self
,
f_name
):
...
...
@@ -29,17 +34,17 @@ def w2v_train(f_name, model_output_name):
w2v_model
.
save
(
model_path
)
@bind
(
"strategy_embedding/word_vector/word_similarity"
)
def
word_similarity
():
pass
if
__name__
==
"__main__"
:
begin_time
=
time
.
time
()
model_output_name
=
"w2v_model"
# w2v_train("dispose_problem.txt", model_output_name)
model_path
=
os
.
path
.
join
(
model_dir
,
model_output_name
)
w2v_model
=
word2vec
.
Word2Vec
.
load
(
model_path
)
for
i
in
[
"双眼皮"
,
"隆鼻"
]:
print
(
w2v_model
.
wv
.
most_similar
(
i
))
print
(
WORD2VEC_MODEL
.
wv
.
most_similar
(
i
))
print
(
"total cost: {:.2f}mins"
.
format
((
time
.
time
()
-
begin_time
)
/
60
))
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