Update.
[picoclvr.git] / escape.py
1 #!/usr/bin/env python
2
3 # Any copyright is dedicated to the Public Domain.
4 # https://creativecommons.org/publicdomain/zero/1.0/
5
6 # Written by Francois Fleuret <francois@fleuret.org>
7
8 import torch
9
10 from torch.nn import functional as F
11
12 ######################################################################
13
14 nb_state_codes = 4
15 nb_actions_codes = 5
16 nb_rewards_codes = 3
17 nb_lookahead_rewards_codes = 3
18
19 first_state_code = 0
20 first_actions_code = first_state_code + nb_state_codes
21 first_rewards_code = first_actions_code + nb_actions_codes
22 first_lookahead_rewards_code = first_rewards_code + nb_rewards_codes
23 nb_codes = first_lookahead_rewards_code + nb_lookahead_rewards_codes
24
25 ######################################################################
26
27
28 def generate_episodes(nb, height=6, width=6, T=10):
29     rnd = torch.rand(nb, height, width)
30     rnd[:, 0, :] = 0
31     rnd[:, -1, :] = 0
32     rnd[:, :, 0] = 0
33     rnd[:, :, -1] = 0
34     wall = 0
35
36     for k in range(3):
37         wall = wall + (
38             rnd.flatten(1).argmax(dim=1)[:, None]
39             == torch.arange(rnd.flatten(1).size(1))[None, :]
40         ).long().reshape(rnd.size())
41         rnd = rnd * (1 - wall.clamp(max=1))
42
43     states = wall[:, None, :, :].expand(-1, T, -1, -1).clone()
44
45     agent = torch.zeros(states.size(), dtype=torch.int64)
46     agent[:, 0, 0, 0] = 1
47     agent_actions = torch.randint(5, (nb, T))
48     rewards = torch.zeros(nb, T, dtype=torch.int64)
49
50     monster = torch.zeros(states.size(), dtype=torch.int64)
51     monster[:, 0, -1, -1] = 1
52     monster_actions = torch.randint(5, (nb, T))
53
54     all_moves = agent.new(nb, 5, height, width)
55     for t in range(T - 1):
56         all_moves.zero_()
57         all_moves[:, 0] = agent[:, t]
58         all_moves[:, 1, 1:, :] = agent[:, t, :-1, :]
59         all_moves[:, 2, :-1, :] = agent[:, t, 1:, :]
60         all_moves[:, 3, :, 1:] = agent[:, t, :, :-1]
61         all_moves[:, 4, :, :-1] = agent[:, t, :, 1:]
62         a = F.one_hot(agent_actions[:, t], num_classes=5)[:, :, None, None]
63         after_move = (all_moves * a).sum(dim=1)
64         collision = (
65             (after_move * (1 - wall) * (1 - monster[:, t]))
66             .flatten(1)
67             .sum(dim=1)[:, None, None]
68             == 0
69         ).long()
70         agent[:, t + 1] = collision * agent[:, t] + (1 - collision) * after_move
71
72         all_moves.zero_()
73         all_moves[:, 0] = monster[:, t]
74         all_moves[:, 1, 1:, :] = monster[:, t, :-1, :]
75         all_moves[:, 2, :-1, :] = monster[:, t, 1:, :]
76         all_moves[:, 3, :, 1:] = monster[:, t, :, :-1]
77         all_moves[:, 4, :, :-1] = monster[:, t, :, 1:]
78         a = F.one_hot(monster_actions[:, t], num_classes=5)[:, :, None, None]
79         after_move = (all_moves * a).sum(dim=1)
80         collision = (
81             (after_move * (1 - wall) * (1 - agent[:, t + 1]))
82             .flatten(1)
83             .sum(dim=1)[:, None, None]
84             == 0
85         ).long()
86         monster[:, t + 1] = collision * monster[:, t] + (1 - collision) * after_move
87
88         hit = (
89             (agent[:, t + 1, 1:, :] * monster[:, t + 1, :-1, :]).flatten(1).sum(dim=1)
90             + (agent[:, t + 1, :-1, :] * monster[:, t + 1, 1:, :]).flatten(1).sum(dim=1)
91             + (agent[:, t + 1, :, 1:] * monster[:, t + 1, :, :-1]).flatten(1).sum(dim=1)
92             + (agent[:, t + 1, :, :-1] * monster[:, t + 1, :, 1:]).flatten(1).sum(dim=1)
93         )
94         hit = (hit > 0).long()
95
96         assert hit.min() == 0 and hit.max() <= 1
97
98         rewards[:, t + 1] = -hit + (1 - hit) * agent[:, t + 1, -1, -1]
99
100     states += 2 * agent + 3 * monster
101
102     return states, agent_actions, rewards
103
104
105 ######################################################################
106
107
108 def episodes2seq(states, actions, rewards, lookahead_delta=None):
109     states = states.flatten(2) + first_state_code
110     actions = actions[:, :, None] + first_actions_code
111
112     if lookahead_delta is not None:
113         r = rewards
114         print(f"{r.size()=} {lookahead_delta=}")
115         u = F.pad(r, (0, lookahead_delta - 1)).as_strided(
116             (r.size(0), r.size(1), lookahead_delta),
117             (r.size(1) + lookahead_delta - 1, 1, 1),
118         )
119         a = u.min(dim=-1).values
120         b = u.max(dim=-1).values
121         s = (a < 0).long() * a + (a >= 0).long() * b
122         lookahead_rewards = (1 + s[:, :, None]) + first_lookahead_rewards_code
123
124     r = rewards[:, :, None]
125     rewards = (r + 1) + first_rewards_code
126
127     assert (
128         states.min() >= first_state_code
129         and states.max() < first_state_code + nb_state_codes
130     )
131     assert (
132         actions.min() >= first_actions_code
133         and actions.max() < first_actions_code + nb_actions_codes
134     )
135     assert (
136         rewards.min() >= first_rewards_code
137         and rewards.max() < first_rewards_code + nb_rewards_codes
138     )
139
140     if lookahead_delta is None:
141         return torch.cat([states, actions, rewards], dim=2).flatten(1)
142     else:
143         assert (
144             lookahead_rewards.min() >= first_lookahead_rewards_code
145             and lookahead_rewards.max()
146             < first_lookahead_rewards_code + nb_lookahead_rewards_codes
147         )
148         return torch.cat([states, actions, rewards, lookahead_rewards], dim=2).flatten(
149             1
150         )
151
152
153 def seq2episodes(seq, height, width, lookahead=False):
154     seq = seq.reshape(seq.size(0), -1, height * width + (3 if lookahead else 2))
155     states = seq[:, :, : height * width] - first_state_code
156     states = states.reshape(states.size(0), states.size(1), height, width)
157     actions = seq[:, :, height * width] - first_actions_code
158     rewards = seq[:, :, height * width + 1] - first_rewards_code - 1
159
160     if lookahead:
161         lookahead_rewards = (
162             seq[:, :, height * width + 2] - first_lookahead_rewards_code - 1
163         )
164         return states, actions, rewards, lookahead_rewards
165     else:
166         return states, actions, rewards
167
168
169 ######################################################################
170
171
172 def episodes2str(
173     states, actions, rewards, lookahead_rewards=None, unicode=False, ansi_colors=False
174 ):
175     if unicode:
176         symbols = " █@$"
177         # vert, hori, cross, thin_hori = "║", "═", "╬", "─"
178         vert, hori, cross, thin_vert, thin_hori = "┃", "━", "╋", "│", "─"
179     else:
180         symbols = " #@$"
181         vert, hori, cross, thin_vert, thin_hori = "|", "-", "+", "|", "-"
182
183     hline = (cross + hori * states.size(-1)) * states.size(1) + cross + "\n"
184
185     result = hline
186
187     for n in range(states.size(0)):
188
189         def state_symbol(v):
190             v = v.item()
191             return "?" if v < 0 or v >= len(symbols) else symbols[v]
192
193         for i in range(states.size(2)):
194             result += (
195                 vert
196                 + vert.join(
197                     ["".join([state_symbol(v) for v in row]) for row in states[n, :, i]]
198                 )
199                 + vert
200                 + "\n"
201             )
202
203         result += (vert + thin_hori * states.size(-1)) * states.size(1) + vert + "\n"
204
205         def status_bar(a, r, lr=None):
206             a, r = a.item(), r.item()
207             sb = "ISNEW"[a] if a >= 0 and a < 5 else "?"
208             sb = sb + thin_vert + ("- +"[r + 1] if r in {-1, 0, 1} else "?")
209             if lr is not None:
210                 lr = lr.item()
211                 sb = sb + thin_vert + +("- +"[lr + 1] if lr in {-1, 0, 1} else "?")
212             return sb + " " * (states.size(-1) - len(sb))
213
214         result += (
215             vert
216             + vert.join([status_bar(a, r) for a, r in zip(actions[n], rewards[n])])
217             + vert
218             + "\n"
219         )
220
221         result += hline
222
223     if ansi_colors:
224         for u, c in [("$", 31), ("@", 32)]:
225             result = result.replace(u, f"\u001b[{c}m{u}\u001b[0m")
226
227     return result
228
229
230 ######################################################################
231
232 if __name__ == "__main__":
233     nb, height, width, T = 8, 4, 6, 20
234     states, actions, rewards = generate_episodes(nb, height, width, T)
235     seq = episodes2seq(states, actions, rewards, lookahead_delta=2)
236     s, a, r, lr = seq2episodes(seq, height, width, lookahead=True)
237     print(episodes2str(s, a, r, lookahead_rewards=lr, unicode=True, ansi_colors=True))