Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
BigQuery ML-Modellgewichtungen
In diesem Dokument wird beschrieben, wie BigQuery ML die Sichtbarkeit von Modellgewichtungen für ML-Modelle unterstützt.
Ein ML-Modell ist ein Artefakt, das nach dem Ausführen eines ML-Algorithmus für Trainingsdaten gespeichert wird. Das Modell stellt die Regeln, Zahlen und andere algorithmusspezifische Datenstrukturen dar, die für Vorhersagen erforderlich sind. Einige Beispiele:
Ein lineares Regressionsmodell besteht aus einem Vektor von Koeffizienten mit bestimmten Werten.
Ein Entscheidungsbaummodell besteht aus einer oder mehreren Baumstrukturen von Wenn-dann-Anweisungen, die bestimmte Werte haben.
Ein neuronales Deep-Learning-Netzwerkmodell besteht aus einer Graphenstruktur mit Vektoren oder Matrizen von Gewichtungen, die bestimmte Werte haben.
In BigQuery ML wird der Begriff Modellgewichtung verwendet, um die Komponenten zu beschreiben, aus denen ein Modell besteht.
Informationen zu den unterstützten SQL-Anweisungen und -Funktionen für die einzelnen Modelltypen finden Sie unter End-to-End-Nutzerpfad für jedes Modell.
Modellgewichtungsangebote in BigQuery ML
BigQuery ML bietet mehrere Funktionen, mit denen Sie die Modellgewichtungen für verschiedene Modelle abrufen können.
Ruft die Koeffizienten des ARIMA-Modells ab, mit dem die Trendkomponente der Eingabezeitachse modelliert wird. Um Informationen zu anderen Komponenten zu erhalten, z. B. saisonalen Mustern, die in der Zeitreihe vorhanden sind, verwenden Sie ML.ARIMA_EVALUATE.
BigQuery ML unterstützt keine Modellgewichtungsfunktionen für die folgenden Modelltypen:
Wenn Sie die Gewichtung aller Modelltypen mit Ausnahme von AutoML Tables-Modellen sehen möchten, exportieren Sie das Modell aus BigQuery ML nach Cloud Storage.
Sie können dann die XGBoost-Bibliothek zur Visualisierung der Baumstruktur für Boosted Tree- und Random Forest-Modelle oder die TensorFlow-Bibliothek zur Visualisierung der Graphenstruktur für DNN- und Wide-and-Deep-Modelle verwenden. Es gibt keine Methode zum Abrufen von Informationen zur Modellgewichtung für AutoML Tables-Modelle.
[[["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-17 (UTC)."],[[["\u003cp\u003eBigQuery ML uses the term "model weights" to describe the components that make up a machine learning model, such as coefficients, trees of if-then statements, or graph structures with weights.\u003c/p\u003e\n"],["\u003cp\u003eBigQuery ML provides functions like \u003ccode\u003eML.WEIGHTS\u003c/code\u003e, \u003ccode\u003eML.CENTROIDS\u003c/code\u003e, \u003ccode\u003eML.PRINCIPAL_COMPONENTS\u003c/code\u003e, \u003ccode\u003eML.PRINCIPAL_COMPONENT_INFO\u003c/code\u003e, and \u003ccode\u003eML.ARIMA_COEFFICIENTS\u003c/code\u003e to retrieve model weights for various supervised and unsupervised model types.\u003c/p\u003e\n"],["\u003cp\u003eSupported model categories include supervised models like Linear and Logistic Regression, and unsupervised models like Kmeans, Matrix Factorization, and PCA, alongside Time series models such as ARIMA_PLUS, each having their corresponding weight retrieval functions.\u003c/p\u003e\n"],["\u003cp\u003eModel weight functions are not supported for models like Boosted tree, Random forest, Deep neural network (DNN), Wide-and-deep, and AutoML Tables, however, you can export most of these model types to Cloud Storage to visualize them using XGBoost or TensorFlow, except for AutoML Tables.\u003c/p\u003e\n"]]],[],null,["# BigQuery ML model weights overview\n==================================\n\nThis document describes how BigQuery ML supports model weights\ndiscoverability for machine learning (ML) models.\n\nAn ML model is an artifact that is saved after running an ML algorithm on\ntraining data. The model represents the rules, numbers,\nand any other algorithm-specific data structures that are required to make\npredictions. Some examples include the following:\n\n- A linear regression model is comprised of a vector of coefficients that have specific values.\n- A decision tree model is comprised of one or more trees of if-then statements that have specific values.\n- A deep neural network model is comprised of a graph structure with vectors or matrices of weights that have specific values.\n\nIn BigQuery ML, the term *model weights* is used to describe the\ncomponents that a model is comprised of.\n\nFor information about the supported SQL statements and functions for each\nmodel type, see\n[End-to-end user journey for each model](/bigquery/docs/e2e-journey).\n\nModel weights offerings in BigQuery ML\n--------------------------------------\n\nBigQuery ML offers multiple functions that you can use to\nretrieve the model weights for different models.\n\nBigQuery ML doesn't support model weight functions for the\nfollowing types of models:\n\n- [Boosted tree](/bigquery/docs/reference/standard-sql/bigqueryml-syntax-create-boosted-tree)\n- [Random forest](/bigquery/docs/reference/standard-sql/bigqueryml-syntax-create-random-forest)\n- [Deep neural network (DNN)](/bigquery/docs/reference/standard-sql/bigqueryml-syntax-create-dnn-models)\n- [Wide-and-deep](/bigquery/docs/reference/standard-sql/bigqueryml-syntax-create-wnd-models)\n- [AutoML Tables](/bigquery/docs/reference/standard-sql/bigqueryml-syntax-create-automl)\n\nTo see the weights of all of these model types except for AutoML Tables\nmodels, export the model from BigQuery ML to Cloud Storage.\nYou can then use the XGBoost library to visualize the tree structure for\nboosted tree and random forest models, or the TensorFlow library\nto visualize the graph structure for DNN and wide-and-deep models. There is no\nmethod for getting model weight information for AutoML Tables models.\n\nFor more information about exporting a model, see\n[`EXPORT MODEL` statement](/bigquery/docs/reference/standard-sql/bigqueryml-syntax-export-model)\nand\n[Export a BigQuery ML model for online prediction](/bigquery/docs/export-model-tutorial)."]]