Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
F
ffm-baseline
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ML
ffm-baseline
Commits
14c098f2
Commit
14c098f2
authored
Jan 17, 2019
by
张彦钊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改模型嵌入层
parent
d981e8a1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
26 deletions
+14
-26
train.py
tensnsorflow/train.py
+14
-26
No files found.
tensnsorflow/train.py
View file @
14c098f2
...
...
@@ -98,19 +98,18 @@ def model_fn(features, labels, mode, params):
#------bulid weights------
Feat_Emb
=
tf
.
get_variable
(
name
=
'embeddings'
,
shape
=
[
feature_size
,
embedding_size
],
initializer
=
tf
.
glorot_normal_initializer
())
#------build feaure-------
#{U-A-X-C不需要特殊处理的特征}
feat_ids
=
features
[
'ids'
]
ucity_id
=
features
[
'ucity_id'
]
clevel1_id
=
features
[
'clevel1_id'
]
ccity_name
=
features
[
'ccity_name'
]
device_type
=
features
[
'device_type'
]
manufacturer
=
features
[
'manufacturer'
]
channel
=
features
[
'channel'
]
top
=
features
[
'top'
]
level2_ids
=
features
[
'level2_ids'
]
time
=
features
[
'time'
]
stat_date
=
features
[
'stat_date'
]
#
ucity_id = features['ucity_id']
#
clevel1_id = features['clevel1_id']
#
ccity_name = features['ccity_name']
#
device_type = features['device_type']
#
manufacturer = features['manufacturer']
#
channel = features['channel']
#
top = features['top']
#
level2_ids = features['level2_ids']
#
time = features['time']
#
stat_date = features['stat_date']
if
FLAGS
.
task_type
!=
"infer"
:
...
...
@@ -119,20 +118,9 @@ def model_fn(features, labels, mode, params):
#------build f(x)------
with
tf
.
variable_scope
(
"Shared-Embedding-layer"
):
ucity_id
=
tf
.
nn
.
embedding_lookup
(
Feat_Emb
,
ucity_id
)
clevel1_id
=
tf
.
nn
.
embedding_lookup
(
Feat_Emb
,
clevel1_id
)
ccity_name
=
tf
.
nn
.
embedding_lookup
(
Feat_Emb
,
ccity_name
)
device_type
=
tf
.
nn
.
embedding_lookup
(
Feat_Emb
,
device_type
)
manufacturer
=
tf
.
nn
.
embedding_lookup
(
Feat_Emb
,
manufacturer
)
channel
=
tf
.
nn
.
embedding_lookup
(
Feat_Emb
,
channel
)
top
=
tf
.
nn
.
embedding_lookup
(
Feat_Emb
,
top
)
level2_ids
=
tf
.
nn
.
embedding_lookup
(
Feat_Emb
,
level2_ids
)
time
=
tf
.
nn
.
embedding_lookup
(
Feat_Emb
,
time
)
stat_date
=
tf
.
nn
.
embedding_lookup
(
Feat_Emb
,
stat_date
)
x_concat
=
tf
.
concat
([
ucity_id
,
clevel1_id
,
ccity_name
,
device_type
,
manufacturer
,
channel
,
top
,
level2_ids
,
time
,
stat_date
],
axis
=
1
)
# None * (F * K)
embedding_id
=
tf
.
nn
.
embedding_lookup
(
Feat_Emb
,
feat_ids
)
x_concat
=
tf
.
concat
(
tf
.
reshape
(
embedding_id
,
shape
=
[
-
1
,
common_dims
],
axis
=
1
))
# None * (F * K)
with
tf
.
name_scope
(
"CVR_Task"
):
if
mode
==
tf
.
estimator
.
ModeKeys
.
TRAIN
:
...
...
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