Firebase 機器學習。
函式
函式 | 說明 |
---|---|
getMachineLearning(應用程式) | 取得適用於預設應用程式或指定應用程式的機器學習服務。getMachineLearning() 無需引數即可存取預設應用程式的 MachineLearning 服務,或以 getMachineLearning(app) 特定應用程式的方式存取該服務MachineLearning 。 |
類別
類別 | 說明 |
---|---|
機器學習 | Firebase MachineLearning 服務介面。 |
型號 | Firebase ML 模型輸出物件。 |
介面
介面 | 說明 |
---|---|
GcsTfliteModelOptions | |
ListModelsOptions | 代表列出模型選項的介面。 |
ListModelsResult | listModels 作業的回應物件。 |
ModelOptionsBase | Firebase ML 模型輸入物件 |
TFLiteModel | TensorFlow Lite 模型輸出物件 |
型別別名
類型別名 | 說明 |
---|---|
ModelOptions |
getMachineLearning(應用程式)
取得預設應用程式或特定應用程式的 MachineLearning 服務。
呼叫 getMachineLearning()
時無需引數即可存取預設應用程式的 MachineLearning
服務,也可使用 getMachineLearning(app)
形式呼叫,藉此存取與特定應用程式相關聯的 MachineLearning
服務。
簽名:
export declare function getMachineLearning(app?: App): MachineLearning;
參數
參數 | 類型 | 說明 |
---|---|---|
應用程式 | 應用程式 | 要傳回其 MachineLearning 服務的選用應用程式。如未提供,將傳回預設的 MachineLearning 服務。 |
傳回:
如未提供應用程式,或是與提供應用程式相關聯的 MachineLearning
服務,則預設的 MachineLearning
服務。
範例 1
// Get the MachineLearning service for the default app
const defaultMachineLearning = getMachineLearning();
範例 2
// Get the MachineLearning service for a given app
const otherMachineLearning = getMachineLearning(otherApp);
ModelOptions
簽名:
export type ModelOptions = ModelOptionsBase | GcsTfliteModelOptions;