Skip to content
Snippets Groups Projects
Commit 713c0ff3 authored by Rishi Sharma's avatar Rishi Sharma
Browse files

Removed extra logging

parent 477bf8fe
No related branches found
No related tags found
No related merge requests found
......@@ -124,12 +124,12 @@ class Training:
epoch_loss = 0.0
count = 0
for data, target in trainset:
logging.info(
logging.debug(
"Starting minibatch {} with num_samples: {}".format(
count, len(data)
)
)
logging.info("Classes: {}".format(target))
logging.debug("Classes: {}".format(target))
epoch_loss += self.trainstep(data, target)
count += 1
logging.info("Epoch: {} loss: {}".format(epoch, epoch_loss / count))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment