제로 샷 학습: 모델이 보이지 않는 데이터를 classify 객체 감지, NLP 등을 혁신하는 최첨단 AI 접근 방식에 대해 알아보세요.
Zero-Shot Learning (ZSL) is a machine learning paradigm that enables artificial intelligence models to recognize, classify, or detect objects they have never encountered during their training phase. In traditional supervised learning, a model requires thousands of labeled examples for every specific category it needs to identify. ZSL eliminates this strict dependency by leveraging auxiliary information—typically text descriptions, semantic attributes, or embeddings—to bridge the gap between seen and unseen classes. This capability allows artificial intelligence (AI) systems to be significantly more flexible, scalable, and capable of handling dynamic environments where collecting exhaustive data for every possible object is impractical.
The core mechanism of ZSL involves transferring knowledge from familiar concepts to unfamiliar ones using a shared semantic space. Instead of learning to recognize a "zebra" solely by memorizing pixel patterns of black and white stripes, the model learns the relationship between visual features and semantic attributes (e.g., "horse-like shape," "striped pattern," "four legs") derived from natural language processing (NLP).
This process often relies on multi-modal models that align image and text representations. For instance, foundational research like OpenAI's CLIP demonstrates how models can learn visual concepts from natural language supervision. When a ZSL model encounters an unseen object, it extracts the visual features and compares them against a dictionary of semantic vectors. If the visual features align with the semantic description of the new class, the model can correctly classify it, effectively performing a "zero-shot" prediction. This approach is fundamental to modern foundation models which generalize across vast arrays of tasks.
제로샷 학습은 시스템이 초기 훈련 데이터를 넘어 일반화할 수 있도록 함으로써 다양한 산업 분야에서 혁신을 주도하고 있습니다.
Ultralytics YOLO 모델은 제로샷 학습의 실제 적용 사례를 보여줍니다. 이 모델은 사용자가 모델을 재훈련하지 않고도 런타임에 동적으로 사용자 정의 클래스를 정의할 수 있게 합니다. 이는 강력한 탐지 백본과 자연어를 이해하는 텍스트 인코더를 결합함으로써 달성됩니다.
The following Python example demonstrates how to use YOLO-World to detect objects that were not explicitly part of a
standard training set using the ultralytics 패키지입니다.
from ultralytics import YOLOWorld
# Load a pre-trained YOLO-World model capable of Zero-Shot Learning
model = YOLOWorld("yolov8s-world.pt")
# Define custom classes via text prompts (e.g., specific accessories)
# The model adjusts to detect these new classes without retraining
model.set_classes(["blue backpack", "red apple", "sunglasses"])
# Run inference on an image to detect the new zero-shot classes
results = model.predict("https://ultralytics.com/images/bus.jpg")
# Display the results
results[0].show()
ZSL을 완전히 이해하려면 다음에서 사용되는 유사한 학습 전략과 구별하는 것이 도움이 됩니다. 컴퓨터 비전(CV):
While ZSL offers immense potential, it faces challenges such as the domain shift problem, where the semantic attributes learned during training do not perfectly map to the visual appearance of unseen classes. Additionally, ZSL models can suffer from bias, where prediction accuracy is significantly higher for seen classes compared to unseen ones.
Research from organizations like Stanford University's AI Lab and the IEEE Computer Society continues to address these limitations. As computer vision tools become more robust, ZSL is expected to become a standard feature, reducing the reliance on massive data labeling efforts. For teams looking to manage datasets efficiently before deploying advanced models, the Ultralytics Platform offers comprehensive tools for annotation and dataset management.