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
f8f8ef62
Commit
f8f8ef62
authored
Jan 16, 2019
by
张彦钊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改字典生成方式
parent
0fe6bc5d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
12 deletions
+4
-12
pipe.sh
tensnsorflow/pipe.sh
+0
-8
test.py
tensnsorflow/test.py
+2
-2
train.py
tensnsorflow/train.py
+2
-2
No files found.
tensnsorflow/pipe.sh
View file @
f8f8ef62
...
@@ -43,12 +43,4 @@ ${PYTHON_PATH} ${MODEL_PATH}/train.py --ctr_task_wgt=0.3 --learning_rate=0.0001
...
@@ -43,12 +43,4 @@ ${PYTHON_PATH} ${MODEL_PATH}/train.py --ctr_task_wgt=0.3 --learning_rate=0.0001
echo
"infer nearby..."
echo
"infer nearby..."
${
PYTHON_PATH
}
${
MODEL_PATH
}
/train.py
--ctr_task_wgt
=
0.3
--learning_rate
=
0.0001
--deep_layers
=
256,128
--dropout
=
0.8,0.5
--optimizer
=
Adam
--num_epochs
=
1
--embedding_size
=
16
--batch_size
=
1024
--field_size
=
10
--feature_size
=
2000
--l2_reg
=
0.005
--log_steps
=
100
--num_threads
=
36
--model_dir
=
${
DATA_PATH
}
/model_ckpt/DeepCvrMTL/
--data_dir
=
${
DATA_PATH
}
/nearby
--task_type
=
infer
>
${
DATA_PATH
}
/infer.log
${
PYTHON_PATH
}
${
MODEL_PATH
}
/train.py
--ctr_task_wgt
=
0.3
--learning_rate
=
0.0001
--deep_layers
=
256,128
--dropout
=
0.8,0.5
--optimizer
=
Adam
--num_epochs
=
1
--embedding_size
=
16
--batch_size
=
1024
--field_size
=
10
--feature_size
=
2000
--l2_reg
=
0.005
--log_steps
=
100
--num_threads
=
36
--model_dir
=
${
DATA_PATH
}
/model_ckpt/DeepCvrMTL/
--data_dir
=
${
DATA_PATH
}
/nearby
--task_type
=
infer
>
${
DATA_PATH
}
/infer.log
echo
"sort and 2sql"
${
PYTHON_PATH
}
${
OLD_PATH
}
/Model_pipline/sort_and_2sql.py
echo
"infer and sort and 2sql time"
current
=
$(
date
"+%Y-%m-%d %H:%M:%S"
)
timeStamp
=
$(
date
-d
"
$current
"
+%s
)
currentTimeStamp
=
$((
timeStamp
*
1000
+
`
date
"+%N"
`
/
1000000
))
echo
$current
tensnsorflow/test.py
View file @
f8f8ef62
...
@@ -29,8 +29,8 @@ def gen_tfrecords(in_file):
...
@@ -29,8 +29,8 @@ def gen_tfrecords(in_file):
for
i
in
range
(
df
.
shape
[
0
]):
for
i
in
range
(
df
.
shape
[
0
]):
features
=
tf
.
train
.
Features
(
feature
=
{
features
=
tf
.
train
.
Features
(
feature
=
{
"y"
:
tf
.
train
.
Feature
(
int64_list
=
tf
.
train
.
Int64
List
(
value
=
[
df
[
"y"
][
i
]])),
"y"
:
tf
.
train
.
Feature
(
float_list
=
tf
.
train
.
Float
List
(
value
=
[
df
[
"y"
][
i
]])),
"z"
:
tf
.
train
.
Feature
(
int64_list
=
tf
.
train
.
Int64
List
(
value
=
[
df
[
"z"
][
i
]])),
"z"
:
tf
.
train
.
Feature
(
float_list
=
tf
.
train
.
Float
List
(
value
=
[
df
[
"z"
][
i
]])),
"top"
:
tf
.
train
.
Feature
(
int64_list
=
tf
.
train
.
Int64List
(
value
=
[
df
[
"top"
][
i
]])),
"top"
:
tf
.
train
.
Feature
(
int64_list
=
tf
.
train
.
Int64List
(
value
=
[
df
[
"top"
][
i
]])),
"channel"
:
tf
.
train
.
Feature
(
int64_list
=
tf
.
train
.
Int64List
(
value
=
[
df
[
"channel"
][
i
]])),
"channel"
:
tf
.
train
.
Feature
(
int64_list
=
tf
.
train
.
Int64List
(
value
=
[
df
[
"channel"
][
i
]])),
"ucity_id"
:
tf
.
train
.
Feature
(
int64_list
=
tf
.
train
.
Int64List
(
value
=
[
df
[
"ucity_id"
][
i
]])),
"ucity_id"
:
tf
.
train
.
Feature
(
int64_list
=
tf
.
train
.
Int64List
(
value
=
[
df
[
"ucity_id"
][
i
]])),
...
...
tensnsorflow/train.py
View file @
f8f8ef62
...
@@ -51,8 +51,8 @@ def input_fn(filenames, batch_size=32, num_epochs=1, perform_shuffle=False):
...
@@ -51,8 +51,8 @@ def input_fn(filenames, batch_size=32, num_epochs=1, perform_shuffle=False):
print
(
'Parsing'
,
filenames
)
print
(
'Parsing'
,
filenames
)
def
_parse_fn
(
record
):
def
_parse_fn
(
record
):
features
=
{
features
=
{
"y"
:
tf
.
FixedLenFeature
([],
tf
.
int64
),
"y"
:
tf
.
FixedLenFeature
([],
tf
.
float32
),
"z"
:
tf
.
FixedLenFeature
([],
tf
.
int64
),
"z"
:
tf
.
FixedLenFeature
([],
tf
.
float32
),
"top"
:
tf
.
FixedLenFeature
([],
tf
.
int64
),
"top"
:
tf
.
FixedLenFeature
([],
tf
.
int64
),
"channel"
:
tf
.
FixedLenFeature
([],
tf
.
int64
),
"channel"
:
tf
.
FixedLenFeature
([],
tf
.
int64
),
"ucity_id"
:
tf
.
FixedLenFeature
([],
tf
.
int64
),
"ucity_id"
:
tf
.
FixedLenFeature
([],
tf
.
int64
),
...
...
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