Skip to content

Commit 46ea6d0

Browse files
committed
update env
1 parent ccda7a0 commit 46ea6d0

File tree

6 files changed

+4
-1
lines changed

6 files changed

+4
-1
lines changed

2022/FA22/intro-ai-series/workshop-1-ai-search-algorithms/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,8 @@ intro-ai-series
9494
```
9595
conda env create -f environment.yaml
9696
conda activate ai
97+
cd gym
98+
pip install -e .
9799
```
98100

99101
Workshop "Intro to AI: Search Algorithms" consists of <!-- however many you choose --> components:
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit 6a04d49722724677610e36c1f92908e72f51da0c

2022/FA22/intro-ai-series/workshop-1-ai-search-algorithms/src/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
USE_DETERMINISTIC=True # runs a deterministic path which results in Success
2020
TRAJECTORY = {"4x4": [1, 1, 2, 2, 1, 2],
21-
"8x8": [2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1]}
21+
"8x8": [2, 2, 2, 2, 2, 2, 2, 1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1, 1, 1, 1]}
2222

2323
ACTIONS = {0: "LEFT", 1: "DOWN", 2: "RIGHT", 3: "UP"}
2424
RENDER_MODE="rgb_array_list"

0 commit comments

Comments
 (0)