インテグレーション
PotatoをAIモデル、クラウドソーシングプラットフォーム、お気に入りのMLフレームワークと接続しましょう。
AI & LLM統合
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.
ドキュメントを見る →OpenRouter
Access multiple AI providers through a single API with OpenRouter integration.
ドキュメントを見る →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
エクスポート形式
一般的なML形式にアノテーションをエクスポート
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
Training data format for spaCy models
Computer Vision
- COCO
MS COCO format for object detection
- YOLO
YOLO format for real-time detection
- Pascal VOC
XML format for image classification
Python API & CLI
自動化のためのプログラマティックアクセス
コマンドライン
# 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()