Update table display
This commit is contained in:
parent
ee2509f563
commit
fc8f92596f
|
|
@ -1225,9 +1225,22 @@ static bool show_statistics(const common_params & params) {
|
||||||
std::map<int, weighted_stats> ws;
|
std::map<int, weighted_stats> ws;
|
||||||
|
|
||||||
LOG_INF("\nComputing statistics for %s (%d tensors)\n", params.in_files[0].c_str(), static_cast<int>(ts.size()));
|
LOG_INF("\nComputing statistics for %s (%d tensors)\n", params.in_files[0].c_str(), static_cast<int>(ts.size()));
|
||||||
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²)",
|
LOG_INF(
|
||||||
" Min", " Max", " μ", " σ", " % Active", "N", " Entropy", "E (norm)", "ZD",
|
"\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",
|
||||||
" CosSim");
|
" Layer",
|
||||||
|
" Tensor",
|
||||||
|
tensor_calc_mode == 1 ? " L₂ Norm" : " Σ(Act²)",
|
||||||
|
" Min",
|
||||||
|
" Max",
|
||||||
|
" μ",
|
||||||
|
" σ",
|
||||||
|
" % Active",
|
||||||
|
"N",
|
||||||
|
" Entropy",
|
||||||
|
"E (norm)",
|
||||||
|
"ZD",
|
||||||
|
" CosSim"
|
||||||
|
);
|
||||||
LOG_INF(
|
LOG_INF(
|
||||||
"=============================================================================================================="
|
"=============================================================================================================="
|
||||||
"===========================================================\n");
|
"===========================================================\n");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue