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)
30 lines • 529 B
JSON
{
"compilerOptions": {
"lib": [
"es6",
"dom"
],
"target": "es6",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"declaration": true,
"removeComments": true,
"rootDir": "./src/",
"outDir": "./dist/",
"noImplicitAny": false,
"strictNullChecks": false,
"allowUnusedLabels": false,
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"node_modules",
"dist"
]
}