firebase-admin.machine-learning package

Firebase ML。

関数

関数 説明
getMachineLearning(アプリ) デフォルト アプリまたは特定のアプリの MachineLearning サービスを取得します。getMachineLearning() は、引数なしでデフォルト アプリの MachineLearning サービスにアクセスするか、getMachineLearning(app) として呼び出して、特定のアプリに関連付けられた MachineLearning サービスにアクセスできます。

クラス

クラス 説明
機械学習 Firebase MachineLearning サービス インターフェース。
モデル Firebase ML モデル出力オブジェクト。

インターフェース

インターフェース 説明
GcsTfliteModelOptions
ListModelsOptions モデルを一覧表示するオプションを表すインターフェース。
ListModelsResult listModels オペレーションのレスポンス オブジェクト。
ModelOptionsBase Firebase ML モデルの入力オブジェクト
TFLiteModel TensorFlow Lite Model 出力オブジェクト

型エイリアス

型エイリアス 説明
ModelOptions

getMachineLearning(アプリ)

デフォルト アプリまたは特定のアプリの ML サービスを取得します。

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;