Skip to content

Commit

Permalink
Adds docs
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdsharpe committed Oct 5, 2024
1 parent a964518 commit e287b07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion training/gen2_architecture/train_blind_neural_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def loss_function(y_pred, y_data, return_individual_loss_components=False):

n_batches_per_epoch = len(train_loader)

num_epochs = 100000000
num_epochs = 10 ** 9 # Effectively loop until manually stopped
for epoch in range(num_epochs):
# Put the model in training mode
net.train()
Expand Down

0 comments on commit e287b07

Please sign in to comment.