Skip to content

Commit 19f8e15

Browse files
committed
Rename labels
1 parent ed4ba31 commit 19f8e15

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/imatrix/imatrix.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ static bool show_statistics(const common_params & params) {
746746
std::map<int, weighted_stats> ws;
747747

748748
LOG_INF("\nComputing statistics for %s (%d tensors)\n", params.in_files[0].c_str(), static_cast<int>(ts.size()));
749-
LOG_INF("\n%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\n", " Layer", " Tensor", " Σ(Bias)",
749+
LOG_INF("\n%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\t%s\n", " Layer", " Tensor", " Σ(Act²)",
750750
" Min", " Max", " μ", " σ", " % Active", "N", " Entropy", "E (norm)", "ZD",
751751
" CosSim");
752752
LOG_INF(
@@ -789,7 +789,7 @@ static bool show_statistics(const common_params & params) {
789789

790790
const int layers = std::count_if(ws.begin(), ws.end(), [](const auto & kv) { return kv.first >= 0; });
791791
LOG_INF("\nComputing weighted average statistics per layer (%d layers)\n", layers);
792-
LOG_INF("\n%s\t%s\t%s\t%s\n", " Layer", " μΣ(Bias)", " μZD", "μCosSim");
792+
LOG_INF("\n%s\t%s\t%s\t%s\n", " Layer", " μΣ(Act²)", " μZD", "μCosSim");
793793
LOG_INF("===============================================\n");
794794
for (const auto & [first, second] : ws) {
795795
const auto & layer = first;

0 commit comments

Comments
 (0)