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
3cc3b0ca
Commit
3cc3b0ca
authored
Nov 24, 2020
by
赵威
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add diary
parent
279f2323
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
109 additions
and
62 deletions
+109
-62
answer_similarity.py
doc_similarity/answer_similarity.py
+1
-1
diary_similarity.py
doc_similarity/diary_similarity.py
+63
-0
es.py
utils/es.py
+45
-61
No files found.
doc_similarity/answer_similarity.py
View file @
3cc3b0ca
...
@@ -9,7 +9,7 @@ import faiss
...
@@ -9,7 +9,7 @@ import faiss
import
numpy
as
np
import
numpy
as
np
from
bert_serving.client
import
BertClient
from
bert_serving.client
import
BertClient
from
utils.cache
import
redis_client_db
from
utils.cache
import
redis_client_db
from
utils.es
import
es_scan
,
get_answer_info_from_es
from
utils.es
import
get_answer_info_from_es
from
utils.files
import
MODEL_PATH
from
utils.files
import
MODEL_PATH
...
...
doc_similarity/diary_similarity.py
0 → 100644
View file @
3cc3b0ca
import
json
import
os
import
random
import
sys
sys
.
path
.
append
(
os
.
path
.
realpath
(
"."
))
import
faiss
import
numpy
as
np
from
bert_serving.client
import
BertClient
from
utils.cache
import
redis_client_db
from
utils.es
import
get_diary_info_from_es
from
utils.files
import
MODEL_PATH
if
__name__
==
"__main__"
:
bc
=
BertClient
(
"172.16.44.82"
,
check_length
=
False
)
level_dict
=
{
"6"
:
[],
"5"
:
[],
"4"
:
[],
"3.5"
:
[],
"3"
:
[]}
count
=
0
embedding_dict
=
{}
for
item
in
get_diary_info_from_es
([
"id"
,
"answer"
,
"content_level"
]):
count
+=
1
if
count
<
1000
:
id
=
int
(
item
[
"_id"
])
print
(
count
,
id
)
content
=
item
[
"_source"
][
"answer"
]
content_level
=
str
(
item
[
"_source"
][
"content_level"
])
level_dict
[
content_level
]
.
append
(
id
)
embedding_dict
[
id
]
=
bc
.
encode
([
content
])
.
tolist
()[
0
]
# redis_client_db.hmset("diary:level_dict", json.dumps(level_dict))
tmp_tuple
=
random
.
choice
(
list
(
embedding_dict
.
items
()))
print
(
tmp_tuple
)
diary_ids
=
np
.
array
(
list
(
embedding_dict
.
keys
()))
.
astype
(
"int"
)
diary_embeddings
=
np
.
array
(
list
(
embedding_dict
.
values
()))
.
astype
(
"float32"
)
print
(
diary_embeddings
.
shape
)
index
=
faiss
.
IndexFlatL2
(
diary_embeddings
.
shape
[
1
])
print
(
"trained: "
+
str
(
index
.
is_trained
))
index2
=
faiss
.
IndexIDMap
(
index
)
index2
.
add_with_ids
(
diary_embeddings
,
diary_ids
)
print
(
"trained: "
+
str
(
index2
.
is_trained
))
print
(
"total index: "
+
str
(
index2
.
ntotal
))
# index_path = os.path.join(MODEL_PATH, "faiss_diary_similarity.index")
# faiss.write_index(index2, index_path)
# print(index_path)
id
=
tmp_tuple
[
0
]
emb
=
np
.
array
([
embedding_dict
[
id
]])
.
astype
(
"float32"
)
print
(
emb
)
D
,
I
=
index2
.
search
(
emb
,
10
)
distances
=
D
.
tolist
()[
0
]
ids
=
I
.
tolist
()[
0
]
res
=
[]
for
(
index
,
i
)
in
enumerate
(
distances
):
if
i
<=
0.5
:
res
.
append
(
ids
[
index
])
print
(
res
,
"
\n
"
)
print
(
ids
,
"
\n
"
)
print
(
D
)
utils/es.py
View file @
3cc3b0ca
...
@@ -109,64 +109,48 @@ def get_answer_info_from_es(fields=["id"]):
...
@@ -109,64 +109,48 @@ def get_answer_info_from_es(fields=["id"]):
return
results
return
results
# def save_diary_info_from_es():
def
get_diary_info_from_es
(
fields
=
[
"id"
]):
# q = {
q
=
{
# "query": {
"query"
:
{
# "bool": {
"bool"
:
{
# "filter": [{
"filter"
:
[{
# "term": {
"term"
:
{
# "is_online": True
"is_online"
:
True
# }
}
# }, {
},
{
# "term": {
"term"
:
{
# "has_cover": True
"has_cover"
:
True
# }
}
# }, {
},
{
# "term": {
"term"
:
{
# "is_sink": False
"is_sink"
:
False
# }
}
# }, {
},
{
# "term": {
"term"
:
{
# "has_before_cover": True
"has_before_cover"
:
True
# }
}
# }, {
},
{
# "term": {
"term"
:
{
# "has_after_cover": True
"has_after_cover"
:
True
# }
}
# }, {
},
{
# "terms": {
"terms"
:
{
# "content_level": [6, 5, 4, 3.5, 3]
"content_level"
:
[
6
,
5
,
4
,
3.5
,
3
]
# }
}
# }, {
},
{
# "term": {
"term"
:
{
# "content_simi_bol_show": 0
"content_simi_bol_show"
:
0
# }
}
# }, {
},
{
# "exists": {
"exists"
:
{
# "field": "before_cover_url"
"field"
:
"before_cover_url"
# }
}
# }]
}]
# }
}
# },
},
# "_source": {
"_source"
:
{
# "include": ["id"]
"include"
:
fields
# }
}
# }
}
# count = 0
results
=
es_scan
(
"diary"
,
q
)
# # before_res_dict = {}
return
results
# after_res_dict = {}
# results = es_scan("diary", q)
# for item in results:
# diary_id = item["_id"]
# # before_cover_url = item["_source"]["before_cover_url"] + "-w"
# # before_img = url_to_ndarray(before_cover_url)
# after_cover_url = item["_source"]["after_cover_url"] + "-w"
# img = url_to_ndarray(after_cover_url)
# if img.any():
# count += 1
# print("count: " + str(count) + " " + str(diary_id))
# faces = FACE_TO_VEC_FUN(img)
# for face in faces:
# after_res_dict[diary_id] = face["feature"]
# redis_client_db.hmset(DIARY_AFTER_COVER_FEATURE_KEY, after_res_dict)
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