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
d583afd3
Commit
d583afd3
authored
Jan 15, 2019
by
张彦钊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pandas 映射
parent
f406c2a4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
feature_engineering.py
tensnsorflow/feature_engineering.py
+8
-0
test.py
tensnsorflow/test.py
+1
-0
No files found.
tensnsorflow/feature_engineering.py
View file @
d583afd3
...
...
@@ -65,6 +65,11 @@ def get_data():
train
[
i
]
=
train
[
i
]
.
map
(
value_map
)
test
[
i
]
=
test
[
i
]
.
map
(
value_map
)
print
(
"train shape"
)
print
(
train
.
shape
)
print
(
"test shape"
)
print
(
test
.
shape
)
train
.
to_csv
(
path
+
"tr.csv"
,
index
=
False
)
test
.
to_csv
(
path
+
"va.csv"
,
index
=
False
)
...
...
@@ -86,6 +91,9 @@ def get_predict(date,value_map):
df
[
"stat_date"
]
=
date
print
(
"predict shape"
)
print
(
df
.
shape
)
features
=
[
"ucity_id"
,
"clevel1_id"
,
"ccity_name"
,
"device_type"
,
"manufacturer"
,
"channel"
,
"top"
,
"level2_ids"
,
"time"
,
"stat_date"
]
for
i
in
features
:
...
...
tensnsorflow/test.py
View file @
d583afd3
...
...
@@ -26,6 +26,7 @@ def gen_tfrecords(in_file):
out_file
=
os
.
path
.
join
(
FLAGS
.
output_dir
,
basename
)
tfrecord_out
=
tf
.
python_io
.
TFRecordWriter
(
out_file
)
df
=
pd
.
read_csv
(
in_file
)
print
(
df
.
head
(
2
))
for
i
in
range
(
df
.
shape
[
0
]):
features
=
tf
.
train
.
Features
(
feature
=
{
...
...
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