언어 기반 모델 조정(생성형 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 샘플 브라우저를 참조하세요.