Spaces:
Sleeping
Sleeping
File size: 476 Bytes
8b4d6a8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | """
Annotation QA Environment — A real-world OpenEnv for ML annotation quality assurance.
This environment exposes an AI agent to intentionally-flawed annotations on
synthetic scenes, challenging it to detect and correct errors.
"""
from .client import AnnotationQAEnv
from .models import AnnotationQAAction, AnnotationQAObservation, AnnotationQAState
__all__ = [
"AnnotationQAEnv",
"AnnotationQAAction",
"AnnotationQAObservation",
"AnnotationQAState",
]
|