Attribution: Sourced from Arize-ai/arize-skills by Arize AI.
Arize Experiment Skill
SPACE — All --space flags and the ARIZE_SPACE env var accept a space name (e.g., my-workspace) or a base64 space ID (e.g., U3BhY2U6...). Find yours with ax spaces list.
Concepts
- Experiment = a named evaluation run against a specific dataset version, containing one run per example
- Experiment Run = the result of processing one dataset example -- includes the model output, optional evaluations, and optional metadata
- Dataset = a versioned collection of examples; every experiment is tied to a dataset and a specific dataset version
- Evaluation = a named metric attached to a run (e.g.,
correctness, relevance), with optional label, score, and explanation
The typical flow: export a dataset → process each example → collect outputs and evaluations → create an experiment with the runs.
Prerequisites
Proceed directly with the task — run the ax command you need. Do NOT check versions, env vars, or profiles upfront.
If an ax command fails, troubleshoot based on the error:
command not found or version error → see references/ax-setup.md
401 Unauthorized / missing API key → run ax profiles show to inspect the current profile. If the profile is missing or the API key is wrong, follow references/ax-profiles.md to create/update it. If the user doesn't have their key, direct them to https://app.arize.com/admin > API Keys
- Space unknown → run
ax spaces list to pick by name, or ask the user
- Project unclear → ask the user, or run
ax projects list -o json --limit 100 and present as selectable options
- Security: Never read
.env files or search the filesystem for credentials. Use ax profiles for Arize credentials and ax ai-integrations for LLM provider keys. If credentials are not available through these channels, ask the user.
- CRITICAL — Never fabricate outputs: When running an experiment, you MUST call the real model API specified by the user for every dataset example. Never fabricate, simulate, or hardcode model outputs, latencies, or evaluation scores. If you cannot call the API (missing SDK, missing credentials, network error), stop and tell the user what is needed before proceeding.
List Experiments: ax experiments list
Browse experiments, optionally filtered by dataset. Output goes to stdout.
ax experiments list
ax experiments list --dataset DATASET_NAME --space SPACE --limit 20 # DATASET_NAME: name or ID (name preferred)
ax experiments list --cursor CURSOR_TOKEN
ax experiments list -o json
Flags
| Flag |
Type |
Default |
Description |
--dataset |
string |
none |
Filter by dataset |
--limit, -l |
int |
15 |
Max results (1-100) |
--cursor |
string |
none |
Pagination cursor from previous response |
-o, --output |
string |
table |
Output format: table, json, csv, parquet, or file path |
-p, --profile |
string |
default |
Configuration profile |
Get Experiment: ax experiments get
Quick metadata lookup -- returns experiment name, linked dataset/version, and timestamps.
ax experiments get NAME_OR_ID
ax experiments get NAME_OR_ID -o json
ax experiments get NAME_OR_ID --dataset DATASET_NAME --space SPACE # required when using experiment name instead of ID
Flags
| Flag |
Type |
Default |
Description |
NAME_OR_ID |
string |
required |
Experiment name or ID (positional) |
--dataset |
string |
none |
Dataset name or ID (required if using experiment name instead of ID) |
--space |
string |
none |
Space name or ID (required if using dataset name instead of ID) |
-o, --output |
string |
table |
Output format |
-p, --profile |
string |
default |
Configuration profile |
Response fields
| Field |
Type |
Description |
id |
string |
Experiment ID |
name |
string |
Experiment name |
dataset_id |
string |
Linked dataset ID |
dataset_version_id |
string |
Specific dataset version used |
experiment_traces_project_id |
string |
Project where experiment traces are stored |
created_at |
datetime |
When the experiment was created |
updated_at |
datetime |
Last modification time |
Export Experiment: ax experiments export
Download all runs to a file. By default uses the REST API; pass --all to use Arrow Flight for bulk transfer.
# EXPERIMENT_NAME, DATASET_NAME: name or ID (name preferred)
ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE
# -> experiment_abc123_20260305_141500/runs.json
ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE --all
ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE --output-dir ./results
ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE --stdout
ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE --stdout | jq '.[0]'
Flags
| Flag |
Type |
Default |
Description |
NAME_OR_ID |
string |
required |
Experiment name or ID (positional) |
--dataset |
string |
none |
Dataset name or ID (required if using experiment name instead of ID) |
--space |
string |
none |
Space name or ID (required if using dataset name instead of ID) |
--all |
bool |
false |
Use Arrow Flight for bulk export (see below) |
--output-dir |
string |
. |
Output directory |
--stdout |
bool |
false |
Print JSON to stdout instead of file |
-p, --profile |
string |
default |
Configuration profile |
REST vs Flight (--all)
- REST (default): Lower friction -- no Arrow/Flight dependency, standard HTTPS ports, works through any corporate proxy or firewall. Limited to 500 runs per page.
- Flight (
--all): Required for experiments with more than 500 runs. Uses gRPC+TLS on a separate host/port (flight.arize.com:443) which some corporate networks may block.
Agent auto-escalation rule: If a REST export returns exactly 500 runs, the result is likely truncated. Re-run with --all to get the full dataset.
Output is a JSON array of run objects:
[
{
"id": "run_001",
"example_id": "ex_001",
"output": "The answer is 4.",
"evaluations": {
"correctness": { "label": "correct", "score": 1.0 },
"relevance": { "score": 0.95, "explanation": "Directly answers the question" }
},
"metadata": { "model": "gpt-4o", "latency_ms": 1234 }
}
]
Create Experiment: ax experiments create
Create a new experiment with runs from a data file.
ax experiments create --name "gpt-4o-baseline" --dataset DATASET_NAME --space SPACE --file runs.json
ax experiments create --name "claude-test" --dataset DATASET_NAME --space SPACE --file runs.csv
Flags
| Flag |
Type |
Required |
Description |
--name, -n |
string |
yes |
Experiment name |
--dataset |
string |
yes |
Dataset to run the experiment against |
--space, -s |
string |
no |
Space name or ID (required if using dataset name instead of ID) |
--file, -f |
path |
yes |
Data file with runs: CSV, JSON, JSONL, or Parquet |
-o, --output |
string |
no |
Output format |
-p, --profile |
string |
no |
Configuration profile |
Passing data via stdin
Use --file - to pipe data directly — no temp file needed:
echo '[{"example_id": "ex_001", "output": "Paris"}]' | ax experiments create --name "my-experiment" --dataset DATASET_NAME --space SPACE --file -
# Or with a heredoc
ax experiments create --name "my-experiment" --dataset DATASET_NAME --space SPACE --file - << 'EOF'
[{"example_id": "ex_001", "output": "Paris"}]
EOF
Required columns in the runs file
| Column |
Type |
Required |
Description |
example_id |
string |
yes |
ID of the dataset example this run corresponds to |
output |
string |
yes |
The model/system output for this example |
Additional columns are passed through as additionalProperties on the run.
Delete Experiment: ax experiments delete
ax experiments delete NAME_OR_ID
ax experiments delete NAME_OR_ID --dataset DATASET_NAME --space SPACE # required when using experiment name instead of ID
ax experiments delete NAME_OR_ID --force # skip confirmation prompt
Flags
| Flag |
Type |
Default |
Description |
NAME_OR_ID |
string |
required |
Experiment name or ID (positional) |
--dataset |
string |
none |
Dataset name or ID (required if using experiment name instead of ID) |
--space |
string |
none |
Space name or ID (required if using dataset name instead of ID) |
--force, -f |
bool |
false |
Skip confirmation prompt |
-p, --profile |
string |
default |
Configuration profile |
Experiment Run Schema
Each run corresponds to one dataset example:
{
"example_id": "required -- links to dataset example",
"output": "required -- the model/system output for this example",
"evaluations": {
"metric_name": {
"label": "optional string label (e.g., 'correct', 'incorrect')",
"score": "optional numeric score (e.g., 0.95)",
"explanation": "optional freeform text"
}
},
"metadata": {
"model": "gpt-4o",
"temperature": 0.7,
"latency_ms": 1234
}
}
Evaluation fields
| Field |
Type |
Required |
Description |
label |
string |
no |
Categorical classification (e.g., correct, incorrect, partial) |
score |
number |
no |
Numeric quality score (e.g., 0.0 - 1.0) |
explanation |
string |
no |
Freeform reasoning for the evaluation |
At least one of label, score, or explanation should be present per evaluation.
Workflows
Run an experiment against a dataset
Find or create a dataset:
ax datasets list --space SPACE
ax datasets export DATASET_NAME --space SPACE --stdout | jq 'length'
Export the dataset examples:
ax datasets export DATASET_NAME --space SPACE
Call the real model API for each example and collect outputs. Use ax datasets export --stdout to pipe examples directly into an inference script:
ax datasets export DATASET_NAME --space SPACE --stdout | python3 infer.py > runs.json
Write infer.py to read examples from stdin, call the target model, and write runs JSON to stdout. The script below is a template — first inspect the exported dataset JSON to find the correct input field name, then uncomment the provider block the user wants:
import json, sys, time
examples = json.load(sys.stdin)
runs = []
for ex in examples:
# Inspect the exported JSON to find the right field (e.g. "input", "question", "prompt")
user_input = ex.get("input") or ex.get("question") or ex.get("prompt") or str(ex)
start = time.time()
# === CALL THE REAL MODEL API HERE — never fabricate or simulate ===
# Uncomment and adapt the provider block the user requested:
#
# OpenAI (pip install openai — uses OPENAI_API_KEY env var):
# from openai import OpenAI
# resp = OpenAI().chat.completions.create(
# model="gpt-4o",
# messages=[{"role": "user", "content": user_input}]
# )
# output_text = resp.choices[0].message.content
#
# Anthropic (pip install anthropic — uses ANTHROPIC_API_KEY env var):
# import anthropic
# resp = anthropic.Anthropic().messages.create(
# model="claude-sonnet-4-6", max_tokens=1024,
# messages=[{"role": "user", "content": user_input}]
# )
# output_text = resp.content[0].text
#
# Google Gemini (pip install google-genai — uses GOOGLE_API_KEY env var):
# from google import genai
# resp = genai.Client().models.generate_content(
# model="gemini-2.5-pro", contents=user_input
# )
# output_text = resp.text
#
# Custom / OpenAI-compatible proxy (pip install openai — uses CUSTOM_BASE_URL + CUSTOM_API_KEY env vars):
# Use this for Azure OpenAI, NVIDIA NIM, local Ollama, or any OpenAI-compatible endpoint,
# including a test integration proxy. Matches the `custom` provider in `ax ai-integrations create`.
# import os
# from openai import OpenAI
# resp = OpenAI(
# base_url=os.environ["CUSTOM_BASE_URL"], # e.g. https://my-proxy.example.com/v1
# api_key=os.environ.get("CUSTOM_API_KEY", "none"),
# ).chat.completions.create(
# model=os.environ.get("CUSTOM_MODEL", "default"),
# messages=[{"role": "user", "content": user_input}]
# )
# output_text = resp.choices[0].message.content
latency_ms = round((time.time() - start) * 1000)
runs.append({
"example_id": ex["id"],
"output": output_text,
"metadata": {"model": "MODEL_NAME", "latency_ms": latency_ms}
})
print(f" {ex['id']}: {latency_ms}ms", file=sys.stderr)
json.dump(runs, sys.stdout, indent=2)
Before running: install the provider SDK (pip install openai / anthropic / google-genai) and ensure the API key is set as an environment variable in your shell. If you cannot access the API, stop and tell the user what is needed.
Verify the runs file:
python3 -c "import json; runs=json.load(open('runs.json')); print(f'{len(runs)} runs'); print(json.dumps(runs[0], indent=2))"
Each run must have example_id and output. Optional fields: evaluations, metadata.
Create the experiment:
ax experiments create --name "gpt-4o-baseline" --dataset DATASET_NAME --space SPACE --file runs.json
Verify: ax experiments get "gpt-4o-baseline" --dataset DATASET_NAME --space SPACE
Compare two experiments
- Export both experiments:
ax experiments export "experiment-a" --dataset DATASET_NAME --space SPACE --stdout > a.json
ax experiments export "experiment-b" --dataset DATASET_NAME --space SPACE --stdout > b.json
- Compare evaluation scores by
example_id:# Average correctness score for experiment A
jq '[.[] | .evaluations.correctness.score] | add / length' a.json
# Same for experiment B
jq '[.[] | .evaluations.correctness.score] | add / length' b.json
- Find examples where results differ:
jq -s '.[0] as $a | .[1][] | . as $run |
{
example_id: $run.example_id,
b_score: $run.evaluations.correctness.score,
a_score: ($a[] | select(.example_id == $run.example_id) | .evaluations.correctness.score)
}' a.json b.json
- Score distribution per evaluator (pass/fail/partial counts):
# Count by label for experiment A
jq '[.[] | .evaluations.correctness.label] | group_by(.) | map({label: .[0], count: length})' a.json
- Find regressions (examples that passed in A but fail in B):
jq -s '
[.[0][] | select(.evaluations.correctness.label == "correct")] as $passed_a |
[.[1][] | select(.evaluations.correctness.label != "correct") |
select(.example_id as $id | $passed_a | any(.example_id == $id))
]
' a.json b.json
Statistical significance note: Score comparisons are most reliable with ≥ 30 examples per evaluator. With fewer examples, treat the delta as directional only — a 5% difference on n=10 may be noise. Report sample size alongside scores: jq 'length' a.json.
Download experiment results for analysis
ax experiments list --dataset DATASET_NAME --space SPACE -- find experiments
ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE -- download to file
- Parse:
jq '.[] | {example_id, score: .evaluations.correctness.score}' experiment_*/runs.json
Pipe export to other tools
# Count runs
ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE --stdout | jq 'length'
# Extract all outputs
ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE --stdout | jq '.[].output'
# Get runs with low scores
ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE --stdout | jq '[.[] | select(.evaluations.correctness.score < 0.5)]'
# Convert to CSV
ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE --stdout | jq -r '.[] | [.example_id, .output, .evaluations.correctness.score] | @csv'
Related Skills
- arize-dataset: Create or export the dataset this experiment runs against → use
arize-dataset first
- arize-prompt-optimization: Use experiment results to improve prompts → next step is
arize-prompt-optimization
- arize-trace: Inspect individual span traces for failing experiment runs → use
arize-trace
- arize-link: Generate clickable UI links to traces from experiment runs → use
arize-link
Troubleshooting
| Problem |
Solution |
ax: command not found |
See references/ax-setup.md |
401 Unauthorized |
API key is wrong, expired, or doesn't have access to this space. Fix the profile using references/ax-profiles.md. |
No profile found |
No profile is configured. See references/ax-profiles.md to create one. |
Experiment not found |
Verify experiment name with ax experiments list --space SPACE |
Invalid runs file |
Each run must have example_id and output fields |
example_id mismatch |
Ensure example_id values match IDs from the dataset (export dataset to verify) |
No runs found |
Export returned empty -- verify experiment has runs via ax experiments get |
Dataset not found |
The linked dataset may have been deleted; check with ax datasets list |
Save Credentials for Future Use
See references/ax-profiles.md § Save Credentials for Future Use.
1---2name: arize-experiment3description: Arize experiments — create, run, analyze. A/B eval, model comparison (GPT-4, Claude)4---56> **Attribution:** Sourced from [Arize-ai/arize-skills](https://github.com/Arize-ai/arize-skills) by [Arize AI](https://arize.com).78# Arize Experiment Skill910> **`SPACE`** — All `--space` flags and the `ARIZE_SPACE` env var accept a space **name** (e.g., `my-workspace`) or a base64 space **ID** (e.g., `U3BhY2U6...`). Find yours with `ax spaces list`.1112## Concepts1314- **Experiment** = a named evaluation run against a specific dataset version, containing one run per example15- **Experiment Run** = the result of processing one dataset example -- includes the model output, optional evaluations, and optional metadata16- **Dataset** = a versioned collection of examples; every experiment is tied to a dataset and a specific dataset version17- **Evaluation** = a named metric attached to a run (e.g., `correctness`, `relevance`), with optional label, score, and explanation1819The typical flow: export a dataset → process each example → collect outputs and evaluations → create an experiment with the runs.2021## Prerequisites2223Proceed directly with the task — run the `ax` command you need. Do NOT check versions, env vars, or profiles upfront.2425If an `ax` command fails, troubleshoot based on the error:26- `command not found` or version error → see references/ax-setup.md27- `401 Unauthorized` / missing API key → run `ax profiles show` to inspect the current profile. If the profile is missing or the API key is wrong, follow references/ax-profiles.md to create/update it. If the user doesn't have their key, direct them to https://app.arize.com/admin > API Keys28- Space unknown → run `ax spaces list` to pick by name, or ask the user29- Project unclear → ask the user, or run `ax projects list -o json --limit 100` and present as selectable options30- **Security:** Never read `.env` files or search the filesystem for credentials. Use `ax profiles` for Arize credentials and `ax ai-integrations` for LLM provider keys. If credentials are not available through these channels, ask the user.31- **CRITICAL — Never fabricate outputs:** When running an experiment, you MUST call the real model API specified by the user for every dataset example. Never fabricate, simulate, or hardcode model outputs, latencies, or evaluation scores. If you cannot call the API (missing SDK, missing credentials, network error), stop and tell the user what is needed before proceeding.3233## List Experiments: `ax experiments list`3435Browse experiments, optionally filtered by dataset. Output goes to stdout.3637```bash38ax experiments list39ax experiments list --dataset DATASET_NAME --space SPACE --limit 20 # DATASET_NAME: name or ID (name preferred)40ax experiments list --cursor CURSOR_TOKEN41ax experiments list -o json42```4344### Flags4546| Flag | Type | Default | Description |47|------|------|---------|-------------|48| `--dataset` | string | none | Filter by dataset |49| `--limit, -l` | int | 15 | Max results (1-100) |50| `--cursor` | string | none | Pagination cursor from previous response |51| `-o, --output` | string | table | Output format: table, json, csv, parquet, or file path |52| `-p, --profile` | string | default | Configuration profile |5354## Get Experiment: `ax experiments get`5556Quick metadata lookup -- returns experiment name, linked dataset/version, and timestamps.5758```bash59ax experiments get NAME_OR_ID60ax experiments get NAME_OR_ID -o json61ax experiments get NAME_OR_ID --dataset DATASET_NAME --space SPACE # required when using experiment name instead of ID62```6364### Flags6566| Flag | Type | Default | Description |67|------|------|---------|-------------|68| `NAME_OR_ID` | string | required | Experiment name or ID (positional) |69| `--dataset` | string | none | Dataset name or ID (required if using experiment name instead of ID) |70| `--space` | string | none | Space name or ID (required if using dataset name instead of ID) |71| `-o, --output` | string | table | Output format |72| `-p, --profile` | string | default | Configuration profile |7374### Response fields7576| Field | Type | Description |77|-------|------|-------------|78| `id` | string | Experiment ID |79| `name` | string | Experiment name |80| `dataset_id` | string | Linked dataset ID |81| `dataset_version_id` | string | Specific dataset version used |82| `experiment_traces_project_id` | string | Project where experiment traces are stored |83| `created_at` | datetime | When the experiment was created |84| `updated_at` | datetime | Last modification time |8586## Export Experiment: `ax experiments export`8788Download all runs to a file. By default uses the REST API; pass `--all` to use Arrow Flight for bulk transfer.8990```bash91# EXPERIMENT_NAME, DATASET_NAME: name or ID (name preferred)92ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE93# -> experiment_abc123_20260305_141500/runs.json9495ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE --all96ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE --output-dir ./results97ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE --stdout98ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE --stdout | jq '.[0]'99```100101### Flags102103| Flag | Type | Default | Description |104|------|------|---------|-------------|105| `NAME_OR_ID` | string | required | Experiment name or ID (positional) |106| `--dataset` | string | none | Dataset name or ID (required if using experiment name instead of ID) |107| `--space` | string | none | Space name or ID (required if using dataset name instead of ID) |108| `--all` | bool | false | Use Arrow Flight for bulk export (see below) |109| `--output-dir` | string | `.` | Output directory |110| `--stdout` | bool | false | Print JSON to stdout instead of file |111| `-p, --profile` | string | default | Configuration profile |112113### REST vs Flight (`--all`)114115- **REST** (default): Lower friction -- no Arrow/Flight dependency, standard HTTPS ports, works through any corporate proxy or firewall. Limited to 500 runs per page.116- **Flight** (`--all`): Required for experiments with more than 500 runs. Uses gRPC+TLS on a separate host/port (`flight.arize.com:443`) which some corporate networks may block.117118**Agent auto-escalation rule:** If a REST export returns exactly 500 runs, the result is likely truncated. Re-run with `--all` to get the full dataset.119120Output is a JSON array of run objects:121122```json123[124 {125 "id": "run_001",126 "example_id": "ex_001",127 "output": "The answer is 4.",128 "evaluations": {129 "correctness": { "label": "correct", "score": 1.0 },130 "relevance": { "score": 0.95, "explanation": "Directly answers the question" }131 },132 "metadata": { "model": "gpt-4o", "latency_ms": 1234 }133 }134]135```136137## Create Experiment: `ax experiments create`138139Create a new experiment with runs from a data file.140141```bash142ax experiments create --name "gpt-4o-baseline" --dataset DATASET_NAME --space SPACE --file runs.json143ax experiments create --name "claude-test" --dataset DATASET_NAME --space SPACE --file runs.csv144```145146### Flags147148| Flag | Type | Required | Description |149|------|------|----------|-------------|150| `--name, -n` | string | yes | Experiment name |151| `--dataset` | string | yes | Dataset to run the experiment against |152| `--space, -s` | string | no | Space name or ID (required if using dataset name instead of ID) |153| `--file, -f` | path | yes | Data file with runs: CSV, JSON, JSONL, or Parquet |154| `-o, --output` | string | no | Output format |155| `-p, --profile` | string | no | Configuration profile |156157### Passing data via stdin158159Use `--file -` to pipe data directly — no temp file needed:160161```bash162echo '[{"example_id": "ex_001", "output": "Paris"}]' | ax experiments create --name "my-experiment" --dataset DATASET_NAME --space SPACE --file -163164# Or with a heredoc165ax experiments create --name "my-experiment" --dataset DATASET_NAME --space SPACE --file - << 'EOF'166[{"example_id": "ex_001", "output": "Paris"}]167EOF168```169170### Required columns in the runs file171172| Column | Type | Required | Description |173|--------|------|----------|-------------|174| `example_id` | string | yes | ID of the dataset example this run corresponds to |175| `output` | string | yes | The model/system output for this example |176177Additional columns are passed through as `additionalProperties` on the run.178179## Delete Experiment: `ax experiments delete`180181```bash182ax experiments delete NAME_OR_ID183ax experiments delete NAME_OR_ID --dataset DATASET_NAME --space SPACE # required when using experiment name instead of ID184ax experiments delete NAME_OR_ID --force # skip confirmation prompt185```186187### Flags188189| Flag | Type | Default | Description |190|------|------|---------|-------------|191| `NAME_OR_ID` | string | required | Experiment name or ID (positional) |192| `--dataset` | string | none | Dataset name or ID (required if using experiment name instead of ID) |193| `--space` | string | none | Space name or ID (required if using dataset name instead of ID) |194| `--force, -f` | bool | false | Skip confirmation prompt |195| `-p, --profile` | string | default | Configuration profile |196197## Experiment Run Schema198199Each run corresponds to one dataset example:200201```json202{203 "example_id": "required -- links to dataset example",204 "output": "required -- the model/system output for this example",205 "evaluations": {206 "metric_name": {207 "label": "optional string label (e.g., 'correct', 'incorrect')",208 "score": "optional numeric score (e.g., 0.95)",209 "explanation": "optional freeform text"210 }211 },212 "metadata": {213 "model": "gpt-4o",214 "temperature": 0.7,215 "latency_ms": 1234216 }217}218```219220### Evaluation fields221222| Field | Type | Required | Description |223|-------|------|----------|-------------|224| `label` | string | no | Categorical classification (e.g., `correct`, `incorrect`, `partial`) |225| `score` | number | no | Numeric quality score (e.g., 0.0 - 1.0) |226| `explanation` | string | no | Freeform reasoning for the evaluation |227228At least one of `label`, `score`, or `explanation` should be present per evaluation.229230## Workflows231232### Run an experiment against a dataset2332341. Find or create a dataset:235 ```bash236 ax datasets list --space SPACE237 ax datasets export DATASET_NAME --space SPACE --stdout | jq 'length'238 ```2392. Export the dataset examples:240 ```bash241 ax datasets export DATASET_NAME --space SPACE242 ```2433. Call the real model API for each example and collect outputs. Use `ax datasets export --stdout` to pipe examples directly into an inference script:244245 ```bash246 ax datasets export DATASET_NAME --space SPACE --stdout | python3 infer.py > runs.json247 ```248249 Write `infer.py` to read examples from stdin, call the target model, and write runs JSON to stdout. The script below is a template — first inspect the exported dataset JSON to find the correct input field name, then uncomment the provider block the user wants:250251 ```python252 import json, sys, time253254 examples = json.load(sys.stdin)255 runs = []256257 for ex in examples:258 # Inspect the exported JSON to find the right field (e.g. "input", "question", "prompt")259 user_input = ex.get("input") or ex.get("question") or ex.get("prompt") or str(ex)260261 start = time.time()262263 # === CALL THE REAL MODEL API HERE — never fabricate or simulate ===264 # Uncomment and adapt the provider block the user requested:265 #266 # OpenAI (pip install openai — uses OPENAI_API_KEY env var):267 # from openai import OpenAI268 # resp = OpenAI().chat.completions.create(269 # model="gpt-4o",270 # messages=[{"role": "user", "content": user_input}]271 # )272 # output_text = resp.choices[0].message.content273 #274 # Anthropic (pip install anthropic — uses ANTHROPIC_API_KEY env var):275 # import anthropic276 # resp = anthropic.Anthropic().messages.create(277 # model="claude-sonnet-4-6", max_tokens=1024,278 # messages=[{"role": "user", "content": user_input}]279 # )280 # output_text = resp.content[0].text281 #282 # Google Gemini (pip install google-genai — uses GOOGLE_API_KEY env var):283 # from google import genai284 # resp = genai.Client().models.generate_content(285 # model="gemini-2.5-pro", contents=user_input286 # )287 # output_text = resp.text288 #289 # Custom / OpenAI-compatible proxy (pip install openai — uses CUSTOM_BASE_URL + CUSTOM_API_KEY env vars):290 # Use this for Azure OpenAI, NVIDIA NIM, local Ollama, or any OpenAI-compatible endpoint,291 # including a test integration proxy. Matches the `custom` provider in `ax ai-integrations create`.292 # import os293 # from openai import OpenAI294 # resp = OpenAI(295 # base_url=os.environ["CUSTOM_BASE_URL"], # e.g. https://my-proxy.example.com/v1296 # api_key=os.environ.get("CUSTOM_API_KEY", "none"),297 # ).chat.completions.create(298 # model=os.environ.get("CUSTOM_MODEL", "default"),299 # messages=[{"role": "user", "content": user_input}]300 # )301 # output_text = resp.choices[0].message.content302303 latency_ms = round((time.time() - start) * 1000)304 runs.append({305 "example_id": ex["id"],306 "output": output_text,307 "metadata": {"model": "MODEL_NAME", "latency_ms": latency_ms}308 })309 print(f" {ex['id']}: {latency_ms}ms", file=sys.stderr)310311 json.dump(runs, sys.stdout, indent=2)312 ```313314 **Before running:** install the provider SDK (`pip install openai` / `anthropic` / `google-genai`) and ensure the API key is set as an environment variable in your shell. If you cannot access the API, stop and tell the user what is needed.3153164. Verify the runs file:317 ```bash318 python3 -c "import json; runs=json.load(open('runs.json')); print(f'{len(runs)} runs'); print(json.dumps(runs[0], indent=2))"319 ```320 Each run must have `example_id` and `output`. Optional fields: `evaluations`, `metadata`.3215. Create the experiment:322 ```bash323 ax experiments create --name "gpt-4o-baseline" --dataset DATASET_NAME --space SPACE --file runs.json324 ```3256. Verify: `ax experiments get "gpt-4o-baseline" --dataset DATASET_NAME --space SPACE`326327### Compare two experiments3283291. Export both experiments:330 ```bash331 ax experiments export "experiment-a" --dataset DATASET_NAME --space SPACE --stdout > a.json332 ax experiments export "experiment-b" --dataset DATASET_NAME --space SPACE --stdout > b.json333 ```3342. Compare evaluation scores by `example_id`:335 ```bash336 # Average correctness score for experiment A337 jq '[.[] | .evaluations.correctness.score] | add / length' a.json338339 # Same for experiment B340 jq '[.[] | .evaluations.correctness.score] | add / length' b.json341 ```3423. Find examples where results differ:343 ```bash344 jq -s '.[0] as $a | .[1][] | . as $run |345 {346 example_id: $run.example_id,347 b_score: $run.evaluations.correctness.score,348 a_score: ($a[] | select(.example_id == $run.example_id) | .evaluations.correctness.score)349 }' a.json b.json350 ```3514. Score distribution per evaluator (pass/fail/partial counts):352 ```bash353 # Count by label for experiment A354 jq '[.[] | .evaluations.correctness.label] | group_by(.) | map({label: .[0], count: length})' a.json355 ```3565. Find regressions (examples that passed in A but fail in B):357 ```bash358 jq -s '359 [.[0][] | select(.evaluations.correctness.label == "correct")] as $passed_a |360 [.[1][] | select(.evaluations.correctness.label != "correct") |361 select(.example_id as $id | $passed_a | any(.example_id == $id))362 ]363 ' a.json b.json364 ```365366**Statistical significance note:** Score comparisons are most reliable with ≥ 30 examples per evaluator. With fewer examples, treat the delta as directional only — a 5% difference on n=10 may be noise. Report sample size alongside scores: `jq 'length' a.json`.367368### Download experiment results for analysis3693701. `ax experiments list --dataset DATASET_NAME --space SPACE` -- find experiments3712. `ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE` -- download to file3723. Parse: `jq '.[] | {example_id, score: .evaluations.correctness.score}' experiment_*/runs.json`373374### Pipe export to other tools375376```bash377# Count runs378ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE --stdout | jq 'length'379380# Extract all outputs381ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE --stdout | jq '.[].output'382383# Get runs with low scores384ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE --stdout | jq '[.[] | select(.evaluations.correctness.score < 0.5)]'385386# Convert to CSV387ax experiments export EXPERIMENT_NAME --dataset DATASET_NAME --space SPACE --stdout | jq -r '.[] | [.example_id, .output, .evaluations.correctness.score] | @csv'388```389390## Related Skills391392- **arize-dataset**: Create or export the dataset this experiment runs against → use `arize-dataset` first393- **arize-prompt-optimization**: Use experiment results to improve prompts → next step is `arize-prompt-optimization`394- **arize-trace**: Inspect individual span traces for failing experiment runs → use `arize-trace`395- **arize-link**: Generate clickable UI links to traces from experiment runs → use `arize-link`396397## Troubleshooting398399| Problem | Solution |400|---------|----------|401| `ax: command not found` | See references/ax-setup.md |402| `401 Unauthorized` | API key is wrong, expired, or doesn't have access to this space. Fix the profile using references/ax-profiles.md. |403| `No profile found` | No profile is configured. See references/ax-profiles.md to create one. |404| `Experiment not found` | Verify experiment name with `ax experiments list --space SPACE` |405| `Invalid runs file` | Each run must have `example_id` and `output` fields |406| `example_id mismatch` | Ensure `example_id` values match IDs from the dataset (export dataset to verify) |407| `No runs found` | Export returned empty -- verify experiment has runs via `ax experiments get` |408| `Dataset not found` | The linked dataset may have been deleted; check with `ax datasets list` |409410## Save Credentials for Future Use411412See references/ax-profiles.md § Save Credentials for Future Use.