spear-kernels 1.10.0 → 1.10.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/README.md +9 -0
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -44,3 +44,12 @@ instance.exports.spear(2); // same protected-division semantics as the JS backen
|
|
|
44
44
|
Division is **protected** exactly like the engine: denominators floored at
|
|
45
45
|
±1e-4 (sign-preserving), results clamped to ±1e4. Discovered formulas rely on
|
|
46
46
|
these rails — do not swap in bare `/`.
|
|
47
|
+
|
|
48
|
+
## Support
|
|
49
|
+
|
|
50
|
+
If SPEAR kernels save you compute time, consider tipping the lab:
|
|
51
|
+
|
|
52
|
+
₿ **bc1q54n9x2894rr43f7nkaqywtegn8aufxwlnnkh5r**
|
|
53
|
+
|
|
54
|
+
`npm fund` also surfaces this address (declared in the `funding` field).
|
|
55
|
+
Every satoshi goes back into GPU time for the evolution farm.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "spear-kernels",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.1",
|
|
4
4
|
"description": "Closed-form kernels discovered by the SPEAR symbolic regression engine, shipped as JS, CUDA C, PyTorch and WebAssembly.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -21,5 +21,6 @@
|
|
|
21
21
|
"index.d.ts",
|
|
22
22
|
"README.md"
|
|
23
23
|
],
|
|
24
|
-
"sideEffects": false
|
|
24
|
+
"sideEffects": false,
|
|
25
|
+
"funding": "bitcoin:bc1q54n9x2894rr43f7nkaqywtegn8aufxwlnnkh5r"
|
|
25
26
|
}
|