Skip to content

Commit

Permalink
more reasonable batch reporting intervals
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan Zotti authored and Ryan Zotti committed Sep 4, 2016
1 parent 367ce02 commit bfcb114
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion train_3d_conv_net.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def max_pool_2x2(x):
# creates a new sample every iteration
train_predictors, train_targets = random_windows(data_path, window_size, window_count, hollow_window)

if i%1 == 0:
if i%425 == 0:

# Not sure what these two lines do
run_opts = tf.RunOptions(trace_level=tf.RunOptions.FULL_TRACE)
Expand Down

0 comments on commit bfcb114

Please sign in to comment.