Vorhersageergebnisse von Modellen zur Extraktion von Textentitäten interpretieren
Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
.
Nach der Anforderung einer Vorhersage gibt Vertex AI Ergebnisse basierend auf dem Ziel Ihres Modells zurück. Vorhersagen aus Entitätsextraktionsmodellen geben Annotationen für jedes Dokument zurück, z. B. die Position der erkannten Entitäten, die zugewiesenen Labels und die Konfidenzwerte.
Die Konfidenz gibt an, wie sicher Ihr Modell die einzelnen Entitäten erkannt und mit Labels versehen hat. Je höher die Zahl, desto höher die Konfidenz des Modells bzgl. der Richtigkeit der Vorhersage.
Beispielausgabe für eine Batchvorhersage
Das folgende Beispiel ist das vorhergesagte Ergebnis für ein Entitätsextraktionsmodell, das dafür trainiert wurde, Krankheiten zu erkennen. Die Offsets (Start- und Endzeichen-Offsets) geben den Ort an, an dem das Modell eine Entität im Dokument erkannt hat. Das Feld content zeigt die erkannte Entität an.
Die Anzeigenamen zeigen die Labels an, die das Modell jeder Entität zugeordnet hat, z. B. SpecificDisease oder DiseaseClass. Die Labels werden den Textsegmenten der Reihe nach zugeordnet.
[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Schwer verständlich","hardToUnderstand","thumb-down"],["Informationen oder Beispielcode falsch","incorrectInformationOrSampleCode","thumb-down"],["Benötigte Informationen/Beispiele nicht gefunden","missingTheInformationSamplesINeed","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],["Zuletzt aktualisiert: 2025-08-18 (UTC)."],[],[],null,["# Interpret prediction results from text entity extraction 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 entity extraction models return annotations\nfor each document, such as the location of detected entities, the assigned\nlabels, and confidence scores.\n\nThe confidence communicates how confident your model accurately identified and\nlabeled each entity. The higher the number, the higher the model's confidence in\nthe correctness of the prediction.\n\nExample batch prediction output\n-------------------------------\n\nThe following sample is the predicted result for an entity extraction model that\nwas trained to detect diseases. The offsets (start and end character offsets)\nspecify the location where the model detected an entity in the document, and the\n`content` field shows the detected entity.\n\nThe display names show the labels that the model associated with each entity,\nsuch as `SpecificDisease` or `DiseaseClass`. The labels map to the text segments\nin order.\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 \"key\": 1,\n \"predictions\": {\n \"ids\": [\n \"1234567890123456789\",\n \"2234567890123456789\",\n \"3234567890123456789\"\n ],\n \"displayNames\": [\n \"SpecificDisease\",\n \"DiseaseClass\",\n \"SpecificDisease\"\n ],\n \"textSegmentStartOffsets\": [13, 40, 57],\n \"textSegmentEndOffsets\": [29, 51, 75],\n \"confidences\": [\n 0.99959725141525269,\n 0.99912621492484128,\n 0.99935531616210938\n ]\n }\n}\n```"]]