mini-jstorch 1.4.4 → 1.4.5
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 +1 -1
- package/package.json +1 -1
- package/src/startup.cpu +0 -15
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ A lightweight JavaScript neural network library for rapid frontend AI experiment
|
|
|
6
6
|
|
|
7
7
|
Mini-JSTorch is a high-performance, minimalist JavaScript library for building neural networks. It runs efficiently in both frontend and backend environments, including low-end devices. The library enables quick experimentation and learning in AI without compromising stability, accuracy, or training reliability.
|
|
8
8
|
|
|
9
|
-
This release, **version 1.4.
|
|
9
|
+
This release, **version 1.4.5**, We make `Matrix Utils` now can be used in others Files.
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
package/package.json
CHANGED
package/src/startup.cpu
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
// you can delete this files this files are not important for the engine runtime.
|
|
2
|
-
|
|
3
|
-
e=run=[cpu[runtime]]
|
|
4
|
-
devices=e.getdata[devices[5]]
|
|
5
|
-
env.set.runtime('beta')
|
|
6
|
-
env.rnt()
|
|
7
|
-
env.set()
|
|
8
|
-
env.register('vanilla',expe='Experiments.js',main='MainEngine.js',tgver=latest)
|
|
9
|
-
resources=e.find(tag='resources')
|
|
10
|
-
resources.ld(env)
|
|
11
|
-
l=env.prog('asm')
|
|
12
|
-
r=l.gv=[0xCAFEBABE]
|
|
13
|
-
eng=env.load(register,r,'vanilla')
|
|
14
|
-
eng.boot(env,r,'dp')
|
|
15
|
-
eng.load(resources,runtime,devices)
|