Unverified Commit 736b4931 authored by Adrià Arrufat's avatar Adrià Arrufat Committed by GitHub
Browse files

Fix formatting in YOLO deserialize error message (#2535)

parent 1f9f32ca
...@@ -3906,7 +3906,7 @@ namespace dlib ...@@ -3906,7 +3906,7 @@ namespace dlib
if (count != tag_count()) if (count != tag_count())
throw serialization_error("Invalid number of detection tags " + std::to_string(count) + throw serialization_error("Invalid number of detection tags " + std::to_string(count) +
", while deserializing dlib::loss_yolo_, expecting " + ", while deserializing dlib::loss_yolo_, expecting " +
std::to_string(tag_count()) + "tags instead."); std::to_string(tag_count()) + " tags instead.");
deserialize(item.options, in); deserialize(item.options, in);
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment