This repository has been archived by the owner on May 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 58
/
roboMakerSettings.json
117 lines (117 loc) · 3.92 KB
/
roboMakerSettings.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"runConfigurations": [{
"id": "DeepRacer_Cfg01",
"name": "DeepRacer Simulation",
"type": "colcon build",
"cfg": {
"workingDir": "./DeepRacer/simulation_ws",
"cmdArgs": ""
}
}, {
"id": "DeepRacer_Cfg02",
"name": "DeepRacer Simulation",
"type": "colcon bundle",
"cfg": {
"workingDir": "./DeepRacer/simulation_ws",
"cmdArgs": ""
}
}, {
"id": "DeepRacer_Training",
"name": "1. DeepRacer Train Model",
"type": "simulation",
"cfg": {
"simulationApp": {
"name": "RoboMakerDeepRacerSimulation",
"s3Bucket": "<bucket name for your simulation bundle>",
"sourceBundleFile": "./DeepRacer/simulation_ws/bundle/output.tar",
"architecture": "X86_64",
"launchConfig": {
"packageName": "deepracer_simulation",
"launchFile": "local_training.launch",
"environmentVariables": {
"MARKOV_PRESET_FILE": "deepracer.py",
"MODEL_S3_BUCKET": "<bucket name your your trained model>",
"MODEL_S3_PREFIX": "model-store",
"WORLD_NAME": "hard_track",
"ROS_AWS_REGION": "<the AWS region of your S3 model bucket>"
}
},
"robotSoftwareSuite": {
"version": "<capitalised name of ROS distribution, e.g. Kinetic>",
"name": "ROS"
},
"simulationSoftwareSuite": {
"name": "Gazebo",
"version": "<gazebo version number, e.g. 7>"
},
"renderingEngine": {
"name": "OGRE",
"version": "1.x"
}
},
"simulation": {
"outputLocation": "<bucket name for job outputs>",
"failureBehavior": "Fail",
"maxJobDurationInSeconds": 36000,
"iamRole": "<IAM Role ARN for RoboMaker>",
"vpcConfig": {
"assignPublicIp": true,
"securityGroups": [ "<security group id>" ],
"subnets": [ "<subnet id 1>", "<subnet id 2>" ]
}
}
}
}, {
"id": "DeepRacer_Evaluation",
"name": "2. DeepRacer Evaluate Model",
"type": "simulation",
"cfg": {
"simulationApp": {
"name": "RoboMakerDeepRacerSimulation",
"s3Bucket": "<bucket name for your simulation bundle>",
"sourceBundleFile": "./DeepRacer/simulation_ws/bundle/output.tar",
"architecture": "X86_64",
"launchConfig": {
"packageName": "deepracer_simulation",
"launchFile": "evaluation.launch",
"environmentVariables": {
"MARKOV_PRESET_FILE": "deepracer.py",
"MODEL_S3_BUCKET": "<bucket name your your trained model>",
"MODEL_S3_PREFIX": "model-store",
"WORLD_NAME": "hard_track",
"ROS_AWS_REGION": "<the AWS region of your S3 model bucket>"
}
},
"robotSoftwareSuite": {
"version": "<capitalised name of ROS distribution, e.g. Kinetic>",
"name": "ROS"
},
"simulationSoftwareSuite": {
"name": "Gazebo",
"version": "<gazebo version number, e.g. 7>"
},
"renderingEngine": {
"name": "OGRE",
"version": "1.x"
}
},
"simulation": {
"outputLocation": "<bucket name for job outputs>",
"failureBehavior": "Fail",
"maxJobDurationInSeconds": 3600,
"iamRole": "<IAM Role ARN for RoboMaker>",
"vpcConfig": {
"assignPublicIp": true,
"securityGroups": [ "<security group id>" ],
"subnets": [ "<subnet id 1>", "<subnet id 2>" ]
}
}
}
}, {
"id": "DeepRacer_wf1",
"type": "workflow",
"name": "DeepRacer - Build and Bundle Simulation",
"runCfgIds": ["DeepRacer_Cfg01", "DeepRacer_Cfg02"]
}
]
}