spear-kernels 1.0.0
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 +46 -0
- package/index.cjs +1092 -0
- package/index.d.ts +35 -0
- package/index.js +1092 -0
- package/package.json +28 -0
package/package.json
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "spear-kernels",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Closed-form kernels discovered by the SPEAR symbolic regression engine, shipped as JS, CUDA C, PyTorch and WebAssembly.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": { "name": "Romain Abdel-Aal", "email": "romainabdelaal@gmail.com" },
|
|
7
|
+
"repository": { "type": "git", "url": "git+https://github.com/bahira/superspear.git" },
|
|
8
|
+
"keywords": ["symbolic-regression", "kernels", "wasm", "math", "llm-inference"],
|
|
9
|
+
"type": "module",
|
|
10
|
+
"main": "./index.cjs",
|
|
11
|
+
"module": "./index.js",
|
|
12
|
+
"types": "./index.d.ts",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": {
|
|
15
|
+
"types": "./index.d.ts",
|
|
16
|
+
"import": "./index.js",
|
|
17
|
+
"require": "./index.cjs"
|
|
18
|
+
},
|
|
19
|
+
"./package.json": "./package.json"
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"index.js",
|
|
23
|
+
"index.cjs",
|
|
24
|
+
"index.d.ts",
|
|
25
|
+
"README.md"
|
|
26
|
+
],
|
|
27
|
+
"sideEffects": false
|
|
28
|
+
}
|