除了 12 小时后的会话超时外,google colab 是否有任何限制?
Is there any limitations for google colab other than the session timeout after 12 hours?
其中一个限制是我们每次会话只能连续 12 小时。 GPU 和 TPU 有使用限制吗?
是的,您只能使用 1 个内存有限的 12GB GPU,TPU 具有 64GB 高带宽 Mmeory.You 可以阅读此处 article。
因此,如果您想使用大型数据集,那么我建议您在训练前使用 tf.data.Dataset
进行准备。
如果你想使用 GPU,你可以使用任何 TF 版本。但对于 TPU,我建议使用 TF1.14。
来自 Colab 的文档,
In order to be able to offer computational resources for free, Colab needs to maintain the flexibility to adjust usage limits and hardware availability on the fly. Resources available in Colab vary over time to accommodate fluctuations in demand, as well as to accommodate overall growth and other factors.
简而言之,Colab 具有动态资源供应。所以他们可以改变硬件,它被自动征税太多。
Google给予,Google带走。
其中一个限制是我们每次会话只能连续 12 小时。 GPU 和 TPU 有使用限制吗?
是的,您只能使用 1 个内存有限的 12GB GPU,TPU 具有 64GB 高带宽 Mmeory.You 可以阅读此处 article。
因此,如果您想使用大型数据集,那么我建议您在训练前使用 tf.data.Dataset
进行准备。
如果你想使用 GPU,你可以使用任何 TF 版本。但对于 TPU,我建议使用 TF1.14。
来自 Colab 的文档,
In order to be able to offer computational resources for free, Colab needs to maintain the flexibility to adjust usage limits and hardware availability on the fly. Resources available in Colab vary over time to accommodate fluctuations in demand, as well as to accommodate overall growth and other factors.
简而言之,Colab 具有动态资源供应。所以他们可以改变硬件,它被自动征税太多。 Google给予,Google带走。