Commit 0713f4c7 authored by 宋柯's avatar 宋柯

模型调试

parent 71064fbb
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment