@genai-fi/nanogpt 0.5.6 → 0.6.1

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.
Files changed (116) hide show
  1. package/dist/Generator.js +10 -9
  2. package/dist/NanoGPTModel.js +70 -121
  3. package/dist/RealDiv-7xu-pkZN.js +540 -0
  4. package/dist/Reshape-BYC1oUku.js +127 -0
  5. package/dist/TeachableLLM.d.ts +2 -0
  6. package/dist/TeachableLLM.js +42 -34
  7. package/dist/{TiedEmbedding-8S8xn8e6.js → TiedEmbedding-C1HBot-5.js} +12 -13
  8. package/dist/{axis_util-BczFISHz.js → axis_util-CCNL7jea.js} +14 -12
  9. package/dist/{broadcast_to-B7NGsBSh.js → broadcast_to-CddAF879.js} +2 -2
  10. package/dist/{concat-DdKPyAtw.js → concat-XOK9ANZu.js} +7 -7
  11. package/dist/{dataset-iqT4Otvb.js → dataset-BFFipD1c.js} +5 -5
  12. package/dist/{dropout-B09InSJS.js → dropout-xlKRoJyU.js} +9 -9
  13. package/dist/{gather-D6MsdXqc.js → gather-DKtUaTtA.js} +1 -1
  14. package/dist/gpgpu_math-B_ycgZ4W.js +3115 -0
  15. package/dist/{index-Du-bmOP8.js → index-CamYe_M8.js} +844 -647
  16. package/dist/{kernel_funcs_utils-DShm7-0k.js → kernel_funcs_utils-D5MS0JFg.js} +232 -136
  17. package/dist/layers/BaseLayer.js +2 -2
  18. package/dist/layers/CausalSelfAttention.js +6 -6
  19. package/dist/layers/MLP.js +5 -5
  20. package/dist/layers/RMSNorm.js +3 -3
  21. package/dist/layers/RoPECache.js +13 -33
  22. package/dist/layers/TiedEmbedding.js +6 -7
  23. package/dist/layers/TransformerBlock.js +1 -1
  24. package/dist/{log_sum_exp-CxfBtUaG.js → log_sum_exp-CV_5-TTu.js} +15 -15
  25. package/dist/main.js +24 -20
  26. package/dist/{mat_mul-CbiqIe2d.js → mat_mul-CAbRFWUj.js} +4 -4
  27. package/dist/{max-0Xnlpv8k.js → max-JBBv7aUf.js} +3 -3
  28. package/dist/mulmat_packed_gpu-DW4doKL_.js +71 -0
  29. package/dist/{norm-01kY9I2B.js → norm-B9dQTFYn.js} +12 -12
  30. package/dist/{ones-CrutWGas.js → ones-CMHNqMr6.js} +2 -2
  31. package/dist/ops/appendCache.js +3 -3
  32. package/dist/ops/attentionMask.js +1 -1
  33. package/dist/ops/cpu/appendCache.js +2 -2
  34. package/dist/ops/cpu/attentionMask.js +5 -5
  35. package/dist/ops/cpu/fusedSoftmax.js +2 -2
  36. package/dist/ops/cpu/gatherSub.js +5 -5
  37. package/dist/ops/cpu/gelu.js +1 -1
  38. package/dist/ops/cpu/matMulGelu.js +1 -1
  39. package/dist/ops/cpu/matMulMul.js +1 -1
  40. package/dist/ops/cpu/mulDropout.js +1 -1
  41. package/dist/ops/cpu/normRMS.js +1 -1
  42. package/dist/ops/cpu/qkv.js +3 -3
  43. package/dist/ops/cpu/rope.js +5 -5
  44. package/dist/ops/cpu/scatterSub.js +18 -49
  45. package/dist/ops/fusedSoftmax.js +1 -1
  46. package/dist/ops/gatherSub.js +1 -1
  47. package/dist/ops/gelu.js +1 -1
  48. package/dist/ops/grads/attentionMask.js +15 -11
  49. package/dist/ops/grads/fusedSoftmax.js +12 -10
  50. package/dist/ops/grads/gelu.js +1 -1
  51. package/dist/ops/grads/matMulGelu.js +1 -1
  52. package/dist/ops/grads/normRMS.js +1 -1
  53. package/dist/ops/grads/qkv.js +1 -1
  54. package/dist/ops/grads/rope.js +1 -1
  55. package/dist/ops/log.d.ts +0 -0
  56. package/dist/ops/log.js +1 -0
  57. package/dist/ops/matMulGelu.js +1 -1
  58. package/dist/ops/matMulMul.js +1 -1
  59. package/dist/ops/mulDrop.js +1 -1
  60. package/dist/ops/node/sparseCrossEntropy.js +1 -1
  61. package/dist/ops/normRMS.js +1 -1
  62. package/dist/ops/qkv.js +1 -1
  63. package/dist/ops/rope.js +8 -4
  64. package/dist/ops/scatterSub.js +1 -1
  65. package/dist/ops/webgl/appendCache.js +1 -1
  66. package/dist/ops/webgl/attentionMask.js +1 -1
  67. package/dist/ops/webgl/fusedSoftmax.js +31 -3379
  68. package/dist/ops/webgl/gatherSub.js +1 -1
  69. package/dist/ops/webgl/gelu.js +2 -2
  70. package/dist/{gpgpu_math-BFbOyvk4.js → ops/webgl/log.d.ts} +2 -8
  71. package/dist/ops/webgl/log.js +39 -0
  72. package/dist/ops/webgl/matMulGelu.js +48 -115
  73. package/dist/ops/webgl/matMulMul.js +1 -1
  74. package/dist/ops/webgl/mulDropout.js +1 -1
  75. package/dist/ops/webgl/normRMS.js +2 -2
  76. package/dist/ops/webgl/qkv.js +1 -1
  77. package/dist/ops/webgl/rope.js +1 -1
  78. package/dist/ops/webgl/scatterSub.js +1 -1
  79. package/dist/{ops-CJNniCAV.js → ops-DqtYemmV.js} +143 -135
  80. package/dist/{random_width-C-v-35bY.js → random_width-CLMQG5Jn.js} +6925 -6291
  81. package/dist/{range-Bvs1hidm.js → range-DqYjKnuG.js} +1 -1
  82. package/dist/reciprocal-z49filta.js +25 -0
  83. package/dist/register_all_kernels-COt6wLD0.js +21397 -0
  84. package/dist/{reshape-BH7eBpwq.js → reshape-C45vIIRU.js} +1 -1
  85. package/dist/scatter_nd_util-qgtnviTE.js +46 -0
  86. package/dist/selu_util-4QV_GXTB.js +740 -0
  87. package/dist/shared-ByfrGA97.js +3199 -0
  88. package/dist/{sin-CPAZXNjH.js → sin-9JBrfVaB.js} +1 -1
  89. package/dist/{softmax-DhWoBa7r.js → softmax-DvMvui-_.js} +1 -1
  90. package/dist/{split-BCUhuU7B.js → split-DxrHrPFK.js} +4 -4
  91. package/dist/{stack-BV1v7l3S.js → stack-DgaoDmnF.js} +1 -1
  92. package/dist/{sum-Cvq06317.js → sum-BpcpxNEh.js} +3 -3
  93. package/dist/{tensor-DgTOPY6h.js → tensor-CDz5x1mP.js} +1 -1
  94. package/dist/{tensor2d-CRWjDyUe.js → tensor2d-jO8JY5Jd.js} +1 -1
  95. package/dist/training/AdamExt.js +1 -1
  96. package/dist/training/DatasetBuilder.js +2 -2
  97. package/dist/training/FullTrainer.js +1 -1
  98. package/dist/training/Trainer.js +3 -3
  99. package/dist/training/sparseCrossEntropy.js +4 -4
  100. package/dist/utilities/dummy.d.ts +6 -0
  101. package/dist/utilities/dummy.js +31 -10
  102. package/dist/utilities/generate.js +3 -3
  103. package/dist/utilities/load.d.ts +25 -0
  104. package/dist/utilities/load.js +89 -37
  105. package/dist/utilities/profile.d.ts +5 -0
  106. package/dist/utilities/profile.js +12 -9
  107. package/dist/utilities/safetensors.d.ts +3 -0
  108. package/dist/utilities/safetensors.js +83 -0
  109. package/dist/utilities/save.js +47 -29
  110. package/dist/utilities/weights.js +2 -2
  111. package/dist/{variable-DZ3fF0R2.js → variable-CLVXjN7F.js} +1 -1
  112. package/dist/{zeros-BaHhQTWf.js → zeros-DUkkVccu.js} +8 -8
  113. package/package.json +3 -9
  114. package/dist/Reshape-Biok_3X1.js +0 -212
  115. package/dist/slice_util-DskXqRZa.js +0 -49
  116. package/dist/tfjs_backend-D9Ytje0G.js +0 -1010
