UNPKG

recurrent-js-gpu

Version:

GPU-accelerated Deep Recurrent Neural Networks and LSTMs in Typescript. Ported, object-oriented and refactored version of Andrej Karpathy's recurrent-js (https://github.com/karpathy/recurrentjs)

50 lines (49 loc) 1.38 kB
{ "name": "recurrent-js-gpu", "version": "1.4.9", "description": "GPU-accelerated Deep Recurrent Neural Networks and LSTMs in Typescript. Ported, object-oriented and refactored version of Andrej Karpathy's recurrent-js (https://github.com/karpathy/recurrentjs)", "keywords": [ "gpu", "gpgpu", "webgl", "recurrent", "neural networks", "lstm", "long short-term memory", "expression graphs", "automatic differentiation", "backprop" ], "main": "./dist/index.js", "types": "./dist/index.d.ts", "scripts": { "prepare": "npm run test", "test": "./node_modules/.bin/jasmine", "pretest": "npm run build:test", "build:test": "tsc -p ./tsconfig.spec.json", "prebuild:test": "npm run build", "build": "tsc -p .", "prebuild": "rimraf dist & rimraf spec/dist", "posttest": "rimraf spec/dist" }, "author": "Menno van Rahden", "homepage": "https://github.com/mvrahden/recurrent-js#readme", "bugs": { "url": "https://github.com/mvrahden/recurrent-js/issues" }, "repository": { "type": "git", "url": "git+https://github.com/mvrahden/recurrent-js.git" }, "license": "MIT", "devDependencies": { "@types/jasmine": "^2.8.3", "@types/node": "^9.3.0", "jasmine": "^2.8.0", "rimraf": "^2.6.2", "typescript": "^2.6.1" }, "dependencies": { "gpu.js": "^1.0.0" } }