forked from SwiftSage/SwiftSage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheval_utils.py
More file actions
930 lines (776 loc) · 44.2 KB
/
Copy patheval_utils.py
File metadata and controls
930 lines (776 loc) · 44.2 KB
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
# from transformers import T5Tokenizer, T5ForConditionalGeneration
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
from transformers import AutoConfig
from math import ceil
import random
import re
from sentence_transformers import SentenceTransformer
import numpy as np
from sklearn.metrics.pairwise import cosine_similarity
from slow_agent.utils import completion_with_backoff
from data_utils.data_utils import formalize_action, recover_action
import string
import editdistance
import time
import tiktoken
from slow_agent import local_llm
action_type_description = [
{"action_type": "WAIT()", "desc": "wait for something to be done, for example, an object on stove to be boiled"},
{"action_type": "TELEPORT(room)", "desc": "directly go to a room such as TELEPORT(kitchen)"},
# {"action_type": "LOOK(object)", "desc": "look at an object"},
{"action_type": "READ(object)", "desc": "read an object such as a recipe or a book"},
{"action_type": "PICK(object)", "desc": "pick up an object and put it into your inventory"},
{"action_type": "OPEN(object)", "desc": "open an object with doors before you search or put things in it. For example, OPEN(freezer), OPEN(blast furnace)."},
{"action_type": "ACTIVATE(object)", "desc": "activate and turn on an object such as sink or stove, so that you can use it. "},
{"action_type": "DEACTIVATE(object)", "desc": "deactivate turn off the object"},
{"action_type": "EXAMINE(object)", "desc": "look at an object carefully. For example, EXAMINE(apple). Note that you cannot EXAMINE a location."},
{"action_type": "CONNECT(object)", "desc": "connect two objects so that they become useful"},
{"action_type": "MOVE(object, place)", "desc": "move/place the object to a place"},
{"action_type": "USE(object A, object B)", "desc": "use an object A on object B, for example, USE(thermometer in inventory, water) to check the temperature of water."},
{"action_type": "MIX(container)", "desc": "mix the objects in a container such as MIX(cup containing sugar and water)"},
{"action_type": "DUNK(object A, object B)", "desc": "dunk object A into object B (optional)"},
{"action_type": "DROP(object A, object B)", "desc": "drop object A into object B (optional)"},
{"action_type": "POUR(object A, object B)", "desc": "pour the object A into the container B; For example, POUR(red paint, glass cup)"},
{"action_type": "FOCUS(object)", "desc": "focus on an important object that are required by the task description (e.g., a substance, a plant, an animal, and so on)."},
]
focus_on_count = {
"0": 1, "1": 1, "2": 1, "3": 1, "4": 2, "5": 1, "6":1, "7":1,
"8": 1, "9": 1, "10": 1, "11": 1, "12": 4, "13": 4, "14":1, "15":1,
"16": 1, "17": 1, "18": 2, "19": 1, "20": 3, "21": 3, "22":1, "23":1,
"24": 1, "25": 1, "26": 2, "27": 1, "28": 1, "29": 2
}
rooms = ["hallway", "greenhouse", "green house", "kitchen", "bathroom", "outside", "workshop", "art studio", "foundry", "bedroom", "living room"]
def is_action_failed(obs):
return obs == "No known action matches that input." or "can't" in obs or "not" in obs or "doesn't" in obs
def find_non_alpha_index(s):
for i, c in enumerate(s):
if not c.isalpha() and c != ' ':
return i
return -1 # if no non-alpha character found
def clean_look(look, version="not_lite"):
if "You also see:" in look:
end_ind = look.index("You also see:")
look = look[:end_ind]
clean_looks = []
for line in look.splitlines():
if not line.strip():
continue
if "In it, you see:" in line:
if version != "lite":
clean_looks.append(line)
continue
if "the agent" in line or " air" in line:
continue
line = line.replace("substance called ", " ").strip()
if version == "lite":
end_ind = find_non_alpha_index(line.strip())
if end_ind > 0:
line = line[:end_ind].strip()
clean_looks.append(line)
if version == "lite":
return ", ".join(clean_looks)
else:
return "\n \t - ".join(clean_looks[:])
def get_current_room(look):
global rooms
first_sent = look.split(".")[0]
for r in rooms:
if "called the "+ r in first_sent:
return r
return None
def load_model(args, device):
tokenizer = AutoTokenizer.from_pretrained(args["lm_path"])
lm_model = AutoModelForSeq2SeqLM.from_pretrained(args["lm_path"])
lm_model.eval()
lm_model.to(device)
if args["sbert"]:
sbert_model = SentenceTransformer('paraphrase-MiniLM-L6-v2')
else:
sbert_model = None
if args["local_llm"] == "xgen":
local_llm.load()
assert local_llm.llm_model is not None
assert local_llm.llm_tokenizer is not None
print("Testing local LLM:" + args["local_llm"])
print(local_llm.generate("Hello, who are you?")) # for testing
llm_model = local_llm.llm_model
else:
llm_model = None
return lm_model, tokenizer, sbert_model, llm_model
def load_variation(env, args, task_num, logger):
variations = []
if (args["set"] == "train"):
variations = list(env.getVariationsTrain())
if task_num == 26:
variations = variations[:int(len(variations)/10)]
elif task_num == 29:
variations = variations[:int(len(variations)/2)]
elif (args["set"] == "test"):
variations = list(env.getVariationsTest())
if args["cut_off"]:
test_len = min(50, len(variations))
random.seed(1)
random.shuffle(variations)
variations = variations[:test_len]
elif (args["set"] == "dev"):
variations = list(env.getVariationsDev())
variations = variations[:3]
elif (args["set"] == "test_mini_2"):
variations = list(env.getVariationsTest())
# random.seed(1)
# random.shuffle(variations)
variations = variations[3:10]
elif (args["set"] == "test_mini"):
variations = list(env.getVariationsTest())
# random.seed(1)
# random.shuffle(variations)
variations = variations[:3]
elif (args["set"] == "test_mini_mini"):
variations = list(env.getVariationsTest())
# random.seed(1)
# random.shuffle(variations)
variations = variations[:1]
else:
logger.info("ERROR: Unknown set to evaluate on (" + str(args["set"]) + ")")
exit(1)
logger.info(variations)
return variations
def findValidActionNew(predictions, env, look, recent_actions, sbert_model, logger, k=5):
global rooms
valid_open_door = ["open door to " + i for i in rooms]
invalid_focus = ["focus on "+x for x in ["agent", "air"]+rooms]
validActions = set(env.getValidActionObjectCombinations())
validActions.update(valid_open_door)
validActions.difference_update(invalid_focus)
inventory = env.inventory().lower()
validActions.difference_update(recent_actions[-3:])
for va in list(validActions):
if "door" in va and "open" not in va:
validActions.remove(va)
continue
if va.startswith("focus on"):
pattern = re.compile(r"\b(?:focus|on|in|to)\b", re.IGNORECASE)
used_objs = pattern.sub("", va).split(" ")
valid = True
for obj in used_objs:
if obj not in look + " " + inventory:
valid = False
if not valid:
validActions.remove(va)
# 1) if acton in top k is valid, choose it
found_valid_in_top = False
action = None
for pred in predictions[:k]:
pred = pred.replace("green house", "greenhouse")
if pred.strip() in validActions:
found_valid_in_top = True
action = pred.strip()
break
if found_valid_in_top:
return action
else:
logger.info(f"No valid action found in top k={k} predictions.")
validActions = list(validActions)
validActions.sort(key=lambda x: len(x))
logger.info("Valid Predictions: "+ str(validActions))
# 2) else, find most similar action
if sbert_model:
pred_vectors = sbert_model.encode(predictions[:5], batch_size=5, show_progress_bar=False)
valid_action_vectors = sbert_model.encode(validActions, batch_size=min(len(validActions), 128), show_progress_bar=False)
# Calculate cosine similarity between each vector in pred_vectors and all vectors in valid_action_vectors
similarity_matrix = cosine_similarity(pred_vectors, valid_action_vectors)
# Take the sum of cosine similarities for each vector in valid_action_vectors
sum_similarities = similarity_matrix.sum(axis=0)
# Find the indices of the k vectors with the highest sum of cosine similarities
N = 5 # Change this to the number of top vectors you want to retrieve
top_indices = np.argpartition(sum_similarities, -N)[-N:]
# Print the indices of the top vectors
# print(f"The indices of the top {k} vectors in valid_action_vectors are: {top_indices}")
logger.info("The most similar valid actions to the predictions:")
for ti in top_indices:
logger.info("\t\t - "+validActions[ti])
action = validActions[top_indices[0]]
else:
# jaccard
topValue = 0.0
topAction = predictions[0]
# embPred = sbert_model.encode(pred, convert_to_tensor=True)
tokensPred = predictions[0].split(" ")
uniqueTokensPred = set(tokensPred)
for validAction in validActions:
tokensAction = validAction.split(" ")
uniqueTokensAction = set(tokensAction)
intersection = uniqueTokensPred.intersection(uniqueTokensAction)
if (len(intersection) > topValue):
topAction = validAction
topValue = len(intersection)
logger.info("TOP VALID ACTION: " + topAction)
# Sanitize top action
topAction = re.sub(r'[^A-Za-z0-9 ]+', '', topAction)
action = topAction
return action
def getFilteredValidActions(env, look, filter=True, task_id=None, task_desc=None):
global rooms
valid_open_door = ["open door to " + i for i in rooms]
invalid_focus = ["focus on "+x for x in ["agent", "air"]+rooms]
validActions = set(env.getValidActionObjectCombinations())
validActions.update(valid_open_door)
validActions.difference_update(invalid_focus)
inventory = env.inventory()
validActions.add("wait")
validActions.add("wait1")
if task_id is not None and task_desc is not None:
if task_id not in [5,6,7,8,17,18,19,20]:
for va in list(validActions):
if not va.startswith("focus on"):
continue
items = va.replace("focus on", "").split()
task_desc = task_desc.translate(str.maketrans('', '', string.punctuation)).lower()
if len(set(items) & set(task_desc.split())) == 0:
validActions.remove(va)
if task_id not in [14,15,16]:
for va in list(validActions):
if not va.startswith("examine"):
continue
items = va.replace("examine", "").split()
task_desc = task_desc.translate(str.maketrans('', '', string.punctuation)).lower()
if len(set(items) & set(task_desc.split())) == 0:
validActions.remove(va)
for va in list(validActions):
if not va.startswith("mix"):
continue
container_words = ["cup", "bowl", "metal pot", "jug"]
if not any(["mix" + c for c in container_words]):
validActions.remove(va)
if not filter:
return validActions
for va in list(validActions):
if "door" in va and "open" not in va:
validActions.remove(va)
continue
return validActions
def sbert_search(action_list, validActions, sbert_model, logger, k=1, N=1, return_scores=False):
validActions = list(validActions)
pred_vectors = sbert_model.encode(action_list[:k], batch_size=5, show_progress_bar=False)
valid_action_vectors = sbert_model.encode(validActions, batch_size=min(len(validActions), 128), show_progress_bar=False)
# Calculate cosine similarity between each vector in pred_vectors and all vectors in valid_action_vectors
similarity_matrix = cosine_similarity(pred_vectors, valid_action_vectors)
# Take the sum of cosine similarities for each vector in valid_action_vectors
sum_similarities = similarity_matrix.sum(axis=0)
N = min(N, len(validActions))
# Find the indices of the k vectors with the highest sum of cosine similarities
# N = 10 # Change this to the number of top vectors you want to retrieve
top_indices = np.argpartition(sum_similarities, -N)[-N:]
# Print the indices of the top vectors
# print(f"The indices of the top {k} vectors in valid_action_vectors are: {top_indices}")
# logger.info("The most similar valid actions to the predictions:")
# for ti in top_indices:
# logger.info("\t\t - "+validActions[ti])
if N == 1:
action = validActions[top_indices[0]]
score = sum_similarities[top_indices[0]]
if return_scores:
return action, score
return action
else:
action_list = []
for i in range(N):
action = validActions[top_indices[i]]
action_list.append(action)
return action_list
def find_object(action, objects_string):
# Find the index of the target object in the words list
target_object = ' '.join(action.split()[2:])
if target_object not in objects_string:
return action
target_object_index = objects_string.index(target_object)
# Check if the target object is inside a container
if objects_string[target_object_index - 8:target_object_index - 1] == "called ":
container_start_index = objects_string.rfind("(", 0, target_object_index) - 1
container_end_index = objects_string.rfind(")", 0, target_object_index) + 1
container = objects_string[container_start_index:container_end_index]
action = action.replace(target_object, f"{container}")
return action
def clean_obj_name(action):
if "unknown substance" not in action:
return action
for n in "ABCDEFGHIJKLMNOPQRSTUVWXYZ":
action = action.replace(f" {n}", "")
return action
def try_to_replace(action, validActions, look=None, inventory=None):
if action.startswith("wait"):
return "wait"
if action in validActions:
return action
try_action = action.replace("green house", "greenhouse")
try_action = try_action.replace("adult", "adult adult")
try_action = try_action.replace("baby", "baby baby")
if try_action in validActions:
return try_action
if action.startswith("go to"):
if action.replace("go to", "teleport to") in validActions:
return action.replace("go to", "teleport to")
elif action.replace("go to", "open door to") in validActions:
return action.replace("go to", "open door to")
if action.startswith("pick up"):
action = find_object(action, look)
if action in validActions:
return action
if action.replace("substance in ","") in validActions:
return action
if action.startswith("focus on"):
obj = action.replace("focus on", "").strip()
todo = "focus on substance in inventory"
if obj in inventory and todo in validActions:
return todo
if action.startswith("move") and "to" in action:
pattern = r"move (.*?) to"
obj = re.search(pattern, action)
if obj is None:
return action
else:
obj = obj.group(1)
todo = action.replace(obj, "substance in inventory")
if obj in inventory and todo in validActions:
return todo
split_string = action.rsplit(" in ", 1) # Split the string from the last occurrence of " in "
if split_string[0] in validActions:
return split_string[0]
if " unknown substance " in action:
action = split_string[0]
action = clean_obj_name(action)
if action in validActions:
return action
for r in rooms:
action = action.replace("in " + r, "")
return action
def findValidActionWithSystem2(predictions, env, task_id, task_description, look,
recent_actions, recent_reward, recent_obs, recent_locs, recent_looks, failed_messages,
demo_data, logger, sbert_model, step, last_time_system2_steps,
useful_focus_on, focus_on_done, force_system_1, force_system_2,
gpt_version="gpt-4", llm=None):
inventory = env.inventory()
#### Done preparing valid actions ####
validActions = getFilteredValidActions(env, look, task_id=task_id, task_desc=task_description)
enable_system2 = True
# if not force_system_2:
if True:
# 1) if acton in top 3 is valid, try to choose it
found_valid_in_top = False
action = None
if recent_actions[-1].startswith("wait") and predictions[0].startswith("wait"):
predictions = predictions[1:]
for pred in predictions[:1]:
# pred = pred.replace("green house", "greenhouse")
pred = try_to_replace(pred, validActions, look, inventory)
action = pred.strip()
if pred.strip().startswith("focus on") and focus_on_done:
break
if pred.strip() in validActions:
found_valid_in_top = True
break
logger.info(f"found_valid_in_top={found_valid_in_top} ({action}) ")
if found_valid_in_top and len(recent_actions) < 10:
# Use fast agent in the first 10 steps
enable_system2 = False
if found_valid_in_top and step - last_time_system2_steps[-1] < 5:
# only when we did not use System 2 in the past five time steps
enable_system2 = False
if found_valid_in_top and sum(recent_reward[-5:]) > 0:
logger.info("Recent scores has increased in recent 5 timesteps. Not doing System 2.")
enable_system2 = False
if found_valid_in_top and action not in recent_actions[-3:]:
logger.info("No such actions in recent 3 timesteps. Not doing System 2.")
enable_system2 = False
if found_valid_in_top and not enable_system2 and not force_system_2:
assert action is not None
logger.info("Using Fast System output.")
return False, action
if ((not found_valid_in_top and step - last_time_system2_steps[-1] <= 2) or force_system_1) and not force_system_2:
# only when we did not use System 2 in the past five time steps
predictions = [try_to_replace(pred, validActions, look, inventory) for pred in predictions if not pred.startswith("focus on")][:3]
trial_action = None
for pred in predictions:
if pred in validActions:
trial_action = pred
break
trial_action = predictions[0] if trial_action is None and predictions else trial_action
return False, trial_action
assert enable_system2 or force_system_2
if found_valid_in_top:
fast_action = action
else:
fast_action = None
logger.info("Now, start using System 2: OpenAI for reasoning")
real_action_list = []
try:
enc = tiktoken.encoding_for_model(gpt_version)
demos = demo_data[str(task_id)]
prompt_to_plan = compose_prompt_to_plan(demos, useful_focus_on, task_description, recent_actions, recent_obs, recent_locs, recent_looks, failed_messages, look, inventory, fast_action, version="full")
if gpt_version == "gpt-3.5-turbo":
length = len(enc.encode(prompt_to_plan))
if length >= 4000:
prompt_to_plan = compose_prompt_to_plan(demos, useful_focus_on, task_description, recent_actions, recent_obs, recent_locs, recent_looks, failed_messages, look, inventory, fast_action, version="lite")
logger.info("-"*30 + "prompt_to_plan" + "-"*30)
logger.info("\n"+prompt_to_plan)
logger.info("-"*35 + "-"*35)
if llm is None:
response = completion_with_backoff(model=gpt_version, # try gpt-4? # gpt-3.5-turbo
messages=[{"role": "user", "content": prompt_to_plan}], n = 1, temperature=0, top_p=1)
response_plan = response["choices"][0]["message"]["content"]
else:
response_plan = local_llm.generate(prompt_to_plan, logger=logger.info)
logger.info("-"*30 + "response_plan" + "-"*30)
logger.info("\n"+response_plan)
logger.info("-"*35 + "-"*35)
logger.info("Sleeping for 10s.")
time.sleep(10)
## 2) create actions
prompt_to_next_actions = compose_prompt_to_nextactions(demos, task_description,
recent_actions, recent_obs, recent_locs, failed_messages,
look, inventory, response_plan, useful_focus_on, k=10, version=gpt_version)
logger.info("-"*30 + "prompt_to_next_actions" + "-"*30)
logger.info("\n"+prompt_to_next_actions)
logger.info("-"*35 + "-"*35)
if llm is None:
response = completion_with_backoff(model=gpt_version,
messages=[{"role": "user", "content": prompt_to_next_actions}], n = 1, temperature=0, top_p=1)
response_next_actions = response["choices"][0]["message"]["content"]
else:
response_next_actions = local_llm.generate(prompt_to_next_actions)
def post_process(response_next_actions):
logger.info("-"*30 + "response_next_actions" + "-"*30)
logger.info("\n"+response_next_actions)
logger.info("-"*35 + "-"*35)
action_list = response_next_actions.split("\n")[:5] # only the take the first 10
logger.info(f"action_list={action_list}")
real_action_list = []
guess_obs_list = []
for action in action_list:
if "repeat" in action.lower():
if "wait" in real_action_list[-1].lower():
todos = real_action_list[-3:]
todo_obs = guess_obs_list[-3:]
else:
todos = real_action_list[-2:]
todo_obs = guess_obs_list[-3:]
real_action_list += todos*5
guess_obs_list += todo_obs*5
if "until" in action.lower():
break
continue
if ":" not in action or "Action" not in action or "(" not in action or ")" not in action:
continue
start_ind = action.index(":")
end_ind = action.index(")")
if "-->" in action:
guess_obs = action[action.index("-->")+3:].strip().replace("You ", "").replace(" the ", " ").replace(".", "").strip()
else:
guess_obs = "None"
action = action[start_ind+1: end_ind+1].strip()
action = recover_action(action)
if action:
real_action_list.append(action)
guess_obs_list.append(guess_obs)
logger.info(f"real_action_list={real_action_list}")
return real_action_list, guess_obs_list
real_action_list, guess_obs_list = post_process(response_next_actions)
except Exception as e:
logger.info("OpenAI error:" + str(e))
if len(real_action_list) == 0:
logger.info("Error from System 2. Try again.")
prompt_again = []
prompt_again.append("Your previous generation is wrong. I cannot use your output actions to complete the next subgoal or the task. Please rethink and generate the actions again. ")
prompt_again.append("Note that I can only do actions with available objects in the current in environment or my inventory. If the needed object are not available, please teleport to the location first.")
prompt_again.append("Please use the below format to organize the response.")
prompt_again.append("Action 1: [...] --> \n Action 2: [...] --> \n ...")
prompt_again = "\n".join(prompt_again)
logger.info("-"*30 + "prompt_again" + "-"*30)
logger.info("\n"+prompt_again)
logger.info("-"*35 + "-"*35)
if llm is None:
response_v2 = completion_with_backoff(model=gpt_version,
messages=[{"role": "user", "content": prompt_to_next_actions},
{"role": "assistant", "content": response_next_actions},
{"role": "user", "content": prompt_again},
], n = 1, temperature=0, top_p=1)
response_next_actions_v2 = response_v2["choices"][0]["message"]["content"]
else:
# TODO: llm.generate()
response_next_actions_v2 = local_llm.generate(prompt_to_next_actions
+ "### Assistant: "
+ response_next_actions
+ "### Human: "
+ prompt_again)
real_action_list, guess_obs_list = post_process(response_next_actions_v2)
if len(real_action_list) == 0:
logger.info("Error from System 2. Still does not work. Use Fast System (+ sbert)")
# if action is None:
action_list = [try_to_replace(predictions[0], validActions, look, inventory)]
action = sbert_search(action_list, list(validActions), sbert_model, logger)
return False, action
# TODO: select the action
return True, (real_action_list, guess_obs_list)
def compose_prompt_to_nextactions(demos, task_desc, recent_actions, recent_obs, recent_locs, failed_messages, look, inventory, response_next_subgoal, useful_focus_on, fast_action=None, k=10, version="gpt-4"):
prompt_to_next_actions = []
prompt_to_next_actions.append("You are an experienced teacher who always guide students to complete the science experiments. Now let's do science experiments with a sequence of actions.")
prompt_to_next_actions.append("In this environment, there are a few locations: art studio, workshop, kitchen, living room, bedroom, bathroom, foundry, greenhouse, outside, and a hallway connecting them.")
prompt_to_next_actions.append("You have done a few science experiments successfully and below are the action history of your experiments with similar tasks.")
prompt_to_next_actions.append("Example task 1: "+ demos[0][0])
prompt_to_next_actions += demos[0][1:]
if len(demos) >= 2:
prompt_to_next_actions.append("Example task 2: "+ demos[1][0])
prompt_to_next_actions += demos[1][1:]
# prompt_to_next_actions += ["- Action: "+ a for a in demos[1][1:]]
prompt_to_next_actions.append("In a new science experiment that is similar to the above two, " + task_desc.replace("Your", "my"))
# prompt_to_next_actions.append("Given the above completed subgoals, what should be your next subgoal to complete for finishing the task?")
prompt_to_next_actions.append(f"My previous {k} actions and observations are as follows:")
recent_actions, recent_obs, _, _, recent_locs = clean_history(recent_actions, recent_obs, [-1]*len(recent_actions), [-1]*len(recent_actions), recent_locs)
history = []
repeat = 0
for ind, (l, a, o) in enumerate(zip(recent_locs[:], recent_actions[:], recent_obs[:])):
if o == "N/A":
continue
fa = formalize_action(a)
if "(" not in fa:
continue
at = fa[:fa.index("(")]
if at not in "\n".join(demos[0][1:]):
# Skipping the actions with types not in the demos
continue
to_add = f"- (in {l}) Action: {fa} --> {o}"
if ind+1 < len(recent_actions) and a in recent_actions[max(0, ind-5):ind] and a in recent_actions[ind+1:min(len(recent_actions), ind+5)]:
repeat += 1
continue
history.append(to_add)
if repeat > 0:
history.append(f"Repeat the above action for {repeat} times.")
repeat = 0
# prompt_to_next_actions.append()
prompt_to_next_actions += history[-k:]
if useful_focus_on:
prompt_to_next_actions.append("Importantly, I have FOCUS on these things already: " + ", ".join([fo.replace("focus on", "") for fo in useful_focus_on]))
else:
prompt_to_next_actions.append("Importantly, I have FOCUS on nothing yet.")
pattern = r"focus on\s+(\b\w+\b(\s+\b\w+\b)*)"
matches = re.findall(pattern, task_desc)
to_focus = [match[0].replace("the ", " ").strip() for match in matches]
pattern = r"find\s+(\b\w+\b(\s+\b\w+\b)*)"
matches = re.findall(pattern, task_desc.replace("a(n)", "a"))
to_focus_v2 = [match[0].replace("the ", " ").strip() for match in matches]
# prompt_to_next_actions.append("You have completed these subgoals:")
# prompt_to_next_actions.append(response_previous_subgoals)
prompt_to_next_actions.append("However, my actions so far cannot complete the task now. I do not know what to do for the next steps.")
if failed_messages:
failed_messages = set(failed_messages)
prompt_to_next_actions.append("There are some error messages about my previous actions:")
prompt_to_next_actions += failed_messages
prompt_to_next_actions.append("I asked my teacher for advice and the teacher told me these advice:")
prompt_to_next_actions.append(response_next_subgoal.replace("Question", "Answer").replace("Answer", "Advice"))
prompt_to_next_actions.append("")
prompt_to_next_actions.append("In current environment: " + clean_look(look) + "\n" + inventory)
prompt_to_next_actions.append("What should be my next actions to complete the next subgoal in the current environment? ")
prompt_to_next_actions.append("If any of the suggested next subgoals need knowledge to make decisions (e.g., determining or comparing the properties of objects and animals), please do that for me.")
prompt_to_next_actions.append("The ONLY allowed action types are:")
for ai in action_type_description:
at = ai['action_type']
at = at[:at.index("(")]
if at not in "\n".join(demos[0][1:] + demos[0][2:]):
continue
prompt_to_next_actions.append(f"- {ai['action_type']} : {ai['desc']} ")
prompt_to_next_actions.append(f"Important! You can only use FOCUS actions on these items: {', '.join(to_focus)} . ") # (Hint: {','.join(to_focus_v2)})
prompt_to_next_actions.append("You cannot FOCUS on any other things. Please only use FOCUS as required by the task description. Also, please FOCUS more directly, try not to focus on the container.")
prompt_to_next_actions.append("Please use the above mentioned action types to convert the unfinished subgoal to a short sequence of concrete actions. DO NOT USER OTHER TYPES OF ACTIONS. Follow the report of the two example tasks shown to you previously.")
prompt_to_next_actions.append("Please do not try to look for books or computers to look up information. You will need to use your own commonsense knowledge to make decisions (e.g., determining properties of objects and animals).")
prompt_to_next_actions.append("Note that I can only do actions with available objects in the current location or inventory!!")
prompt_to_next_actions.append("Please use the below format to organize the response.")
prompt_to_next_actions.append("Action 1: [...] --> \n Action 2: [...] --> \n ...")
return "\n".join(prompt_to_next_actions)
def compose_prompt_to_plan(demos, useful_focus_on, task_desc, recent_actions, recent_obs, recent_locs, recent_looks, failed_messages, look, inventory, fast_action, version="full"):
clean_obs = []
assert len(recent_obs) == len(recent_locs)
repeat = 0
for i, obs in enumerate(recent_obs[1:]):
# if obs.startswith("This room is called"):
# end_index = obs.index("In it")
# obs = obs[:end_index]
if obs.startswith("You move to the") or obs.startswith("You go to the") or obs.startswith("You teleport to the"):
obs = obs.replace("go to", "move to").replace("teleport to", "move to")
if obs == "The door is already open.":
continue
# if obs.startswith("a substance called"):
if f"In {recent_locs[i+1]}, {obs}" in clean_obs:
continue
if recent_actions[i+1] in recent_actions[i+1-5:i+1] and recent_actions[i+1] in recent_actions[i+2:i+2+5]:
repeat += 1
continue
if "move to the" in obs:
clean_obs.append(f"{obs}")
else:
if version == "lite":
clean_obs.append(f"In {recent_locs[i+1]}, {obs}")
else:
clean_obs.append(f"In {recent_locs[i+1]}, {recent_actions[i+1]} --> {obs}")
if repeat > 0:
clean_obs.append(f"Repeat the above {repeat} times.")
repeat = 0
final_obs = []
for i, co in enumerate(clean_obs):
if i+1 < len(clean_obs) and "move to the" in clean_obs[i] and "move to the" in clean_obs[i+1]:
continue
final_obs.append(co.replace("a substance called", "there is a"))
prev_obs = [f"- {j+1}. {o}" for j, o in enumerate(final_obs)]
prompt_to_plan = []
prompt_to_plan.append("You are an experienced teacher who always guides students to complete the science experiments by giving executable advice and instructions with world knowledge.")
prompt_to_plan.append("You have done a science experiment successfully and below is the action history of your experiment.")
prompt_to_plan.append("Example task: "+ demos[0][0])
clean_actions = []
for history in demos[0][1:]:
if "Action: " not in history:
continue
start_ind = history.index("Action: ") + len("Action: ")
end_ind = history.index(" -->")
action = history[start_ind:end_ind]
action = recover_action(action)
if action is not None:
clean_actions.append(history[:start_ind] + action + history[end_ind:])
prompt_to_plan += clean_actions
prompt_to_plan.append("In a new science experiment that is similar to the above one, " + task_desc.replace("Your", "my"))
prompt_to_plan.append("In this environment, there are a few rooms: art studio, workshop, kitchen, living room, bedroom, bathroom, foundry, greenhouse, outside, and a hallway connecting them.")
prompt_to_plan.append("To complete this task, I have done some actions and the observations are listed here:")
if version == "lite":
prev_obs = prev_obs[-15:]
prompt_to_plan += prev_obs
# print(recent_looks)
# print(recent_locs)
if len(recent_looks) >= 2 and version != "lite":
prompt_to_plan.append("In some previously visited locations:")
for location, look_round in recent_looks.items():
if location != recent_locs[-1]:
prompt_to_plan.append(f"In {location}: " + clean_look(look_round, version="lite"))
prompt_to_plan.append("* Current location *: " + clean_look(look)) # + look.replace(" egg", " ").replace(" adult ", " ").replace(" baby ", " ")
prompt_to_plan.append(inventory.replace("Your ", "My "))
if useful_focus_on:
prompt_to_plan.append("Importantly, I have FOCUS on these things already: " + ", ".join([fo.replace("focus on", "") for fo in useful_focus_on]))
else:
prompt_to_plan.append("Importantly, I have FOCUS on nothing yet.")
# prompt_to_plan.append("However, my actions so far cannot complete the task. I do not know what to do for the next steps.")
prompt_to_plan.append("However, I do not know what to do for the next steps.")
if fast_action:
prompt_to_plan.append(f"My instinct tells me that it might be reasonable to {fast_action} now but I'm not so sure.")
if failed_messages:
failed_messages = set(failed_messages)
failed_messages = set(failed_messages)
prompt_to_plan.append("There are some error messages about my previous actions:")
prompt_to_plan += failed_messages
prompt_to_plan.append("Please review the task description and the previous observations and then answer the following questions to help me plan for efficiently completing the next subgoal.")
prompt_to_plan.append("Question 1: To efficiently complete the task, what substance and objects do I need to collect? Please list them and their possible locations one by one. Please ignore protective gears because I have them already.")
prompt_to_plan.append("Question 2: Based on your answer to Question 1, are there any substance or objects that are not in my inventory now and I should keep looking for?" + \
" If so, which rooms are they likely to be? " + \
"Note that some of your suggested items might not exist in the rooms. In that case, let's try to use the similar ones in the environment." + \
" Note that I cannot do actions without them if they are not collected yet. ")
pattern = r"focus on\s+(\b\w+\b(\s+\b\w+\b)*)"
matches = re.findall(pattern, task_desc)
to_focus = [match[0].replace("the ", " ").strip() for match in matches]
prompt_to_plan.append("Question 3: To most efficiently complete the task, what will be the important subgoals to finish? Please list up to five subgoals." + \
f" Importantly, please include the subgoals about 'focus on' as required in the task description. Remember that it is ONLY possible focus on these items: {', '.join(to_focus)}! You should NOT focus on other things!! If you list a subgoal of focusing on, make sure that is mentioned and required by the task.")
prompt_to_plan.append("Question 4: In these subgoals, what have I already completed based on the previous observations? And which subgoals should I aim to do right now?" + \
" These subgoals may need additional common knowledge to make decisions. Please recall the knowledge about the properties of objects or animals. Think step by step, and list the facts that are useful. And then use them for determining or comparing if needed. Finally, list the next subgoals based on the knowledge and current observations.")
prompt_to_plan.append("Question 5: Based on the observations, did I make any mistakes that prevent me from efficiently finishing the next subgoals? Did I forget to go to a location to pick up thing? Or did I forget to open/activate/move something? Did I repeat any actions too many times? If so, how should I fix it?")
prompt_to_plan.append("Please do not try to look for books or computers to look up information. You will need to use your own commonsense knowledge to make decisions (e.g., determining properties of objects and animals).")
prompt_to_plan.append("Please read the task description carefully, and think step by step to answer these questions one by one. Please be concise. Thank you very much.")
return '\n'.join(prompt_to_plan)
def clean_history(recent_actions, recent_obs, recent_score, recent_reward, recent_locs):
assert len(recent_actions) == len(recent_obs) == len(recent_score) == len(recent_reward) == len(recent_locs)
N = len(recent_actions)
inds_to_remove = []
for ind in range(N):
if recent_actions[ind].startswith("examine"):
inds_to_remove.append(ind)
if recent_actions[ind].startswith("teleport to") and recent_score[ind] >= 0:
recent_actions[ind] = recent_actions[ind].replace("teleport", "go")
recent_obs[ind] = recent_obs[ind].replace("teleport", "go")
if recent_actions[ind].startswith("go to") and recent_score[ind] < 0:
recent_actions[ind] = recent_actions[ind].replace("go", "teleport")
recent_obs[ind] = recent_obs[ind].replace("go", "teleport")
if recent_actions[ind].startswith("open door") and recent_score[ind] < 0:
inds_to_remove.append(ind)
if recent_actions[ind] in recent_actions[ind+1: min(ind+3, N)] and recent_score[ind] >= 0 :
inds_to_remove.append(ind)
recent_actions = [item for idx, item in enumerate(recent_actions) if idx not in inds_to_remove]
recent_obs = [item for idx, item in enumerate(recent_obs) if idx not in inds_to_remove]
recent_score = [item for idx, item in enumerate(recent_score) if idx not in inds_to_remove]
recent_reward = [item for idx, item in enumerate(recent_reward) if idx not in inds_to_remove]
recent_locs = [item for idx, item in enumerate(recent_locs) if idx not in inds_to_remove]
return recent_actions, recent_obs, recent_score, recent_reward, recent_locs
def get_model_output(args, input_str, tokenizer, lm_model, device, logger):
input_ids = tokenizer(input_str, return_tensors="pt", max_length=args["max_input_len"] , truncation=True).input_ids
sample_outputs = lm_model.generate(
input_ids.to(device),
max_length=16,
num_return_sequences=args['beams'],
num_beams=args['beams'],
)
lm_pred = sample_outputs
# Take the first prediction that is not "look around"
logger.info("Top N Predictions:")
predStrs = []
for i, pred in enumerate(lm_pred):
text = tokenizer.decode(pred)
text = post_process_generation(text)
logger.info("\t" + str(i) + "\t" + str(text) )
predStrs.append(text)
return predStrs
def post_process_generation(raw_pred):
ans_match = re.match(r".*<extra_id_0>(.*)<extra_id_1>.*", raw_pred)
if ans_match is not None:
result = ans_match.group(1)
else:
result = raw_pred
# remove extra <*>'s left in
result = result.replace("<", " <")
out = ""
for token in result.split(" "):
if (len(token.strip()) > 0):
if (token[0] != "<"):
out += token + " "
result = out
return result.strip()
def gpt_select_valid(action, candidates, look, inventory, goal, logger, n=1, gpt_version="gpt-4", llm=None):
prompt_to_search = []
prompt_to_search.append("Let's play a text game.")
prompt_to_search.append(clean_look(look, version="all"))
prompt_to_search.append(inventory)
prompt_to_search.append("There are some action candidates as follows:")
for ac in candidates:
prompt_to_search.append(f"- {ac}")
prompt_to_search.append(f"\n I want to achieve this goal: {goal} but my action '{action}' is not in the candidate list.")
prompt_to_search.append(f"Please consider the objects in the room and inventory and my goal. Think carefully, and then select the best replacement from the list. If no one in the list is a good replacement, return 'none'.")
prompt_to_search.append(f"Selected action:")
prompt_to_search = "\n".join(prompt_to_search)
logger("-"*30 + "prompt_to_search" + "-"*30)
logger("\n"+prompt_to_search)
logger("-"*35 + "-"*35)
if llm is None:
responses = completion_with_backoff(model=gpt_version,
messages=[{"role": "user", "content": prompt_to_search},
], n = n, temperature=0, top_p=1)
# logger(responses)
selections = [responses["choices"][i]["message"]["content"] for i in range(n)]
else:
selections = local_llm.generate(prompt_to_search)
logger("\n" + "Responses: \n" + "\n".join(selections))
return selections
def rank_candidates_by_common_words(query, candidates):
"""
Rank the candidates based on their edit distance to the query.
"""
# the first word must be the same
candidates = [va for va in candidates if va.split()[0] == query.split()[0]]
# Compute the edit distance between each candidate and the query
num_commons = [len(set(query.split()) & set(candidate.split())) for candidate in candidates]
# Sort the candidates based on their distance to the query
ranked_candidates = [candidate for _, candidate in sorted(zip(num_commons, candidates), reverse=True)]
return ranked_candidates
if __name__ == "__main__":
print()