Skip to content

Commit

Permalink
network: slightly nicer print at start of fitting
Browse files Browse the repository at this point in the history
  • Loading branch information
MSallermann committed Oct 30, 2023
1 parent a2dd784 commit 608d000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/network.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class Network
}

fmt::print(
"Fitting with n_samples = {}, input_size = {}, batch_size = {}\n\n", n_samples, input_size, batch_size );
"Fitting with {} samples of batchsize {} ({} total)\n\n", n_samples, batch_size, n_samples * batch_size );

auto t_fit_start = std::chrono::high_resolution_clock::now();

Expand Down

0 comments on commit 608d000

Please sign in to comment.