bonsai-ml 0.0.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/index.js +1 -0
- package/package.json +9 -0
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// bunml — TypeScript ML framework for Bun
|
package/package.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bonsai-ml",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "TypeScript-native ML training framework for Bun. BLAS-accelerated via Apple Accelerate.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"keywords": ["machine-learning", "bun", "typescript", "training", "blas", "apple-silicon"],
|
|
7
|
+
"author": "Isaiah Ballah",
|
|
8
|
+
"license": "MIT"
|
|
9
|
+
}
|