Vertex AI는 예측을 요청한 후 모델의 목표에 따라 결과를 반환합니다. 다중 라벨 분류 모델의 예측은 각 문서에 대한 하나 이상의 라벨 및 각 라벨에 대한 신뢰도 점수를 반환합니다. 단일 라벨 분류 모델의 경우 예측은 문서당 하나의 라벨과 신뢰도 점수만 반환합니다.
신뢰도 점수는 모델이 각 클래스 또는 라벨을 테스트 항목과 얼마나 밀접하게 연관시키는지를 전달합니다. 숫자가 높을수록 해당 항목에 라벨이 적용되어야 하는 모델의 신뢰도가 높아집니다. 모델의 결과를 수락할 신뢰도 점수를 얼마나 높게 책정할지 결정합니다.
점수 기준점 슬라이더
Google Cloud 콘솔에서 Vertex AI는 모든 클래스나 라벨 또는 개별 클래스나 라벨의 신뢰도 기준을 조정하는 데 사용되는 슬라이더를 제공합니다. 슬라이더는 평가 탭의 모델 세부정보 페이지에서 사용할 수 있습니다. 신뢰도 기준점은 모델이 테스트 항목에 클래스 또는 라벨을 할당하는 데 필요한 신뢰도 수준입니다. 기준점을 조정할 때 모델의 정밀도와 재현율이 어떻게 변경되는지 확인할 수 있습니다. 기준점이 높으면 대개 정밀도가 높아지며 재현율이 낮아집니다.
일괄 예측 출력 예시
다음 샘플은 다중 라벨 분류 모델의 예측 결과입니다. 모델이 제출된 문서에 GreatService, Suggestion, InfoRequest 라벨을 적용했습니다. 신뢰도 값은 각 라벨에 순서대로 적용됩니다. 이 예시에서 모델은 GreatService를 가장 관련성 높은 라벨로 예측했습니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["이해하기 어려움","hardToUnderstand","thumb-down"],["잘못된 정보 또는 샘플 코드","incorrectInformationOrSampleCode","thumb-down"],["필요한 정보/샘플이 없음","missingTheInformationSamplesINeed","thumb-down"],["번역 문제","translationIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-09-04(UTC)"],[],[],null,["# Interpret prediction results from text classification models\n\n| Starting on September 15, 2024, you can only customize classification, entity extraction, and sentiment analysis objectives by moving to Vertex AI Gemini prompts and tuning. Training or updating models for Vertex AI AutoML for Text classification, entity extraction, and sentiment analysis objectives will no longer be available. You can continue using existing Vertex AI AutoML Text models until June 15, 2025. For a comparison of AutoML text and Gemini, see [Gemini for AutoML text users](/vertex-ai/docs/start/automl-gemini-comparison). For more information about how Gemini offers enhanced user experience through improved prompting capabilities, see [Introduction to tuning](/vertex-ai/generative-ai/docs/models/tune-gemini-overview). To get started with tuning, see [Model tuning for Gemini text models](/vertex-ai/generative-ai/docs/models/tune_gemini/tune-gemini-learn)\n\nAfter requesting a prediction, Vertex AI returns results based on your\nmodel's objective. Predictions from multi-label classification models return one\nor more labels for each document and a confidence score for each label. For\nsingle-label classification models, predictions return only one label and\nconfidence score per document.\n\n\nThe confidence score communicates how strongly your model associates each\nclass or label with a test item. The higher the number, the higher the model's\nconfidence that the label should be applied to that item. You decide how high\nthe confidence score must be for you to accept the model's results.\n\n\u003cbr /\u003e\n\nScore threshold slider\n----------------------\n\n\nIn the Google Cloud console, Vertex AI provides a slider that's\nused to adjust the confidence threshold for all classes or labels, or an\nindividual class or label. The slider is available on a model's detail page in\nthe **Evaluate** tab. The confidence threshold is the confidence level that\nthe model must have for it to assign a class or label to a test item. As you\nadjust the threshold, you can see how your model's precision and recall\nchanges. Higher thresholds typically increase precision and lower recall.\n\n\u003cbr /\u003e\n\nExample batch prediction output\n-------------------------------\n\nThe following sample is the predicted result for a multi-label classification\nmodel. The model applied the `GreatService`, `Suggestion`, and `InfoRequest`\nlabels to the submitted document. The confidence values apply to each of the\nlabels in order. In this example, the model predicted `GreatService` as the most\nrelevant label.\n\n\n| **Note**: The following JSON Lines example includes line breaks for\n| readability. In your JSON Lines files, line breaks are included only after each\n| each JSON object.\n\n\u003cbr /\u003e\n\n\n```\n{\n \"instance\": {\"content\": \"gs://bucket/text.txt\", \"mimeType\": \"text/plain\"},\n \"predictions\": [\n {\n \"ids\": [\n \"1234567890123456789\",\n \"2234567890123456789\",\n \"3234567890123456789\"\n ],\n \"displayNames\": [\n \"GreatService\",\n \"Suggestion\",\n \"InfoRequest\"\n ],\n \"confidences\": [\n 0.8986392080783844,\n 0.81984345316886902,\n 0.7722353458404541\n ]\n }\n ]\n}\n```"]]