Howdy! Is there an effective way to add labels/tags to my dataset cases used in experiments? I want to add a tag, such as "adversarial", so I can run analytics on which types of cases perform well vs. still need work.
馃挕聽Hint: Mention RunLLM in the thread for followups.
One follow up question - what's the best way to report correctness/success of the experiment by these labels? Right now, I found docs that point me to this:
import phoenix as px
client = px.Client()
# Get the current dataset version
dataset = client.get_dataset(id="...", version_id="...")
df = dataset.as_dataframe()
df.head()
experiment = client.get_experiment(experiment_id="...")It seemed to work for me! Thanks!
