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
ff32dfca
Commit
ff32dfca
authored
Sep 25, 2020
by
赵威
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
get result
parent
e0f8a405
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
21 deletions
+20
-21
diary_cover_similarity.py
face_similarity/diary_cover_similarity.py
+18
-21
cache.py
utils/cache.py
+2
-0
No files found.
face_similarity/diary_cover_similarity.py
View file @
ff32dfca
...
...
@@ -7,7 +7,7 @@ import dlib
import
faiss
import
numpy
as
np
from
gm_rpcd.all
import
bind
from
utils.cache
import
redis_client3
from
utils.cache
import
redis_client3
,
redis_client_db
from
utils.es
import
es_query
,
es_scan
from
utils.images
import
face_to_vec
,
url_to_ndarray
...
...
@@ -32,7 +32,8 @@ def hello():
return
[
"hello"
,
"world"
]
def
save_diary_image_info
(
save_file
):
# curl "http://172.16.31.17:9200/gm-dbmw-diary/_search?pretty&size=0" -d '
def
save_diary_image_info
():
q
=
{
"query"
:
{
"bool"
:
{
...
...
@@ -76,25 +77,21 @@ def save_diary_image_info(save_file):
}
}
count
=
0
res_dict
=
{}
results
=
es_scan
(
"diary"
,
q
)
with
open
(
save_file
,
"w"
)
as
f
:
for
item
in
results
:
count
+=
1
print
(
item
[
"_id"
],
item
[
"_source"
][
"after_cover_url"
]
+
"-w"
,
+
str
(
count
))
# res_dict = es_query("diary", q, offset=0, size=200000)
# for item in res_dict["hits"]["hits"]:
# diary_id = item["_source"]["id"]
# # before_cover_url = item["_source"]["before_cover_url"] + "-w"
# 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:
# line = str(diary_id) + "\t" + face["feature"] + "\n"
# # print(line)
# f.write(line)
for
item
in
results
:
if
count
<=
15
:
diary_id
=
item
[
"_id"
]
# before_cover_url = item["_source"]["before_cover_url"] + "-w"
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
:
res_dict
[
diary_id
]
=
face
[
"feature"
]
print
(
res_dict
)
def
save_faiss_index
(
load_file
,
save_path
):
...
...
@@ -182,7 +179,7 @@ def get_similar_diary_ids_by_face_features(feature, limit=0.1):
def
main
():
save_diary_image_info
(
diary_after_cover_vec_file
)
save_diary_image_info
()
# save_faiss_index(diary_after_cover_vec_file, faiss_index_path)
# imgs = [
...
...
utils/cache.py
View file @
ff32dfca
...
...
@@ -4,3 +4,5 @@ redis_client = redis.StrictRedis.from_url("redis://:ReDis!GmTx*0aN6@172.16.40.13
redis_client2
=
redis
.
StrictRedis
.
from_url
(
"redis://:ReDis!GmTx*0aN9@172.16.40.173:6379"
)
redis_client3
=
redis
.
StrictRedis
.
from_url
(
"redis://:ReDis!GmTx*0aN12@172.16.40.164:6379"
)
redis_client4
=
redis
.
StrictRedis
.
from_url
(
"redis://:XfkMCCdWDIU
%
ls$h@172.16.50.145:6379"
)
redis_client_db
=
redis
.
StrictRedis
.
from_url
(
"redis://:ReDis!GmTx*0aN14@172.16.40.146:6379"
)
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