このページの一部またはすべての情報は、S3NS の Trusted Cloud に適用されない場合があります。
モデルの作成
BigQuery ML を使用すると、SQL を使用して BigQuery のデータから ML モデルを構築して、運用することができます。
BigQuery ML の一般的なモデル開発ワークフローは次のようになります。
CREATE MODEL
ステートメントを使用してモデルを作成します。
- 特徴量の前処理を行います。いくつかの前処理は自動的に行われます。また、
TRANSFORM
句の中で手動処理関数を使用して、追加の前処理を行うことができます。
- モデルがトレーニング データに適合するようにハイパーパラメータの調整を行い、モデルを改良します。
- モデルを評価して、トレーニング セット外のデータに対するモデルの性能を評価し、必要に応じて他のモデルと比較します。
- モデルを使用してデータを分析するために推論を実行します。
- 特定の特徴量がある予測にどのように影響したか、さらにはモデル全体にどのように影響したかを明確にするため、モデルに説明可能性を与えます。
- モデルの重み付けを使用して、モデルを構成するコンポーネントの詳細を確認します。
BigQuery ML ではさまざまな種類のモデルを使用できるため、各モデルで使用できる関数が異なります。各モデルで使用できる特定の関数については、各モデルのエンドツーエンドのユーザー ジャーニーをご覧ください。
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2025-08-17 UTC。
[[["わかりやすい","easyToUnderstand","thumb-up"],["問題の解決に役立った","solvedMyProblem","thumb-up"],["その他","otherUp","thumb-up"]],[["必要な情報がない","missingTheInformationINeed","thumb-down"],["複雑すぎる / 手順が多すぎる","tooComplicatedTooManySteps","thumb-down"],["最新ではない","outOfDate","thumb-down"],["翻訳に関する問題","translationIssue","thumb-down"],["サンプル / コードに問題がある","samplesCodeIssue","thumb-down"],["その他","otherDown","thumb-down"]],["最終更新日 2025-08-17 UTC。"],[[["\u003cp\u003eBigQuery ML enables the creation and operationalization of machine learning models using SQL over BigQuery data.\u003c/p\u003e\n"],["\u003cp\u003eModel development in BigQuery ML involves creating, preprocessing, tuning, evaluating, inferencing, and explaining models.\u003c/p\u003e\n"],["\u003cp\u003eBigQuery ML supports both automatic and manual feature preprocessing via functions and the \u003ccode\u003eTRANSFORM\u003c/code\u003e clause.\u003c/p\u003e\n"],["\u003cp\u003eHyperparameter tuning is used to refine the model to better fit the training data.\u003c/p\u003e\n"],["\u003cp\u003eThe available functions vary between each type of model, detailed in the end-to-end user journey for each model.\u003c/p\u003e\n"]]],[],null,["# Model creation\n==============\n\nBigQuery ML lets you build and operationalize machine learning (ML)\nmodels over data in BigQuery by using SQL.\n\nA typical model development workflow in BigQuery ML looks similar\nto the following:\n\n1. Create the model using the [`CREATE MODEL` statement](/bigquery/docs/reference/standard-sql/bigqueryml-syntax-create).\n2. Perform feature preprocessing. Some preprocessing happens [automatically](/bigquery/docs/reference/standard-sql/bigqueryml-auto-preprocessing), plus you can use [manual preprocessing functions](/bigquery/docs/reference/standard-sql/bigqueryml-preprocessing-functions) inside the [`TRANSFORM` clause](/bigquery/docs/reference/standard-sql/bigqueryml-syntax-create#transform) to do additional preprocessing.\n3. Refine the model by performing [hyperparameter tuning](/bigquery/docs/hp-tuning-overview) to fit the model to the training data.\n4. [Evaluate the model](/bigquery/docs/evaluate-overview) to assess how it might perform on data outside of the training set, and also to compare it to other models if appropriate.\n5. [Perform inference](/bigquery/docs/inference-overview) to analyze data by using the model.\n6. Provide [explainability](/bigquery/docs/xai-overview) for the model, to clarify how particular features influenced a given prediction and also the model overall.\n7. Learn more about the components that comprize the model by using [model weights](/bigquery/docs/weights-overview).\n\nBecause you can use many different kinds of models in BigQuery ML,\nthe functions available for each model vary. See the\n[End-to-end user journey for each model](/bigquery/docs/e2e-journey) to see\nthe specific functions available for each model."]]