Skip to content

Commit 5cfc443

Browse files
committed
Update report title
1 parent bfc0dfc commit 5cfc443

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

tools/imatrix/imatrix.cpp

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ struct tensor_statistics {
4141
std::string tensor;
4242
Stats stats;
4343
float total_bias = 0;
44-
float mean_bias = 0;
45-
float max_bias = 0;
46-
float min_bias = 0;
47-
int elements = 0;
48-
float stddev = 0;
49-
float active = 0;
50-
float entropy = 0;
51-
float zd = 0;
52-
float cossim = 0;
44+
float mean_bias = 0;
45+
float max_bias = 0;
46+
float min_bias = 0;
47+
int elements = 0;
48+
float stddev = 0;
49+
float active = 0;
50+
float entropy = 0;
51+
float zd = 0;
52+
float cossim = 0;
5353
};
5454

5555
class IMatrixCollector {
@@ -778,8 +778,8 @@ int main(int argc, char ** argv) {
778778
}
779779

780780
const int layers = std::count_if(ws.begin(), ws.end(), [](const auto & kv) { return kv.first >= 0; });
781-
LOG_INF("\nComputing weighted statistics per layer (%d layers)\n", layers);
782-
LOG_INF("\n%s\t%s\t%s\t%s\n", " Layer", " Σ(Bias)", " ZD", "CosSim");
781+
LOG_INF("\nComputing weighted average statistics per layer (%d layers)\n", layers);
782+
LOG_INF("\n%s\t%s\t%s\t%s\n", " Layer", " μΣ(Bias)", " μZD", "μCosSim");
783783
LOG_INF("===============================================\n");
784784

785785
for (const auto & [first, second] : ws) {

0 commit comments

Comments
 (0)