Spaces:
Paused
Paused
File size: 13,297 Bytes
aceb1b2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 | """
Export CLI
Command-line interface for exporting Potato annotations to various formats.
Usage:
python -m potato.export --config config.yaml --format coco --output ./out/
python -m potato.export --config config.yaml --format conll_2003 --output ./out/
python -m potato.export --list-formats
"""
import argparse
import json
import os
import sys
import logging
import glob
import yaml
from .base import ExportContext
from .registry import export_registry
logger = logging.getLogger(__name__)
def load_annotations_from_output_dir(output_dir: str, schemas: list) -> list:
"""
Load user annotations from the Potato output directory.
Reads user_state.json files from each user subdirectory
and flattens annotations into a list of records.
Args:
output_dir: Path to the annotation output directory
schemas: List of annotation scheme configs
Returns:
List of annotation dicts
"""
annotations = []
if not os.path.isdir(output_dir):
logger.warning(f"Output directory not found: {output_dir}")
return annotations
for user_dir in sorted(os.listdir(output_dir)):
user_path = os.path.join(output_dir, user_dir)
if not os.path.isdir(user_path):
continue
state_file = os.path.join(user_path, "user_state.json")
if not os.path.exists(state_file):
continue
with open(state_file, "r") as f:
user_state = json.load(f)
user_id = user_state.get("user_id", user_dir)
# Extract label annotations
label_data = user_state.get("instance_id_to_label_to_value", {})
span_data = user_state.get("instance_id_to_span_to_value", {})
# Collect all instance IDs
all_instances = set(label_data.keys()) | set(span_data.keys())
for instance_id in all_instances:
# Labels may be stored as a list of [[{schema, name}, value], ...]
# or as a dict of {schema_name: {label_name: value}}.
# Normalize to dict format.
raw_labels = label_data.get(instance_id, {})
if isinstance(raw_labels, list):
labels_dict = {}
for entry in raw_labels:
if isinstance(entry, (list, tuple)) and len(entry) == 2:
label_obj, value = entry
if isinstance(label_obj, dict):
schema = label_obj.get("schema", "")
name = label_obj.get("name", "")
else:
schema, name = str(label_obj), ""
labels_dict.setdefault(schema, {})[name] = value
raw_labels = labels_dict
record = {
"instance_id": instance_id,
"user_id": user_id,
"labels": raw_labels,
"spans": {},
"links": {},
"image_annotations": {},
}
# Process span data
instance_spans = span_data.get(instance_id, {})
for schema_name, span_list in instance_spans.items():
if isinstance(span_list, list):
record["spans"][schema_name] = span_list
elif isinstance(span_list, dict):
# Span data might be stored as a dict of span_id -> span_obj
record["spans"][schema_name] = list(span_list.values())
# Extract image annotations from labels
# Image annotations are stored as JSON strings in label values
for schema_name, label_dict in record["labels"].items():
schema_config = _find_schema(schemas, schema_name)
if schema_config and schema_config.get("annotation_type") == "image_annotation":
# Image annotation data is stored in the label value
for label_key, value in label_dict.items():
if isinstance(value, str):
try:
parsed = json.loads(value)
if isinstance(parsed, list):
record["image_annotations"][schema_name] = parsed
except (json.JSONDecodeError, TypeError):
pass
elif isinstance(value, list):
record["image_annotations"][schema_name] = value
annotations.append(record)
return annotations
def load_phase_responses_from_output_dir(output_dir: str) -> list:
"""
Load phase/surveyflow responses from the Potato output directory.
Reads phase_to_page_to_label_to_value from each user's user_state.json
and flattens into a list of records.
Returns:
List of dicts with keys: user_id, phase, page, schema, label_name, value
"""
responses = []
if not os.path.isdir(output_dir):
return responses
for user_dir in sorted(os.listdir(output_dir)):
user_path = os.path.join(output_dir, user_dir)
if not os.path.isdir(user_path):
continue
state_file = os.path.join(user_path, "user_state.json")
if not os.path.exists(state_file):
continue
with open(state_file, "r") as f:
user_state = json.load(f)
user_id = user_state.get("user_id", user_dir)
phase_data = user_state.get("phase_to_page_to_label_to_value", {})
for phase, pages in phase_data.items():
for page, label_values in pages.items():
# label_values is a list of [[{schema, name}, value], ...]
if isinstance(label_values, list):
for entry in label_values:
if isinstance(entry, (list, tuple)) and len(entry) == 2:
label_obj, value = entry
if isinstance(label_obj, dict):
schema = label_obj.get("schema", "")
label_name = label_obj.get("name", "")
else:
schema, label_name = str(label_obj), ""
responses.append({
"user_id": user_id,
"phase": phase,
"page": page,
"schema": schema,
"label_name": label_name,
"value": value,
})
elif isinstance(label_values, dict):
for label_obj, value in label_values.items():
responses.append({
"user_id": user_id,
"phase": phase,
"page": page,
"schema": str(label_obj),
"label_name": "",
"value": value,
})
return responses
def load_items_from_data_files(config: dict, config_dir: str) -> dict:
"""
Load item data from the data files specified in config.
Args:
config: Full Potato configuration dict
config_dir: Directory containing the config file
Returns:
Dict mapping instance_id -> item data
"""
items = {}
item_props = config.get("item_properties", {})
id_key = item_props.get("id_key", "id")
data_files = config.get("data_files", [])
if isinstance(data_files, str):
data_files = [data_files]
task_dir = config.get("task_dir", ".")
base_dir = os.path.normpath(os.path.join(config_dir, task_dir))
for data_file_entry in data_files:
if isinstance(data_file_entry, dict):
path = data_file_entry.get("path", "")
else:
path = str(data_file_entry)
if not os.path.isabs(path):
path = os.path.join(base_dir, path)
if not os.path.exists(path):
logger.warning(f"Data file not found: {path}")
continue
with open(path, "r") as f:
for line_num, line in enumerate(f, 1):
line = line.strip()
if not line:
continue
try:
item = json.loads(line)
item_id = str(item.get(id_key, f"item_{line_num}"))
items[item_id] = item
except json.JSONDecodeError:
# Try CSV/TSV
logger.debug(f"Line {line_num} in {path} is not JSON, skipping")
return items
def _find_schema(schemas: list, name: str) -> dict:
"""Find a schema config by name."""
for s in schemas:
if s.get("name") == name:
return s
return {}
def build_export_context(config_path: str) -> ExportContext:
"""
Build an ExportContext from a Potato config file.
Args:
config_path: Path to YAML config file
Returns:
ExportContext ready for export
"""
config_path = os.path.abspath(config_path)
config_dir = os.path.dirname(config_path)
with open(config_path, "r") as f:
config = yaml.safe_load(f)
schemas = config.get("annotation_schemes", [])
# Determine output directory
task_dir = config.get("task_dir", ".")
base_dir = os.path.normpath(os.path.join(config_dir, task_dir))
output_annotation_dir = config.get(
"output_annotation_dir",
os.path.join(base_dir, "annotation_output")
)
if not os.path.isabs(output_annotation_dir):
output_annotation_dir = os.path.join(base_dir, output_annotation_dir)
items = load_items_from_data_files(config, config_dir)
annotations = load_annotations_from_output_dir(output_annotation_dir, schemas)
phase_responses = load_phase_responses_from_output_dir(output_annotation_dir)
return ExportContext(
config=config,
annotations=annotations,
items=items,
schemas=schemas,
output_dir=output_annotation_dir,
phase_responses=phase_responses,
)
def main():
parser = argparse.ArgumentParser(
description="Export Potato annotations to standard formats"
)
parser.add_argument(
"--config", "-c",
help="Path to Potato YAML config file",
)
parser.add_argument(
"--format", "-f",
help="Export format (e.g., coco, yolo, pascal_voc, conll_2003, conll_u)",
)
parser.add_argument(
"--output", "-o",
help="Output directory",
default="./export_output",
)
parser.add_argument(
"--list-formats",
action="store_true",
help="List available export formats and exit",
)
parser.add_argument(
"--option",
action="append",
default=[],
help="Format-specific option as key=value (can be repeated)",
)
parser.add_argument(
"--verbose", "-v",
action="store_true",
help="Enable verbose logging",
)
args = parser.parse_args()
logging.basicConfig(
level=logging.DEBUG if args.verbose else logging.INFO,
format="%(levelname)s: %(message)s",
)
if args.list_formats:
formats = export_registry.list_exporters()
if not formats:
print("No export formats registered.")
else:
print("Available export formats:\n")
for fmt in formats:
exts = ", ".join(fmt["file_extensions"])
print(f" {fmt['format_name']:15s} {fmt['description']}")
print(f" {'':15s} Extensions: {exts}")
print()
return
if not args.config:
parser.error("--config is required (unless using --list-formats)")
if not args.format:
parser.error("--format is required (unless using --list-formats)")
if not os.path.exists(args.config):
print(f"Error: Config file not found: {args.config}", file=sys.stderr)
sys.exit(1)
# Parse options
options = {}
for opt in args.option:
if "=" in opt:
k, v = opt.split("=", 1)
options[k.strip()] = v.strip()
# Build context
print(f"Loading config from: {args.config}")
context = build_export_context(args.config)
print(f"Loaded {len(context.items)} items, {len(context.annotations)} annotations")
# Export
print(f"Exporting to {args.format} format...")
result = export_registry.export(args.format, context, args.output, options)
if result.success:
print(f"\nExport successful!")
print(f"Files written:")
for f in result.files_written:
print(f" {f}")
if result.stats:
print(f"\nStatistics:")
for k, v in result.stats.items():
print(f" {k}: {v}")
else:
print(f"\nExport failed!", file=sys.stderr)
for err in result.errors:
print(f" ERROR: {err}", file=sys.stderr)
if result.warnings:
print(f"\nWarnings:")
for w in result.warnings:
print(f" WARNING: {w}")
sys.exit(0 if result.success else 1)
if __name__ == "__main__":
main()
|