Google Cloud에서 기초 데이터, ML, AI 작업 수행: Challenge Lab
1.간단한 Dataflow 작업 실행
bq mk lab
gsutil cp gs://cloud-training/gsp323/lab.csv .
cat lab.csv
gsutil cp gs://cloud-training/gsp323/lab.schema .
cat lab.schema
2. 간단한 Dataproc 작업 실행
작업이 완료될 때까지 기다린 다음 진행률 확인을 클릭합니다.
3. 간단한 Dataprep 작업 실행
gs://cloud-training/gsp323/runs.csv structure:
데이터가 올바른 상태인지 확인하려면 다음 변환을 수행하십시오.
Note: Your Dataprep job should look similar to the following
Make sure you run the job. You will need to wait until the Dataflow job completes before you can grade this task.
4. AI
아래의 다음 작업 중 하나를 완료하십시오.
gcloud iam service-accounts create my-natlang-sa \
--display-name "my natural language service account"
gcloud iam service-accounts keys create ~/key.json \
--iam-account my-natlang-sa@${GOOGLE_CLOUD_PROJECT}.iam.gserviceaccount.com
export GOOGLE_APPLICATION_CREDENTIALS="/home/$USER/key.json"
gcloud auth activate-service-account my-natlang-sa@${GOOGLE_CLOUD_PROJECT}.iam.gserviceaccount.com --key-file=$GOOGLE_APPLICATION_CREDENTIALS
gcloud ml language analyze-entities --content="Old Norse texts portray Odin as one-eyed and long-bearded, frequently wielding a spear named Gungnir and wearing a cloak and a broad hat." > result.json
gcloud auth login
(Copy the token from the link provided)
gsutil cp result.json gs://YOUR_PROJECT-marking/task4-cnl.result
API 키 생성 및 API_KEY 변수로 내보내기
export API_KEY={Replace with API KEY}
nano request.json
이 내용을 추가하십시오:
{
"config": {
"encoding":"FLAC",
"languageCode": "en-US"
},
"audio": {
"uri":"gs://cloud-training/gsp323/task4.flac"
}
}
단말기
curl -s -X POST -H "Content-Type: application/json" --data-binary @request.json \
"https://speech.googleapis.com/v1/speech:recognize?key=${API_KEY}" > result.json
gsutil cp result.json gs://YOUR_PROJECT-marking/task4-gcs.result
gcloud iam service-accounts create quickstart
gcloud iam service-accounts keys create key.json --iam-account quickstart@${GOOGLE_CLOUD_PROJECT}.iam.gserviceaccount.com
gcloud auth activate-service-account --key-file key.json
export ACCESS_TOKEN=$(gcloud auth print-access-token)
nano request.json
Reference
이 문제에 관하여(Google Cloud에서 기초 데이터, ML, AI 작업 수행: Challenge Lab), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/sandeepk27/perform-foundational-data-ml-and-ai-tasks-in-google-cloud-challenge-lab-1m29텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)