From 4b054ac9ccf22b2eb87641e0cb1784bc92663777 Mon Sep 17 00:00:00 2001 From: Přemysl Eric Janouch Date: Sat, 20 Jan 2024 18:00:28 +0100 Subject: deeptagger: swap columns to match 'galery tag' --- deeptagger/deeptagger.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'deeptagger') diff --git a/deeptagger/deeptagger.cpp b/deeptagger/deeptagger.cpp index 4e8f61e..27b0a91 100644 --- a/deeptagger/deeptagger.cpp +++ b/deeptagger/deeptagger.cpp @@ -309,8 +309,8 @@ run(std::vector &images, const Config &config, if (config.sigmoid) value = 1 / (1 + std::exp(-value)); if (value > g.threshold) { - printf("%s\t%.2f\t%s\n", images.at(i).fileName().c_str(), - value, config.tags.at(t).c_str()); + printf("%s\t%s\t%.2f\n", images.at(i).fileName().c_str(), + config.tags.at(t).c_str(), value); } } } -- cgit v1.2.3-70-g09d2