diff options
| author | ericmarin <maarin.eric@gmail.com> | 2026-04-13 19:42:39 +0200 |
|---|---|---|
| committer | ericmarin <maarin.eric@gmail.com> | 2026-04-13 21:38:16 +0200 |
| commit | fcbbc960f43137aa170b78ba0be2d89aec3bc766 (patch) | |
| tree | 15e0249bf429888d9b64f19eb0c6e2d9af0901e4 /docs/proof.md | |
| parent | 8f4f24523235965cfa2041ed00cc40fc0b4bd367 (diff) | |
| download | vein-fcbbc960f43137aa170b78ba0be2d89aec3bc766.tar.gz vein-fcbbc960f43137aa170b78ba0be2d89aec3bc766.zip | |
New ops: Slice, Squeeze, Unsqueeze
New tests based on papers:
- Wide-to-Deep, Deep-to-Wide Transformation
- Pruining of stably inactive (always negative) and active (always
positive) ReLUs
Diffstat (limited to 'docs/proof.md')
| -rw-r--r-- | docs/proof.md | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/docs/proof.md b/docs/proof.md index 07717f9..99c88aa 100644 --- a/docs/proof.md +++ b/docs/proof.md @@ -37,17 +37,13 @@ By definition this interaction is equal to: By grouping the operations we get:  -### Flatten -Just identity mapping because the wires are always Flatten. +### Identiry / Flatten / Reshape / Squeeze / Unsqueeze +Just identity mapping because wires represent a single element and they are not structured as Tensors.  ### MatMul Equal to Gemm with ,  and . -### Reshape -Just identity mapping because the wires always Flatten. - - ### Add ONNX Add node is defined as:  @@ -76,6 +72,13 @@ By definition this interaction is equal to: By grouping the operations we get:  +### Slice +ONNX Slice is defined as: +}) + +The translations creates a wiring analog to the above definition: +}) + ## Soundness of Interaction Rules ### Materialize The Materialize agent transforms a Linear agent into a tree of explicit mathematical operations |
