Я хотел бы попробовать PEGASUS, чтобы подытожить статью. https://github.com/google-research/pegasus
Я выполнил эту инструкцию. https://github.com/google-research/pegasus/tree/f76b63c2886748f7f5c6c9fb547456d8c6002562#setup
Я проверил регион, который я могу использовать NVIDIA Tesla V100
, и решил использовать us-central1-a
https://cloud.google.com/compute/docs/gpus
I использовал эту команду.
gcloud compute instances create pegasustest --zone=us-central1-a
--machine-type=n1-highmem-8 --accelerator type=nvidia-tesla-v100,count=1
--boot-disk-size=500GB --image-project=ml-images --image-family=tf-1-15
--maintenance-policy TERMINATE --restart-on-failure
Я получил это сообщение об ошибке.
ERROR: (gcloud.compute.instances.create) Could not fetch resource:
- The zone 'projects/covid19agent/zones/us-central1-a' does not have enough
resources available to fulfill the request.
Try a different zone, or try again later.
Я потратил 3 часа и попытался снова, но получил тот же результат.
Итак , Я изменил регион с us-central1-a
на asia-east1-c
.
Я использовал эту команду.
gcloud compute instances create pegasustest --zone=asia-east1-c
--machine-type=n1-highmem-8 --accelerator type=nvidia-tesla-v100,count=1
--boot-disk-size=500GB --image-project=ml-images --image-family=tf-1-15
--maintenance-policy TERMINATE --restart-on-failure
Затем я получил это сообщение об ошибке.
WARNING: Some requests generated warnings:
- Disk size: '500 GB' is larger than image size: '10 GB'.
You might need to resize the root repartition manually
if the operating system does not support automatic resizing.
See https://cloud.google.com/compute/docs/disks/add-persistent-disk#resize_pd
for details.
ERROR: (gcloud.compute.instances.create) Could not fetch resource:
- Quota 'GPUS_ALL_REGIONS' exceeded. Limit: 0.0 globally.
Я не могу попробовать ПЕГАС? И не слишком ли дорого стоит попробовать PEGASUS?