Spaces:
Runtime error
Runtime error
da03
commited on
Commit
·
5aa24db
1
Parent(s):
24d0256
main.py
CHANGED
|
@@ -524,6 +524,7 @@ async def websocket_endpoint(websocket: WebSocket):
|
|
| 524 |
next_frame, next_frame_append, next_frame_feedback = predict_next_frame(previous_frames, previous_actions)
|
| 525 |
feedback = True
|
| 526 |
if feedback:
|
|
|
|
| 527 |
previous_frames.append(next_frame_feedback)
|
| 528 |
else:
|
| 529 |
#previous_frames = []
|
|
|
|
| 524 |
next_frame, next_frame_append, next_frame_feedback = predict_next_frame(previous_frames, previous_actions)
|
| 525 |
feedback = True
|
| 526 |
if feedback:
|
| 527 |
+
print (f'appending feedback of shape {next_frame_feedback.shape}')
|
| 528 |
previous_frames.append(next_frame_feedback)
|
| 529 |
else:
|
| 530 |
#previous_frames = []
|