deepbom 1.94.5 → 1.94.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -0
- package/bin/deepbom.mjs +37 -18
- package/package.json +4 -1
- package/pkg/release-manifest.json +3 -3
package/README.md
CHANGED
|
@@ -8,8 +8,18 @@ npx deepbom audit model.onnx --format cyclonedx
|
|
|
8
8
|
npx deepbom gguf model.gguf --context 8192 --memory-mib 8192
|
|
9
9
|
npx deepbom audit Model.mlpackage --compact
|
|
10
10
|
npx deepbom audit safetensors-repository/ --compact
|
|
11
|
+
npx deepbom verify model.tflite --contract production-interface.json
|
|
12
|
+
npx deepbom diff baseline.tflite candidate.tflite
|
|
13
|
+
npx deepbom explore model.tflite --target-profile target-profile.json
|
|
11
14
|
```
|
|
12
15
|
|
|
16
|
+
The default output is a bounded human-readable summary. Use `--json` or
|
|
17
|
+
`--compact` for the complete analysis document.
|
|
18
|
+
|
|
19
|
+
`verify` fails closed on interface contradictions, `diff` preserves the
|
|
20
|
+
canonical multi-target TFLite delta ledger, and `explore` exposes deterministic
|
|
21
|
+
WASM Pareto candidates. These commands do not add a second analysis engine.
|
|
22
|
+
|
|
13
23
|
The package contains one generated JavaScript analysis bundle and the canonical
|
|
14
24
|
TFLite WebAssembly module. It does not send model bytes or results over the
|
|
15
25
|
network. TensorRT parser observations and build profiles can be imported with
|