You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello everyone, I have questions about placing assets during generation.
Is there a method to include only a specific list of assets in a room or apartment? For instance, generating a kitchen with only ['fridge', 'diningTable'].
If this is possible, can these assets be positioned next to each other?
The text was updated successfully, but these errors were encountered:
Hi everyone, everything is customizable but it will require you "getting your hands dirty" by digging a bit into what ProcTHOR is doing and writing some code. If you want to generate a kitchen with only fridges/dining tables, then you'd want to change the add_floor_objects and add_small_objects functions that are being specified here. By default we use:
In particular, for the kitchen example, you'd want to ensure that you exclude placing anything but fridges/dining tables when room.room_type is kitchen in the default_add_floor_objects function and, assuming you really want no other objects, you'd want to skip adding any objects to kitchens in the default_add_small_objects function.
I might also point you to Holodeck that would let you specify your constraints via language and, so long as you're willing to bear the cost of some GPT-4 queries (not too bad), should also give you some scenes that give you what you want.
Hello everyone, I have questions about placing assets during generation.
Is there a method to include only a specific list of assets in a room or apartment? For instance, generating a kitchen with only ['fridge', 'diningTable'].
If this is possible, can these assets be positioned next to each other?
The text was updated successfully, but these errors were encountered: