Python中的两大法宝函数

一、在测试CUDA的可用性的的时候为什么返回false

  • 查看自己GPU的型号

在控制面板中的设备管理器查看自己的显卡,集显。

二、使用离线方法安装工具包

前提是要将需要安装的工具包放到

conda install --use-local [name]


三、引入Python中包的概念

3.1 package

理解为一个工具箱
Python中的两大法宝函数_第1张图片

  • 1 工具箱
  • 2 各种工具
  • 3 各种工具

3.2 探索工具箱:

  • dir工具,看到东西有什么东西
  • help工具:看到里面有什么东西,进行探索

说明书

Python中的两大法宝函数_第2张图片

注:如果你显示横向是因为没有安装ipython的结果,你使用的是cpython

help(torch.cuda.is_available)
Help on function is_available in module torch.cuda:
is_available()
    Returns a bool indicating if CUDA is currently available.
help(torch.cuda.is_available())
Help on bool object:
class bool(int)
 |  bool(x) -> bool
 |  
 |  Returns True when the argument x is true, False otherwise.
 |  The builtins True and False are the only two instances of the class bool.
 |  The class bool is a subclass of the class int, and cannot be subclassed.
 |  
 |  Method resolution order:

四、两大函数

  • dir()函数
  • help()函数
可以在pytorch中查看各个工具包的东西和使用说明书```






你可能感兴趣的:(深度学习,人工智能,卷积神经网络,CNN,深度学习,计算机视觉)