You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To visualize the optimal and predicted paths simply pass:
63
+
```bash
64
+
--plot
65
+
```
62
66
63
67
**Flags**:
64
68
-`weights`: Path to trained weights.
65
69
-`imsize`: The size of input images. One of: [8, 16, 28]
70
+
-`plot`: If supplied, the optimal and predicted paths will be plotted
66
71
-`k`: Number of Value Iterations. Recommended: [10 for 8x8, 20 for 16x16, 36 for 28x28]
67
72
-`l_i`: Number of channels in input layer. Default: 2, i.e. obstacles image and goal image.
68
73
-`l_h`: Number of channels in first convolutional layer. Default: 150, described in paper.
@@ -85,6 +90,13 @@ Test set | 13846 | 77203 | 251755
85
90
86
91
The datasets (8x8, 16x16, and 28x28) included in this repository can be reproduced using the ```dataset/make_training_data.py``` script. Note that this script is not optimized and runs rather slowly (also uses a lot of memory :D)
87
92
93
+
## Performance: Success Rate
94
+
This is the success rate from rollouts of the learned policy in the environment (taken over 5000 randomly generated domains).
95
+
96
+
Success Rate | 8x8 | 16x16 | 28x28
97
+
-- | -- | -- | --
98
+
PyTorch | 99.69% | 96.99% | 91.07%
99
+
88
100
## Performance: Test Accuracy
89
101
90
102
**NOTE**: This is the **accuracy on test set**. It is different from the table in the paper, which indicates the **success rate** from rollouts of the learned policy in the environment.
0 commit comments