I got to the point where I'm running the experiment, but the experiment fails with this error:
for ex, rep in product(dataset.examples.values(), range(1, repetitions + 1))
^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'list' object has no attribute 'values'
I'm loading my dataset via:
from phoenix.client import Client
client = Client()
dataset = client.datasets.get_dataset(dataset="greetings")
I'm not entirely sure what the issue is, but I can do dataset.examples and I get a list back.