共用方式為


AutoML 功能存放區整合

AutoML 可以使用 Unity 舊版工作區功能存放區中的 功能 功能,來增強原始輸入數據集。

需求

  • 分類和回歸實驗需要 Databricks Runtime 11.3 LTS ML 和更新版本。
  • 預測實驗需要 Databricks Runtime 12.2 LTS ML 和更新版本。

Select 使用 AutoML UI 的功能 table

設定 AutoML 實驗之後,您可以按照以下步驟來 select 一些功能 table:

  1. 點選「Join」功能(選擇性)

    SelectJoin 功能按鈕

  2. 在 [Join 功能] 頁面上,select 功能 table 功能 功能 Table 字段中。

  3. 針對每個 功能 table 主鍵,select 對應的查找索引鍵。 您為 AutoML 實驗提供的訓練數據集中的查找鍵值應該是 column。

  4. 針對 時間序列特徵 tables,select 的對應時間戳查閱鍵。 同樣地,時間戳查詢鍵應該是您為 AutoML 實驗提供的訓練數據集中的 column。

    Select 主鍵和查找 tables

  5. 若要新增更多功能 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 使用。

使用功能 tables 筆記本的 AutoML 實驗

Get 筆記本