JavaScript is disabled. Some features may not work.
arize-dataset — ★ 35.6K GitHub Stars — Install Guide | SkillsNav
🇺🇸 English🇨🇳 中文
SkillsNav
Home

arize-dataset

★ 35K repodata_procN/AIntermediateCursor
🤖 AI Summary

This skill enables programmatic management of versioned datasets in Arize, allowing you to create, append, and update examples (records with arbitrary fields) within a specified organizational space.

How to Install

Claude Code:
git clone --depth 1 https://github.com/github/awesome-copilot.git && cp awesome-copilot/skills/arize-dataset ~/.claude/skills/arize-dataset -r
# Arize Dataset 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 - **Dataset** = a versioned collection of examples used for evaluation and experimentation - **Dataset Version** = a snapshot of a dataset at a point in time; updates can be in-place or create a new version - **Example** = a single record in a dataset with arbitrary user-defined fields (e.g., `question`, `answer`, `context`) - **Space** = an organizational container; datasets belong to a space System-managed fields on examples (`id`, `created_at`, `updated_at`) are auto-generated by the server -- never include them in create or append payloads. ## 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. ## List Datasets: `ax datasets list` Browse datasets in a space. Output goes to stdout. ```bash ax datasets list ax datasets list --space SPACE --limit 20 ax datasets list --cursor CURSOR_TOKEN ax datasets list -o json ``` ### Flags | Flag | Type | Default | Description | |------|------|---------|-------------| | `--space` | string | from profile | Filter by space | | `--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 Dataset: `ax datasets get` Quick metadata lookup -- returns dataset name, space, timestamps, and version list. ```bash ax datasets get NAME_OR_ID ax datasets get NAME_OR_ID -o json ax datasets get NAME_OR_ID --space SPACE # required when using dataset name instead of ID ``` ### Flags | Flag | Type | Default | Description | |------|------|---------|-------------| | `NAME_OR_ID` | string | required | Dataset name or ID (positional) | | `--space` | string | none | Space name or ID (required if using dataset name instead of ID) | | `-o, --output` | string | tabl

Details

Category Data → data_proc
Sourcegithub/awesome-copilot
SKILL.mdView on GitHub →
Repo Stars★ 35.6K
Est. per Skill712 (shared across 50 skills from this repo)
DifficultyIntermediate
Risk LevelN/A

Related Skills

Works Well With

Skills from the same repository — often designed to work together