gradiatorjs
Version:
GradiatorJS is a lightweight, from-scratch autodiff engine and a neural network library written in typescript. Featuring a powerful automatic differentiation engine using a computation graph to enable backpropagation on dynamic network architectures. You
60 lines (59 loc) • 1.59 kB
JSON
{
"name": "gradiatorjs",
"version": "0.2.2",
"description": "GradiatorJS is a lightweight, from-scratch autodiff engine and a neural network library written in typescript. Featuring a powerful automatic differentiation engine using a computation graph to enable backpropagation on dynamic network architectures. You can build, train and understand complex anything from deep neural nets to CNNs directly in Javascript",
"keywords": [
"neural-network",
"deep-learning",
"machine-learning",
"autodiff",
"automatic-differentiation",
"backpropagation",
"gradient-descent",
"cnn",
"convolutional-neural-network",
"typescript",
"javascript",
"browser",
"from-scratch",
"educational",
"lightweight"
],
"homepage": "https://github.com/vark1/gradiatorjs#readme",
"bugs": {
"url": "https://github.com/vark1/gradiatorjs/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vark1/gradiatorjs.git"
},
"license": "ISC",
"author": "Varun Kumar",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"directories": {
"test": "test"
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "tsup",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"tsup": "^8.5.0",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
}
}