クール スタート cs34 -ii tx リモートはどのように使用しますか?
defsample_predict(プロジェクト、場所、モデルid、input_json、gcs_output_folder_prefix):
"""CS34-TX モデルを使用して予測します。"""
google.cloud から aiplatform をインポート
# AI Platform サービスにはリージョン API エンドポイントが必要です。
client_options ={"api_endpoint":f"{location}-aiplatform.googleapis.com"}
# リクエストの作成と送信に使用されるクライアントを初期化します。
# このクライアントは一度作成するだけで済み、複数のリクエストに再利用できます。
client =aiplatform.gapic.ModelServiceClient(client_options=client_options)
名前 =client.model_path(
project=プロジェクト、location=場所、model=model_id
) #モデル =モデルID
print("名前=, 名前)
応答 =client.cold_start_tx(
location=f"プロジェクト/{プロジェクト}/場所/{場所}",
input_text=input_json、
モデルパラメータ={
"gcs_output_folder_prefix":gcs_output_folder_prefix
}、
モデル名=名前、
) # name =デプロイ時にバージョンが指定された場合は、バージョンのプレフィックスが付いたモデル名。
応答を返す
「」