@thi.ng/tensors 0.11.0 → 0.11.4
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 +4 -1
- package/package.json +20 -11
package/README.md
CHANGED
|
@@ -68,6 +68,7 @@ conventions are closely aligned to the ones used by the
|
|
|
68
68
|
- [addN](https://docs.thi.ng/umbrella/tensors/variables/addN.html): Tensor-scalar addition
|
|
69
69
|
- [argMax](https://docs.thi.ng/umbrella/tensors/functions/argMax.html): Maximum component index/value
|
|
70
70
|
- [argMin](https://docs.thi.ng/umbrella/tensors/functions/argMin.html): Minimum component index/value
|
|
71
|
+
- [cdf](https://docs.thi.ng/umbrella/tensors/variables/cdf.html): Cumulative distribution of 1D tensor
|
|
71
72
|
- [clamp](https://docs.thi.ng/umbrella/tensors/variables/clamp.html): Tensor-tensor interval clamping
|
|
72
73
|
- [clampN](https://docs.thi.ng/umbrella/tensors/variables/clampN.html): Tensor-scalar interval clamping
|
|
73
74
|
- [convolve](https://docs.thi.ng/umbrella/tensors/variables/convolve.html): Tensor convolution (1D/2D/3D only)
|
|
@@ -76,8 +77,10 @@ conventions are closely aligned to the ones used by the
|
|
|
76
77
|
- [div](https://docs.thi.ng/umbrella/tensors/variables/div.html): Tensor-tensor division
|
|
77
78
|
- [divN](https://docs.thi.ng/umbrella/tensors/variables/divN.html): Tensor-scalar division
|
|
78
79
|
- [dot](https://docs.thi.ng/umbrella/tensors/variables/dot.html): Dot product
|
|
80
|
+
- [equalizeHistogram](https://docs.thi.ng/umbrella/tensors/functions/equalizeHistogram.html): histogram equalization
|
|
79
81
|
- [exp](https://docs.thi.ng/umbrella/tensors/variables/exp.html): Componentwise `Math.exp`
|
|
80
82
|
- [exp2](https://docs.thi.ng/umbrella/tensors/variables/exp2.html): Componentwise `2^x`
|
|
83
|
+
- [histogramUint](https://docs.thi.ng/umbrella/tensors/functions/histogramUint.html): histogram of uint-based tensor
|
|
81
84
|
- [identity](https://docs.thi.ng/umbrella/tensors/functions/identity.html): Square identity matrix tensor
|
|
82
85
|
- [integrate](https://docs.thi.ng/umbrella/tensors/functions/integrate.html): Integrate tensor along innermost dimension
|
|
83
86
|
- [log](https://docs.thi.ng/umbrella/tensors/variables/log.html): Componentwise `Math.log`
|
|
@@ -250,7 +253,7 @@ For Node.js REPL:
|
|
|
250
253
|
const ten = await import("@thi.ng/tensors");
|
|
251
254
|
```
|
|
252
255
|
|
|
253
|
-
Package sizes (brotli'd, pre-treeshake): ESM: 11.
|
|
256
|
+
Package sizes (brotli'd, pre-treeshake): ESM: 11.80 KB
|
|
254
257
|
|
|
255
258
|
## Dependencies
|
|
256
259
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/tensors",
|
|
3
|
-
"version": "0.11.
|
|
3
|
+
"version": "0.11.4",
|
|
4
4
|
"description": "0D/1D/2D/3D/4D tensors with extensible polymorphic operations and customizable storage",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -40,15 +40,15 @@
|
|
|
40
40
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@thi.ng/api": "^8.12.
|
|
44
|
-
"@thi.ng/arrays": "^2.14.
|
|
45
|
-
"@thi.ng/checks": "^3.8.
|
|
46
|
-
"@thi.ng/equiv": "^2.1.
|
|
47
|
-
"@thi.ng/errors": "^2.6.
|
|
48
|
-
"@thi.ng/math": "^5.15.
|
|
49
|
-
"@thi.ng/random": "^4.1.
|
|
50
|
-
"@thi.ng/strings": "^3.9.
|
|
51
|
-
"@thi.ng/vectors": "^8.6.
|
|
43
|
+
"@thi.ng/api": "^8.12.15",
|
|
44
|
+
"@thi.ng/arrays": "^2.14.9",
|
|
45
|
+
"@thi.ng/checks": "^3.8.5",
|
|
46
|
+
"@thi.ng/equiv": "^2.1.105",
|
|
47
|
+
"@thi.ng/errors": "^2.6.4",
|
|
48
|
+
"@thi.ng/math": "^5.15.4",
|
|
49
|
+
"@thi.ng/random": "^4.1.40",
|
|
50
|
+
"@thi.ng/strings": "^3.9.36",
|
|
51
|
+
"@thi.ng/vectors": "^8.6.21"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"esbuild": "^0.27.2",
|
|
@@ -131,6 +131,9 @@
|
|
|
131
131
|
"./broadcast": {
|
|
132
132
|
"default": "./broadcast.js"
|
|
133
133
|
},
|
|
134
|
+
"./cdf": {
|
|
135
|
+
"default": "./cdf.js"
|
|
136
|
+
},
|
|
134
137
|
"./clamp": {
|
|
135
138
|
"default": "./clamp.js"
|
|
136
139
|
},
|
|
@@ -194,9 +197,15 @@
|
|
|
194
197
|
"./filtered-indices": {
|
|
195
198
|
"default": "./filtered-indices.js"
|
|
196
199
|
},
|
|
200
|
+
"./find": {
|
|
201
|
+
"default": "./find.js"
|
|
202
|
+
},
|
|
197
203
|
"./format": {
|
|
198
204
|
"default": "./format.js"
|
|
199
205
|
},
|
|
206
|
+
"./histogram": {
|
|
207
|
+
"default": "./histogram.js"
|
|
208
|
+
},
|
|
200
209
|
"./identity": {
|
|
201
210
|
"default": "./identity.js"
|
|
202
211
|
},
|
|
@@ -343,5 +352,5 @@
|
|
|
343
352
|
"status": "alpha",
|
|
344
353
|
"year": 2018
|
|
345
354
|
},
|
|
346
|
-
"gitHead": "
|
|
355
|
+
"gitHead": "8f50352caab9ec7757d645c0afa605dfb5427abe\n"
|
|
347
356
|
}
|