Skip to content

Commit dff8b88

Browse files
committed
(knowledge)(rwc2023) update person names
1 parent e97be10 commit dff8b88

File tree

1 file changed

+6
-3
lines changed
  • robocup_knowledge/src/robocup_knowledge/environments/rwc2023

1 file changed

+6
-3
lines changed

robocup_knowledge/src/robocup_knowledge/environments/rwc2023/common.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
from __future__ import print_function
22

3-
female_names = ["amelia", "angel", "ava", "charlie", "charlotte", "hunter", "max", "mia", "olivia", "parker", "sam"]
4-
male_names = ["angel", "charlie", "hunter", "jack", "max", "noah", "oliver", "parker", "sam", "thomas", "william"]
5-
names = female_names + male_names
3+
female_names = ["adel", "angel", "axel", "charlie", "jane", "jules", "morgan", "paris", "robin", "simone"]
4+
male_names = ["adel", "angel", "axel", "charlie", "john", "jules", "morgan", "paris", "robin", "simone"]
5+
names = set(female_names)
6+
names.update(set(male_names))
7+
names = sorted(list(names))
8+
69

710
locations = [
811
{"name": "house_plant", "room": "living_room", "manipulation": False},

0 commit comments

Comments
 (0)