@thi.ng/tensors 0.6.0 → 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.
- package/CHANGELOG.md +1 -1
- package/README.md +2 -2
- package/normalize.d.ts +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
[](https://mastodon.thi.ng/@toxi)
|
|
8
8
|
|
|
9
9
|
> [!NOTE]
|
|
10
|
-
> This is one of
|
|
10
|
+
> This is one of 209 standalone projects, maintained as part
|
|
11
11
|
> of the [@thi.ng/umbrella](https://github.com/thi-ng/umbrella/) monorepo
|
|
12
12
|
> and anti-framework.
|
|
13
13
|
>
|
|
@@ -218,7 +218,7 @@ For Node.js REPL:
|
|
|
218
218
|
const ten = await import("@thi.ng/tensors");
|
|
219
219
|
```
|
|
220
220
|
|
|
221
|
-
Package sizes (brotli'd, pre-treeshake): ESM: 9.
|
|
221
|
+
Package sizes (brotli'd, pre-treeshake): ESM: 9.48 KB
|
|
222
222
|
|
|
223
223
|
## Dependencies
|
|
224
224
|
|
package/normalize.d.ts
CHANGED
|
@@ -7,5 +7,5 @@ import type { ITensor } from "./api.js";
|
|
|
7
7
|
* @param a
|
|
8
8
|
* @param n
|
|
9
9
|
*/
|
|
10
|
-
export declare const normalize: (out: ITensor | null, a: ITensor, n?: number) =>
|
|
10
|
+
export declare const normalize: (out: ITensor | null, a: ITensor, n?: number) => import("./tensor.js").Tensor1<any> | ITensor<number>;
|
|
11
11
|
//# sourceMappingURL=normalize.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/tensors",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.1",
|
|
4
4
|
"description": "1D/2D/3D/4D tensors with extensible polymorphic operations and customizable storage",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -39,15 +39,15 @@
|
|
|
39
39
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@thi.ng/api": "^8.11.
|
|
43
|
-
"@thi.ng/arrays": "^2.11.
|
|
44
|
-
"@thi.ng/checks": "^3.7.
|
|
45
|
-
"@thi.ng/equiv": "^2.1.
|
|
46
|
-
"@thi.ng/errors": "^2.5.
|
|
47
|
-
"@thi.ng/math": "^5.11.
|
|
48
|
-
"@thi.ng/random": "^4.1.
|
|
49
|
-
"@thi.ng/strings": "^3.9.
|
|
50
|
-
"@thi.ng/vectors": "^8.
|
|
42
|
+
"@thi.ng/api": "^8.11.29",
|
|
43
|
+
"@thi.ng/arrays": "^2.11.2",
|
|
44
|
+
"@thi.ng/checks": "^3.7.9",
|
|
45
|
+
"@thi.ng/equiv": "^2.1.85",
|
|
46
|
+
"@thi.ng/errors": "^2.5.35",
|
|
47
|
+
"@thi.ng/math": "^5.11.29",
|
|
48
|
+
"@thi.ng/random": "^4.1.20",
|
|
49
|
+
"@thi.ng/strings": "^3.9.14",
|
|
50
|
+
"@thi.ng/vectors": "^8.3.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"esbuild": "^0.25.5",
|
|
@@ -325,5 +325,5 @@
|
|
|
325
325
|
"status": "alpha",
|
|
326
326
|
"year": 2018
|
|
327
327
|
},
|
|
328
|
-
"gitHead": "
|
|
328
|
+
"gitHead": "93cdcd8db4d4669561a7f0ebc47697bdbfd04214\n"
|
|
329
329
|
}
|