【发布时间】:2020-02-20 21:29:06
【问题描述】:
GCP 拥有可在其云计算平台上运行的深度学习 VM。图片详情here
所以,我正在使用 google python 客户端来启动我的实例,这方面的文档可在 here 获得。现在,指定磁盘和启动映像的方式是通过这个 JSON blob:
'disks': [
{
'boot': True,
'autoDelete': True,
'initializeParams': {
'sourceImage': source_disk_image,
}
}
]
现在source_disk_image 由一些公共图像的路径指定,例如:
projects/debian-cloud/global/images/family/debian-9 或这种类型的一些变体。现在,我的问题是如何指定一些市场图像用于我的实例?
【问题讨论】:
标签: google-cloud-platform google-compute-engine google-api-python-client google-dl-platform