From 65c2c2285c9cdf9554536ecc7c606f59f0273046 Mon Sep 17 00:00:00 2001 From: Lutz Roeder Date: Sun, 9 Jun 2024 19:36:06 -0700 Subject: [PATCH] Update view.js (#1240) --- source/view.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/source/view.js b/source/view.js index 639fda1279..9b47f6b77c 100644 --- a/source/view.js +++ b/source/view.js @@ -3607,6 +3607,15 @@ view.FindSidebar = class extends view.Control { } }; +view.Argument = class { + + constructor(name, value, type) { + this.name = name; + this.value = value; + this.type = type; + } +}; + view.Tensor = class { constructor(tensor) { @@ -4094,6 +4103,15 @@ view.Tensor = class { return `${indentation}(undefined)`; } } + + get metrics() { + const metrics = Array.from(this._tensor.metrics || []); + const keys = new Set(metrics.map((metrics) => metrics.name)); + if (!keys.has('sparisity')) { + // metrics.push(new view.Argument('sparisity', 0, 'float32')); + } + return metrics; + } }; view.Quantization = class {