如何在Google Colab中获得分配的GPU规格

时间:2020-02-19 12:03:49

标签: python tensorflow gpu google-colaboratory

我正在使用Google Colab进行深度学习,并且我知道他们会为用户随机分配GPU。我希望能够查看在任何给定会话中分配给我的GPU。是否可以在Google Colab笔记本中执行此操作?

请注意,如果有帮助,我正在使用Tensorflow。

3 个答案:

答案 0 :(得分:10)

由于您可以在colab中运行bash命令,因此只需运行model = SARIMAX(df_diff, order=(0,0,1), seasonal_order = (0,1,1,12)) results = model.fit() forecast = results.get_prediction(start=-10) mean_forecast = forecast.predicted_mean enter image description here

答案 1 :(得分:2)

这使阅读更容易

!nvidia-smi -L

答案 2 :(得分:1)

在协作中运行这两个命令

CUDA:让我们检查一下Nvidia CUDA驱动程序是否已经预安装以及它是哪个版本。
!/usr/local/cuda/bin/nvcc --version

!nvidia-smi