摘要:
nvcc -V 的cuda,显卡驱动,TensorFlow 2.2, py3.8; 好像和cuDNN无关? 可以用接近版本,比如10.1和10.0可以兼容。 tensorflow-gpu无法调用GPU的解决办法 # nvcc -Vnvcc: NVIDIA (R) Cuda compiler driv 阅读全文
摘要:
conda install cudatoolkit=10.0 conda install cudnn=7.3.1 pip3 install tensorflow-gpu==1.15 conda create -n tensorflow1.15 python=3.7 conda activate te 阅读全文
摘要:
REF https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.boxplot.html https://matplotlib.org/stable/gallery/statistics/boxplot_demo.html https: 阅读全文
摘要:
ndarray的合并 定义要使用的数据源 a = np.array([1, 1, 1]) b = np.array([2, 2, 2]) print('a', a) print('b', b) <class 'numpy.ndarray'> a [1 1 1] b [2 2 2] numpy.vst 阅读全文
摘要:
time库是python中处理时间的标准库。 计算机时间的表达:time()、ctime()、gmtime(); 提供获取系统时间并格式化输出功能: strftime()、strptime() 提供系统级精确计时功能可用于程序性能分析: sleep()、perf_counter() 时间获取 tim 阅读全文