Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion examples/mnist-learn/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@ int main(int argc, char** argv)
if (!model_desc_opt.has_value()) return EXIT_FAILURE;
const ModelDescription& model_desc = model_desc_opt.value();

std::cout << "Starting model:\n" << model_desc << std::endl;
std::cout << "Model description:\n"
<< model_desc << "\nPress ENTER to accept parameters and start model." << std::endl;
std::cin.get();
std::cout << "Starting model." << std::endl;

// Starting model according to selected type.
switch (model_desc.type_)
Expand Down
Loading