Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
S
serviceRec
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
郭羽
serviceRec
Commits
66f1efca
Commit
66f1efca
authored
Jul 26, 2021
by
郭羽
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
service embedding
parent
35f1f8a0
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
17 deletions
+8
-17
embedding.py
embedding/embedding.py
+0
-0
train_service.py
train/train_service.py
+0
-16
connUtils.py
utils/connUtils.py
+8
-1
No files found.
embedding/embedding.py
View file @
66f1efca
This diff is collapsed.
Click to expand it.
train/train_service.py
View file @
66f1efca
...
...
@@ -8,7 +8,6 @@ from datetime import date, timedelta
sys
.
path
.
append
(
os
.
path
.
dirname
(
os
.
path
.
abspath
(
os
.
path
.
dirname
(
__file__
))))
import
utils.connUtils
as
connUtils
import
utils.configUtils
as
configUtils
ITEM_NUMBER_COLUMNS
=
[
"item_"
+
c
for
c
in
[
"smart_rank2"
]]
...
...
@@ -34,21 +33,6 @@ def is_float(s):
except
ValueError
:
return
False
#数据字典
def
getDataVocabFromRedis
(
version
):
conn
=
connUtils
.
getRedisConn
()
key
=
"Strategy:rec:vocab:service:"
+
version
dataVocabStr
=
conn
.
get
(
key
)
if
dataVocabStr
:
dataVocab
=
json
.
loads
(
str
(
dataVocabStr
,
encoding
=
"utf-8"
),
encoding
=
'utf-8'
)
print
(
"-----data_vocab-----"
)
for
k
,
v
in
dataVocab
.
items
():
print
(
k
,
len
(
v
))
else
:
dataVocab
=
None
return
dataVocab
# 数据类型转换
def
csvTypeConvert
(
columns
,
df
,
data_vocab
):
df
[
"label"
]
=
df
[
"label"
]
.
astype
(
"int"
)
...
...
utils/connUtils.py
View file @
66f1efca
import
redis
def
getRedisConn
():
def
getRedisConn
4
():
pool
=
redis
.
ConnectionPool
(
host
=
"172.16.50.145"
,
password
=
"XfkMCCdWDIU
%
ls$h"
,
port
=
6379
,
db
=
0
)
conn
=
redis
.
Redis
(
connection_pool
=
pool
)
# conn = redis.Redis(host="172.16.50.145", port=6379, password="XfkMCCdWDIU%ls$h",db=0)
# conn = redis.Redis(host="172.18.51.10", port=6379,db=0) #test
return
conn
def
getRedisConn
():
pool
=
redis
.
ConnectionPool
(
host
=
"172.16.40.133"
,
password
=
"ReDis!GmTx*0aN6"
,
port
=
6379
,
db
=
0
)
conn
=
redis
.
Redis
(
connection_pool
=
pool
)
# conn = redis.Redis(host="172.16.50.145", port=6379, password="XfkMCCdWDIU%ls$h",db=0)
# conn = redis.Redis(host="172.18.51.10", port=6379,db=0) #test
return
conn
if
__name__
==
'__main__'
:
# REDIS_URL = 'redis://:@172.18.51.10: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