mini-jstorch 1.8.1 → 1.8.2
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 +2 -4
- package/package.json +5 -1
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ It runs in Node.js and modern browsers, with a simple API inspired by PyTorch-st
|
|
|
6
6
|
|
|
7
7
|
This project prioritizes `clarity`, `numerical correctness`, and `accessibility` over performance or large-scale production use.
|
|
8
8
|
|
|
9
|
-
In this version `1.8.
|
|
9
|
+
In this version `1.8.2`, we Introduce the **SoftmaxCrossEntropyLoss**, and **BCEWithLogitsLoss**
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
@@ -21,9 +21,7 @@ In this version `1.8.0`, we Introduce the **SoftmaxCrossEntropyLoss**, and **BCE
|
|
|
21
21
|
- running simple training loops in the browser
|
|
22
22
|
- environments where large frameworks are unnecessary or unavailable
|
|
23
23
|
|
|
24
|
-
`
|
|
25
|
-
|
|
26
|
-
`It is intentionally scoped to remain small, readable, and easy to debug.`
|
|
24
|
+
`mini-jstorch is intentionally designed to be small, readable, and easy to debug.`
|
|
27
25
|
|
|
28
26
|
---
|
|
29
27
|
|
package/package.json
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mini-jstorch",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A lightweight JavaScript neural network library for learning AI concepts and rapid Frontend experimentation. PyTorch-inspired, zero dependencies, perfect for educational use.",
|
|
6
6
|
"main": "index.js",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/Rizal-HID11/mini-jstorch-github.git"
|
|
10
|
+
},
|
|
7
11
|
"keywords": [
|
|
8
12
|
"lightweight-ml",
|
|
9
13
|
"javascript-torch",
|