Program Evaluation — Search
#–
exists_object(get_objects(IMG), cake)
—⭐
#–
exists_object(get_objects(IMG), candles)
—⭐
#–
exists_object(get_objects(IMG), person)
—⭐
#–
or(
exists_object(get_objects(IMG), cake),
exists_object(get_objects(IMG), candles))
—⭐
#–
and(
exists_object(get_objects(IMG), cake),
exists_object(get_objects(IMG), candles))
—⭐
#–
and(exists_object(..., cake),
exists_obj_with_property(
get_objects(IMG), candles, lit))
—⭐
✓ Best Program — p*
p* = (and
(exists_object (get_objects IMG) cake)
(exists_obj_with_property (get_objects IMG) candles lit))
Balanced accuracy: 100% on 6-shot task