言語基盤モデルをチューニングする(生成 AI)

チューニング用データセットを使用して言語基盤モデルをチューニングします。

コードサンプル

Node.js

このサンプルを試す前に、Vertex AI クイックスタート: クライアント ライブラリの使用にある Node.js の設定手順を完了してください。 詳細については、Vertex AI Node.js API のリファレンス ドキュメントをご覧ください。

Vertex AI に対する認証を行うには、アプリケーションのデフォルト認証情報を設定します。詳細については、ローカル開発環境の認証を設定するをご覧ください。

/**
 * TODO(developer): Uncomment these variables before running the sample.\
 * (Not necessary if passing values as arguments)
 */
// const project = 'YOUR_PROJECT_ID';
// const location = 'YOUR_PROJECT_LOCATION';
// const model = 'text-bison@001';
const aiplatform = require('@google-cloud/aiplatform');

const {ModelServiceClient} = aiplatform.v1;
const clientOptions = {
  apiEndpoint: 'us-central1-aiplatform.googleapis.com',
};

// Instantiate the service client.
const modelServiceClient = new ModelServiceClient(clientOptions);

async function listTunedModels() {
  // Configure the parent resource
  const parent = `projects/${project}/locations/${location}`;
  const filter = `labels.google-vertex-llm-tuning-base-model-id=${model}`;

  const request = {
    parent,
    filter,
  };

  const [response] = await modelServiceClient.listModels(request);
  console.log('List Tuned Models response');
  for (const model of response) {
    console.log(`\tModel name: ${model.name}`);
    console.log(`\tDisplay name: ${model.displayName}`);
  }
}
await listTunedModels();

次のステップ

他の Google Cloud プロダクトに関連するコードサンプルを検索およびフィルタするには、Google Cloud のサンプル ブラウザをご覧ください。