UNPKG

mini-jstorch

Version:

A lightweight JavaScript neural network library for rapid frontend AI experimentation on low-resource devices Inspired by PyTorch.

7 lines (6 loc) 285 B
// Entry point of the library, export main classes and functions [DEPRECATED] export { Seq } from './models/seq.js'; export { Dense } from './layers/dense.js'; export * as act from './act/linear.js'; export { SGD } from './optim/sgd.js'; export { train } from './train/loop.js';