ml-double-q-learning
Version:
Library implementing the double-q-learning algorithm.
51 lines (50 loc) • 1.29 kB
JSON
{
"name": "ml-double-q-learning",
"version": "0.0.5",
"description": "Library implementing the double-q-learning algorithm.",
"main": "./lib/double-q-learning-agent.js",
"types": "./lib/double-q-learning-agent.d.ts",
"scripts": {
"start": "tsc -w",
"ts-node": "ts-node",
"prepare": "npm test && npm run build",
"build": "rimraf lib && tsc",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [
"reinforcement learning",
"q-learning",
"double-q-learning",
"machine learning",
"reinforcement",
"ml",
"rl",
"q",
"exploration",
"exploitation"
],
"author": "Studio La Cosa Nostra <studiolacosanostra@gmail.com>",
"homepage": "https://github.com/studioLaCosaNostra/ml-double-q-learning#readme",
"repository": "https://github.com/studioLaCosaNostra/ml-double-q-learning",
"license": "ISC",
"devDependencies": {
"@tensorflow/tfjs-core": "^0.15.4",
"@types/jest": "^24.0.11",
"husky": "^1.3.1",
"jest": "^24.5.0",
"rimraf": "^2.6.3",
"ts-jest": "^24.0.0",
"ts-node": "^8.0.3",
"typescript": "^3.3.3333"
},
"dependencies": {
"ml-q-learning": "0.0.14"
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
}
}