AutoML 功能存放區整合
AutoML 可以使用 Unity
需求
- 分類和回歸實驗需要 Databricks Runtime 11.3 LTS ML 和更新版本。
- 預測實驗需要 Databricks Runtime 12.2 LTS ML 和更新版本。
Select 使用 AutoML UI 的功能 table
設定 AutoML 實驗之後,您可以按照以下步驟來 select 一些功能 table:
點選「Join」功能(選擇性)。
在 [Join 功能] 頁面上,select 功能 table 功能 功能 Table 字段中。
針對每個 功能 table 主鍵,select 對應的查找索引鍵。 您為 AutoML 實驗提供的訓練數據集中的查找鍵值應該是 column。
針對 時間序列特徵 tables,select 的對應時間戳查閱鍵。 同樣地,時間戳查詢鍵應該是您為 AutoML 實驗提供的訓練數據集中的 column。
若要新增更多功能 tables,請按兩下 [新增其他功能 table 並重複上述步驟。
使用 AutoML API 的功能 tables
若要在 AutoML 執行規格中使用現有功能 tablessetfeature_store_lookups
參數。
feature_store_lookups = [
{
"table_name": "example.trip_pickup_features",
"lookup_key": ["pickup_zip", "rounded_pickup_datetime"],
},
{
"table_name": "example.trip_dropoff_features",
"lookup_key": ["dropoff_zip", "rounded_dropoff_datetime"],
}
]
下列筆記本示範如何將功能 tablesjoin 至定型數據集,以搭配 AutoML 使用。