Docs
API
import { Layer, Tensor } from "@jsgrad/jsgrad"
export class MNIST extends Model {
layers: Layer[] = [
new Conv2d(1, 32, 5),
Tensor.relu,
// ...other layers
]
}
const mnist = new MNIST()
// call the model with some input
mnist.call(Tensor.rand([1, 1, 28, 28]))
// load weigths from ./mnist.safetensors
await mnist.load("./mnist.safetensors")
//save weigths to ./mnist.safetensors
await mnist.save("./mnist.safetensors")
import { MNIST, Tensor } from "@jsgrad/jsgrad"
const model = new MNIST()
const res = model.call(Tensor.rand([1, 1, 28, 28]))
console.log(await res.tolist())
import { MNIST } from "@jsgrad/jsgrad"
const model = new MNIST()
await model.load("./model.safetensors")
import { MNIST } from "@jsgrad/jsgrad"
const model = new MNIST()
await model.save("./model.safetensors")