Skip to content

Commit 3dd0313

Browse files
authored
train on 3 epochs for pipe mode test (#64)
1 parent e7a60f6 commit 3dd0313

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/resources/synthetic/synthetic_pipe_mode_dataset.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
BATCH_SIZE = 64
88
NUM_PARALLEL_BATCHES = 2
99
DIMENSION = 1024
10-
EPOCHS = 1
10+
EPOCHS = 3
1111

1212
def estimator_fn(run_config, params):
1313
column = tf.feature_column.numeric_column('data', shape=(DIMENSION, ))
@@ -41,4 +41,4 @@ def parse(record):
4141
ds = ds.apply(map_and_batch(parse, batch_size=BATCH_SIZE,
4242
num_parallel_batches=NUM_PARALLEL_BATCHES))
4343

44-
return ds
44+
return ds

0 commit comments

Comments
 (0)