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
0713f4c7
Commit
0713f4c7
authored
3 years ago
by
宋柯
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
模型调试
parent
71064fbb
master
No related merge requests found
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
train_service_sk_tfrecord.py
train/train_service_sk_tfrecord.py
+3
-3
No files found.
train/train_service_sk_tfrecord.py
View file @
0713f4c7
...
...
@@ -7,7 +7,7 @@ os.environ['TF_FORCE_GPU_ALLOW_GROWTH'] = 'true'
BASE_DIR
=
'/data/files/wideAndDeep/'
def
input_fn
(
csv_path
,
epoch
,
shuffle
,
batch_size
):
dataset
=
tf
.
data
.
TFRecordDataset
(
csv_path
,
buffer_size
=
1024
,
num_parallel_reads
=
2
)
dataset
=
tf
.
data
.
TFRecordDataset
(
csv_path
)
dics
=
{
'ITEM_CATEGORY_card_id'
:
tf
.
FixedLenFeature
((),
tf
.
string
,
default_value
=
'-1'
),
...
...
@@ -105,9 +105,9 @@ def input_fn(csv_path, epoch, shuffle, batch_size):
dataset
=
dataset
.
padded_batch
(
batch_size
,
padded_shapes
,
padding_values
=
padding_values
)
dataset
.
prefetch
(
tf
.
data
.
experimental
.
AUTOTUNE
)
dataset
=
dataset
.
repeat
(
epoch
)
dataset
.
repeat
(
epoch
)
dataset
=
dataset
.
prefetch
(
tf
.
data
.
experimental
.
AUTOTUNE
)
return
dataset
...
...
This diff is collapsed.
Click to expand it.
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