整合
將 Potato 與 AI 模型、眾包平臺連線,並匯出到您常用的機器學習框架。
AI 與大語言模型整合
用 AI 輔助增強標註效率
Local LLMs (Ollama)
Run AI-assisted annotation with local LLMs using Ollama. Keep your data completely private.
檢視文件 →HuggingFace
Access open-source models via HuggingFace Inference API for flexible AI assistance.
檢視文件 →LangChain
Automatic trace ingestion from LangChain agents via callback handler. Capture full agent runs as annotation-ready traces.
檢視文件 →OpenAI Vision
GPT-4o and GPT-4 Vision for multimodal annotation assistance on images and screenshots.
檢視文件 →AI 驅動功能
- 智慧標籤建議
- 自動關鍵詞高亮
- 品質檢查輔助
- 預標註稽核
- 解釋生成
- 一致性檢查
標註團隊方案
使用您自己的團隊或通過眾包擴充套件規模
您自己的團隊
推薦用於敏感資料在本地或您自己的伺服器上執行 Potato,使用內部標註員。非常適合不能外洩的敏感資料、通過 IRB 審批的研究,或已有訓練有素的標註團隊的情況。
優勢
或通過眾包平臺擴充套件規模
Prolific
Academic-friendly crowdsourcing with quality participants. Full integration with completion URLs and participant tracking.
功能特性
Amazon MTurk
Scale to thousands of annotators with Mechanical Turk integration. Supports qualifications and approval workflows.
功能特性
支援的資料格式
以任何常見格式匯入資料
Text
.txt, .json, .jsonl
Images
.jpg, .png, .gif, .webp
Audio
.mp3, .wav, .ogg, .m4a
Video
.mp4, .webm, .mov
Documents
.pdf, .html
匯出格式
將標註匯出為主流機器學習格式
General
- JSON
Native Potato format with full annotation data
- JSONL
Line-delimited JSON for streaming and large datasets
- CSV
Tabular export for spreadsheet analysis
NLP
- CoNLL
Standard format for NER and sequence labeling
- Hugging Face
Direct export to HF Datasets format
- spaCy (via CoNLL)
Export CoNLL, then run spacy convert
Computer Vision
- COCO
MS COCO format for object detection
- YOLO
YOLO format for real-time detection
- Pascal VOC
XML format for image classification
Agent Trace Formats
Import agent traces from 13 frameworks for annotation. Convert via CLI or ingest in real-time via webhook.
Agent Frameworks
- LangChain / LangSmith
Hierarchical runs, tool calls
- Langfuse
Observation spans, scores
- OpenAI
Function calling, assistants
- Anthropic Claude
Tool use, thinking blocks
- MCP
Model Context Protocol sessions
- OpenTelemetry
Distributed span hierarchy
- ATIF
Standard interchange format
Web Agents
- WebArena
Screenshots, element targeting
- Raw Browser
HAR + screenshots
Coding Agents
- Claude Code
Anthropic Messages API with tool_use
- Aider
Markdown chat with edit blocks
- SWE-Agent
Thought/action/observation trajectories
General
- ReAct
Generic thought/action/observation
- Multi-Agent
CrewAI, AutoGen, LangGraph
Agent Training Exports
Export agent annotations directly to training pipeline formats
Python API 與命令列工具
用於自動化的程式設計介面
命令列
# Start annotation server potato start config.yaml # Export annotations potato export --format coco # Validate configuration potato validate config.yaml
Python API
from potato import Potato
# Load project
project = Potato("config.yaml")
# Get annotations
annotations = project.get_annotations()
# Export to DataFrame
df = project.to_dataframe()