Mantenha tudo organizado com as coleções
Salve e categorize o conteúdo com base nas suas preferências.
Disponibilização de atributos
Neste documento, descrevemos as opções para disponibilizar
recursos para treinamento e inferência de modelos do BigQuery ML. Para todas as opções, é necessário salvar os recursos nas tabelas do BigQuery como uma primeira etapa obrigatória.
Correção pontual
Os dados usados para treinar um modelo geralmente têm dependências de tempo integradas. Ao
criar uma tabela de atributos com alteração de horário, inclua uma coluna de carimbo de data/hora
para representar os valores do atributo como existiam em um determinado momento para cada
linha. Use funções de pesquisa pontual ao consultar dados de tabelas de recursos
para garantir que não haja vazamento de dados entre o treinamento e a disponibilização. Isso permite a precisão pontual.
Use as funções a seguir para especificar limites pontuais ao recuperar
recursos sensíveis ao tempo:
Para treinar modelos e realizar inferências em lote no BigQuery ML, é possível recuperar recursos usando uma das funções de pesquisa pontual descritas na seção Precisão pontual. É possível
incluir essas funções na
cláusula query_statement da instrução CREATE MODEL para
treinamento ou na cláusula query_statement da função com valor de tabela
adequada, como ML.PREDICT,
para veiculação.
Disponibilizar recursos com a Vertex AI Feature Store
Para veicular recursos para modelos do BigQuery ML que estão
registrados na Vertex AI,
use a
Vertex AI Feature Store.
A Vertex AI Feature Store funciona em cima das tabelas de atributos no
BigQuery para gerenciar e disponibilizar recursos com baixa latência. É possível
usar a disponibilização on-line
para extrair recursos em tempo real para a previsão on-line e usar a
disponibilização off-line
para extrair recursos para o treinamento do modelo.
Para mais informações sobre como preparar dados de recursos do BigQuery
para serem usados no Feature Store da Vertex AI, consulte
Preparar a fonte de dados.
[[["Fácil de entender","easyToUnderstand","thumb-up"],["Meu problema foi resolvido","solvedMyProblem","thumb-up"],["Outro","otherUp","thumb-up"]],[["Difícil de entender","hardToUnderstand","thumb-down"],["Informações incorretas ou exemplo de código","incorrectInformationOrSampleCode","thumb-down"],["Não contém as informações/amostras de que eu preciso","missingTheInformationSamplesINeed","thumb-down"],["Problema na tradução","translationIssue","thumb-down"],["Outro","otherDown","thumb-down"]],["Última atualização 2025-08-17 UTC."],[[["\u003cp\u003eFeatures must be saved in BigQuery tables before they can be used for BigQuery ML model training and inference.\u003c/p\u003e\n"],["\u003cp\u003eIncluding a timestamp column in feature tables allows for point-in-time correctness, preventing data leakage between training and serving.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003eML.FEATURES_AT_TIME\u003c/code\u003e and \u003ccode\u003eML.ENTITY_FEATURES_AT_TIME\u003c/code\u003e functions are used to specify point-in-time cutoffs when retrieving time-sensitive features.\u003c/p\u003e\n"],["\u003cp\u003eBigQuery ML models can use point-in-time lookup functions in \u003ccode\u003eCREATE MODEL\u003c/code\u003e statements or in table-valued functions like \u003ccode\u003eML.PREDICT\u003c/code\u003e to retrieve features for training and batch inference.\u003c/p\u003e\n"],["\u003cp\u003eVertex AI Feature Store can be used to manage and serve features with low latency for BigQuery ML models registered in Vertex AI, supporting both real-time online prediction and offline model training.\u003c/p\u003e\n"]]],[],null,["# Feature serving\n===============\n\nThis document describes your options for making\n[features](/bigquery/docs/preprocess-overview) available for BigQuery ML\nmodel training and inference. For all options, you must save the features in\nBigQuery tables as a prerequisite first step.\n\nPoint-in-time correctness\n-------------------------\n\nThe data used to train a model often has time dependencies built into it. When\nyou create a feature table for time sensitive features, include a timestamp\ncolumn to represent the feature values as they existed at a given time for each\nrow. You can then use point-in-time lookup functions when querying data from\nthese feature tables in order to ensure that there is no [data\nleakage](https://en.wikipedia.org/wiki/Leakage_(machine_learning)) between\ntraining and serving. This process enables point-in-time correctness.\n\nUse the following functions to specify point-in-time cutoffs when retrieving\ntime sensitive features:\n\n- [`ML.FEATURES_AT_TIME`](/bigquery/docs/reference/standard-sql/bigqueryml-syntax-feature-time)\n- [`ML.ENTITY_FEATURES_AT_TIME`](/bigquery/docs/reference/standard-sql/bigqueryml-syntax-entity-feature-time)\n\nServe features in BigQuery ML\n-----------------------------\n\nTo train models and perform batch inference in BigQuery ML, you\ncan retrieve features using one of the point-in-time lookup functions described\nin the [Point-in-time correctness](#point-in-time_correctness) section. You can\ninclude these functions in the\n[`query_statement` clause](/bigquery/docs/reference/standard-sql/bigqueryml-syntax-create#query_statement) of the `CREATE MODEL` statement for\ntraining, or in the `query_statement` clause of the appropriate table-valued\nfunction, such as\n[`ML.PREDICT`](/bigquery/docs/reference/standard-sql/bigqueryml-syntax-predict),\nfor serving.\n\nServe features with Vertex AI Feature Store\n-------------------------------------------\n\nTo serve features to BigQuery ML models that are\n[registered in Vertex AI](/bigquery/docs/managing-models-vertex#register_models),\nyou can use\n[Vertex AI Feature Store](/vertex-ai/docs/featurestore/latest/overview).\nVertex AI Feature Store works on top of feature tables in\nBigQuery to manage and serve features with low latency. You can\nuse [online serving](/vertex-ai/docs/featurestore/latest/serve-feature-values)\nto retrieve features in real time for online prediction, and you can use\n[offline serving](/vertex-ai/docs/featurestore/latest/serve-historical-features)\nto retrieve features for model training.\n\nFor more information about preparing BigQuery feature data\nto be used in Vertex AI Feature Store, see\n[Prepare data source](/vertex-ai/docs/featurestore/latest/prepare-data-source)."]]