-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.43 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "webppl-agents",
"version": "1.0.0",
"description": "Webppl library for MDP and POMDP agent models and for generating Gridworld and Bandit problems. JS library for displaying Gridworld.",
"main": "src/visualization/gridworld.js",
"dependencies": {
"underscore": "^1.8.3",
"paper": "^0.9.25"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"webppl": {
"wppl": [
"src/utils/utils.wppl",
"src/environments/makeGridWorldMDP.wppl",
"src/environments/makeBanditPOMDP.wppl",
"src/environments/makeGridWorldPOMDP.wppl",
"src/agents/makeMDPAgent.wppl",
"src/agents/makePOMDPAgent.wppl",
"src/simulation/simulateMDP.wppl",
"src/simulation/simulatePOMDP.wppl",
"src/visualization/gridworld.wppl",
"src/extra/extend.wppl",
"src/extra/getMarginalObject.wppl",
"src/extra/getRestaurantHyperbolicInfer.wppl",
"src/extra/makeBanditStartState.wppl",
"src/extra/makeBanditAgent.wppl",
"src/extra/inferBandit.wppl",
"src/extra/makeRestaurantSearchPOMDP.wppl"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/agentmodels/webppl-agents.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/agentmodels/webppl-agents/issues"
},
"homepage": "https://github.com/agentmodels/webppl-agents#readme"
}