@@ -1,4 +1,4 @@
1
- import { r as l } from "../../index-Du-bmOP8.js";
1
+ import { r as l } from "../../index-CamYe_M8.js";
2
2
  class u {
3
3
  variableNames = ["labels", "logits", "values"];
4
4
  outputShape;
@@ -1,5 +1,5 @@
1
- import { r as a } from "../../index-Du-bmOP8.js";
2
- import { u as s, C as x } from "../../kernel_funcs_utils-DShm7-0k.js";
1
+ import { r as a } from "../../index-CamYe_M8.js";
2
+ import { u as s, C as x } from "../../kernel_funcs_utils-D5MS0JFg.js";
3
3
  const t = 0.7978845608028654, r = 0.044715, c = x + `
4
4
  float x3 = x * x * x;
5
5
  float inner = x + ${r} * x3;
@@ -1,7 +1,6 @@
1
- import { N as e } from "./index-Du-bmOP8.js";
2
1
  /**
3
2
  * @license
4
- * Copyright 2017 Google LLC. All Rights Reserved.
3
+ * Copyright 2020 Google LLC. All Rights Reserved.
5
4
  * Licensed under the Apache License, Version 2.0 (the "License");
6
5
  * you may not use this file except in compliance with the License.
7
6
  * You may obtain a copy of the License at
@@ -15,9 +14,4 @@ import { N as e } from "./index-Du-bmOP8.js";
15
14
  * limitations under the License.
16
15
  * =============================================================================
17
16
  */
18
- function n(o) {
19
- return e().getBool("WEBGL_USE_SHAPES_UNIFORMS") && o <= 4;
20
- }
21
- export {
22
- n as u
23
- };
17
+ export {};
@@ -0,0 +1,39 @@
1
+ import { r, a9 as e } from "../../index-CamYe_M8.js";
2
+ import { u as s, l as N } from "../../kernel_funcs_utils-D5MS0JFg.js";
3
+ import { aG as l } from "../../shared-ByfrGA97.js";
4
+ /**
5
+ * @license
6
+ * Copyright 2020 Google LLC. All Rights Reserved.
7
+ * Licensed under the Apache License, Version 2.0 (the "License");
8
+ * you may not use this file except in compliance with the License.
9
+ * You may obtain a copy of the License at
10
+ *
11
+ * http://www.apache.org/licenses/LICENSE-2.0
12
+ *
13
+ * Unless required by applicable law or agreed to in writing, software
14
+ * distributed under the License is distributed on an "AS IS" BASIS,
15
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ * See the License for the specific language governing permissions and
17
+ * limitations under the License.
18
+ * =============================================================================
19
+ */
20
+ const a = N + `
21
+ return x < 0.0 ? NAN : log(x);
22
+ `, t = `
23
+ vec4 result = log(x);
24
+ bvec4 isNaN = isnan(x);
25
+ result.r = isNaN.r ? x.r : (x.r < 0.0 ? NAN : result.r);
26
+ result.g = isNaN.g ? x.g : (x.g < 0.0 ? NAN : result.g);
27
+ result.b = isNaN.b ? x.b : (x.b < 0.0 ? NAN : result.b);
28
+ result.a = isNaN.a ? x.a : (x.a < 0.0 ? NAN : result.a);
29
+ return result;
30
+ `, n = s({
31
+ opSnippet: a,
32
+ packedOpSnippet: t,
33
+ cpuKernelImpl: l
34
+ }), o = {
35
+ kernelName: e,
36
+ backendName: "webgl",
37
+ kernelFunc: n
38
+ };
39
+ r(o);
@@ -1,168 +1,101 @@
1
- import { r as C, t as R, e as I, q as G, Q as L, l as U, U as F } from "../../index-Du-bmOP8.js";
2
- import { r as S } from "../../Reshape-Biok_3X1.js";
3
- import { u as H } from "../../gpgpu_math-BFbOyvk4.js";
4
- import { m as B } from "../../mat_mul-CbiqIe2d.js";
5
- /**
6
- * @license
7
- * Copyright 2018 Google LLC. All Rights Reserved.
8
- * Licensed under the Apache License, Version 2.0 (the "License");
9
- * you may not use this file except in compliance with the License.
10
- * You may obtain a copy of the License at
11
- *
12
- * http://www.apache.org/licenses/LICENSE-2.0
13
- *
14
- * Unless required by applicable law or agreed to in writing, software
15
- * distributed under the License is distributed on an "AS IS" BASIS,
16
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17
- * See the License for the specific language governing permissions and
18
- * limitations under the License.
19
- * =============================================================================
20
- */
21
- class W {
22
- constructor(e, s, n, a = !1, c = !1, o = !1, r = null, u = !1, l = !1) {
23
- this.variableNames = ["matrixA", "matrixB"], this.packedInputs = !0, this.packedOutput = !0, this.outputShape = n, this.enableShapeUniforms = H(this.outputShape.length);
24
- const h = a ? e[1] : e[2], p = Math.ceil(h / 2), d = a ? "i * 2, rc.y" : "rc.y, i * 2", $ = c ? "rc.z, i * 2" : "i * 2, rc.z", x = a ? ["a.xxyy", "a.zzww"] : ["a.xxzz", "a.yyww"], m = c ? ["b.xzxz", "b.ywyw"] : ["b.xyxy", "b.zwzw"];
25
- let i = "", b = "";
26
- r && (u ? i = `vec4 activation(vec4 a) {
27
- vec4 b = getPreluActivationWeightsAtOutCoords();
28
- ${r}
29
- }` : l ? i = `vec4 activation(vec4 a) {
30
- vec4 b = getLeakyreluAlphaAtOutCoords();
31
- ${r}
32
- }` : i = `vec4 activation(vec4 x) {
33
- ${r}
34
- }`, b = "result = activation(result);");
35
- const M = o ? "result += getBiasAtOutCoords();" : "";
36
- o && this.variableNames.push("bias"), u && this.variableNames.push("preluActivationWeights"), l && this.variableNames.push("leakyreluAlpha");
37
- let f = "rc.x", v = "rc.x";
38
- e[0] < s[0] ? f = `imod(rc.x, ${e[0]})` : s[0] < e[0] && (v = `imod(rc.x, ${s[0]})`), this.userCode = `
39
- ${i}
40
- // Don't use uniform for sharedDimensionPacked for performance.
41
- const float sharedDimension = ${p}.0;
42
-
43
- vec4 dot2x2ARowBCol(ivec3 rc) {
44
- vec4 result = vec4(0);
45
- int batchA = ${f};
46
- int batchB = ${v};
47
- for (int i = 0; i < ${p}; i++) {
48
- vec4 a = getMatrixA(batchA, ${d});
49
- vec4 b = getMatrixB(batchB, ${$});
50
-
51
- // These swizzled products need to be separately added.
52
- // See: https://github.com/tensorflow/tfjs/issues/1735
53
- result += (${x[0]} * ${m[0]});
54
- result += (${x[1]} * ${m[1]});
55
- }
56
- return result;
57
- }
58
-
59
- void main() {
60
- ivec3 rc = getOutputCoords();
61
- vec4 result = dot2x2ARowBCol(rc);
62
-
63
- ${M}
64
-
65
- ${b}
66
-
67
- setOutput(result);
68
- }
69
- `;
70
- }
71
- }
72
- const g = 0.7978845608028654, w = 0.044715, q = `
1
+ import { r as _, t as R, e as C, i as A, j as N, k as H, u as O } from "../../index-CamYe_M8.js";
2
+ import { r as f } from "../../Reshape-BYC1oUku.js";
3
+ import { M as U } from "../../mulmat_packed_gpu-DW4doKL_.js";
4
+ import { m as E } from "../../mat_mul-CAbRFWUj.js";
5
+ const M = 0.7978845608028654, x = 0.044715, j = `
73
6
  vec4 x3 = x * x * x;
74
- vec4 inner = x + ${w} * x3;
75
- inner = ${g} * inner;
7
+ vec4 inner = x + ${x} * x3;
8
+ inner = ${M} * inner;
76
9
  inner = tanh(inner);
77
10
  inner = 0.5 * (1.0 + inner);
78
11
  vec4 result = x * inner;
79
12
  return result;
80
- `, j = `
13
+ `, q = `
81
14
  vec4 a2 = a * a;
82
15
  vec4 a3 = a2 * a;
83
- vec4 u = ${g} * (a + ${w} * a3);
16
+ vec4 u = ${M} * (a + ${x} * a3);
84
17
  vec4 t = tanh(u);
85
18
  vec4 sech2 = 1.0 - t * t;
86
- vec4 du_dx = ${g} * (1.0 + 3.0 * ${w} * a2);
19
+ vec4 du_dx = ${M} * (1.0 + 3.0 * ${x} * a2);
87
20
  vec4 dgelu = 0.5 * (1.0 + t) + 0.5 * a * sech2 * du_dx;
88
21
  return dgelu * b;
89
- `, se = 1e3;
90
- function O({
91
- a: t,
92
- b: e,
22
+ `, te = 1e3;
23
+ function w({
24
+ a: e,
25
+ b: t,
93
26
  transposeA: s,
94
27
  transposeB: n,
95
28
  backend: a,
96
29
  activationSnippet: c,
97
30
  multiplier: o
98
31
  }) {
99
- const r = t.shape.length, u = e.shape.length, l = s ? t.shape[r - 2] : t.shape[r - 1], h = n ? e.shape[u - 1] : e.shape[u - 2], p = s ? t.shape[r - 1] : t.shape[r - 2], d = n ? e.shape[u - 2] : e.shape[u - 1], $ = t.shape.slice(0, -2), x = e.shape.slice(0, -2), m = G($), i = G(x), M = L(t.shape.slice(0, -2), e.shape.slice(0, -2)).concat([p, d]);
100
- U(
101
- l === h,
102
- () => `Error in matMul: inner shapes (${l}) and (${h}) of Tensors with shapes ${t.shape} and ${e.shape} and transposeA=${s} and transposeB=${n} must match.`
32
+ const r = e.shape.length, u = t.shape.length, i = s ? e.shape[r - 2] : e.shape[r - 1], p = n ? t.shape[u - 1] : t.shape[u - 2], h = s ? e.shape[r - 1] : e.shape[r - 2], l = n ? t.shape[u - 2] : t.shape[u - 1], K = e.shape.slice(0, -2), T = t.shape.slice(0, -2), d = A(K), m = A(T), b = N(e.shape.slice(0, -2), t.shape.slice(0, -2)).concat([h, l]);
33
+ H(
34
+ i === p,
35
+ () => `Error in matMul: inner shapes (${i}) and (${p}) of Tensors with shapes ${e.shape} and ${t.shape} and transposeA=${s} and transposeB=${n} must match.`
103
36
  );
104
- const f = s ? [m, l, p] : [m, p, l], v = n ? [i, d, h] : [i, h, d], A = S({ inputs: { x: t }, backend: a, attrs: { shape: f } }), y = S({ inputs: { x: e }, backend: a, attrs: { shape: v } }), D = [A, y], E = Math.max(m, i), N = c, T = F(t.dtype, e.dtype), _ = new W(
105
- f,
37
+ const v = s ? [d, i, h] : [d, h, i], S = n ? [m, l, p] : [m, p, l], k = f({ inputs: { x: e }, backend: a, attrs: { shape: v } }), D = f({ inputs: { x: t }, backend: a, attrs: { shape: S } }), G = [k, D], y = Math.max(d, m), L = c, B = O(e.dtype, t.dtype), F = new U(
106
38
  v,
107
- [E, p, d],
39
+ S,
40
+ [y, h, l],
108
41
  s,
109
42
  n,
110
43
  !1,
111
- N,
44
+ L,
112
45
  !!o,
113
46
  !1
114
- ), k = [A, y];
115
- o && k.push(o);
116
- const z = a.runWebGLProgram(_, k, T), K = S({ inputs: { x: z }, backend: a, attrs: { shape: M } });
117
- D.push(z);
118
- for (const P of D)
47
+ ), g = [k, D];
48
+ o && g.push(o);
49
+ const $ = a.runWebGLProgram(F, g, B), I = f({ inputs: { x: $ }, backend: a, attrs: { shape: b } });
50
+ G.push($);
51
+ for (const P of G)
119
52
  a.disposeIntermediateTensorInfo(P);
120
- return K;
53
+ return I;
121
54
  }
122
- function Q(t) {
123
- const { inputs: e, backend: s } = t, { x: n, kernel: a } = e;
55
+ function z(e) {
56
+ const { inputs: t, backend: s } = e, { x: n, kernel: a } = t;
124
57
  if (n === void 0 || a === void 0)
125
58
  throw new Error("BatchMatMul requires two input tensors.");
126
- return O({
59
+ return w({
127
60
  a: n,
128
61
  b: a,
129
62
  transposeA: !1,
130
63
  transposeB: !1,
131
64
  backend: s,
132
- activationSnippet: q
65
+ activationSnippet: j
133
66
  });
134
67
  }
135
- const J = {
68
+ const W = {
136
69
  kernelName: "MatMulGelu",
137
70
  backendName: "webgl",
138
- kernelFunc: Q
71
+ kernelFunc: z
139
72
  };
140
- C(J);
141
- function V(t) {
142
- const { dy: e, x: s, kernel: n } = t.inputs, a = t.backend;
73
+ _(W);
74
+ function J(e) {
75
+ const { dy: t, x: s, kernel: n } = e.inputs, a = e.backend;
143
76
  return R(() => {
144
- const c = I().makeTensorFromTensorInfo(
145
- O({
77
+ const c = C().makeTensorFromTensorInfo(
78
+ w({
146
79
  a: s,
147
80
  b: n,
148
81
  transposeA: !1,
149
82
  transposeB: !1,
150
83
  backend: a,
151
- activationSnippet: j,
152
- multiplier: e
84
+ activationSnippet: q,
85
+ multiplier: t
153
86
  })
154
- ), o = B(c, n, !1, !0), r = B(s, c, !0, !1);
87
+ ), o = E(c, n, !1, !0), r = E(s, c, !0, !1);
155
88
  return [o, r];
156
89
  });
157
90
  }
158
- const X = {
91
+ const Q = {
159
92
  kernelName: "MatMulGeluGrad",
160
93
  backendName: "webgl",
161
- kernelFunc: V
94
+ kernelFunc: J
162
95
  };
163
- C(X);
96
+ _(Q);
164
97
  export {
165
- se as MATMUL_SHARED_DIM_THRESHOLD,
166
- O as batchMatMulGeluImpl,
167
- Q as batchMatMulKernel
98
+ te as MATMUL_SHARED_DIM_THRESHOLD,
99
+ w as batchMatMulGeluImpl,
100
+ z as batchMatMulKernel
168
101
  };
@@ -1,4 +1,4 @@
1
- import { r as u } from "../../index-Du-bmOP8.js";
1
+ import { r as u } from "../../index-CamYe_M8.js";
2
2
  import { batchMatMulGeluImpl as c } from "./matMulGelu.js";
3
3
  const M = `
4
4
  return a * b;
@@ -1,4 +1,4 @@
1
- import { r as m } from "../../index-Du-bmOP8.js";
1
+ import { r as m } from "../../index-CamYe_M8.js";
2
2
  class f {
3
3
  variableNames = ["a", "b"];
4
4
  outputShape;
@@ -1,5 +1,5 @@
1
- import { r as p, e as G } from "../../index-Du-bmOP8.js";
2
- import { s as x } from "../../sum-Cvq06317.js";
1
+ import { r as p, e as G } from "../../index-CamYe_M8.js";
2
+ import { s as x } from "../../sum-BpcpxNEh.js";
3
3
  class y {
4
4
  variableNames = ["x", "meanSquare", "gamma"];
5
5
  outputShape;
@@ -1,4 +1,4 @@
1
- import { r as i } from "../../index-Du-bmOP8.js";
1
+ import { r as i } from "../../index-CamYe_M8.js";
2
2
  class l {
3
3
  variableNames = ["x", "kernel"];
4
4
  outputShape;
@@ -1,4 +1,4 @@
1
- import { r as u } from "../../index-Du-bmOP8.js";
1
+ import { r as u } from "../../index-CamYe_M8.js";
2
2
  class l {
3
3
  variableNames = ["x", "sin", "cos"];
4
4
  outputShape;
@@ -1,4 +1,4 @@
1
- import { r as i } from "../../index-Du-bmOP8.js";
1
+ import { r as i } from "../../index-CamYe_M8.js";
2
2
  class u {
3
3
  variableNames = ["labels", "softmaxProbs", "dy"];
4
4
  outputShape;