上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 328 下一页
摘要: 持续监控GPU使用情况命令: watch -n 10 nvidia-smi 参数解释: Fan:显示风扇转速,数值在0到100%之间,是计算机的期望转速,如果计算机不是通过风扇冷却或者风扇坏了,显示出来就是N/A; Temp:显卡内部的温度,单位是摄氏度; Perf:表征性能状态,从P0到P12,P 阅读全文
posted @ 2023-10-10 19:57 emanlee 阅读(89) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/weixin_44322234/article/details/110051592 https://www.it1352.com/2751337.html 每当你创建一个新的 notebook 时,都会创建一个检查点文件以及你的 notebook 文件;它 阅读全文
posted @ 2023-10-10 19:56 emanlee 阅读(593) 评论(0) 推荐(0) 编辑
摘要: 验证docker是否安装成功 (base) [root@ibiomed pigenhancer]# systemctl start docker您在 /var/spool/mail/root 中有邮件(base) [root@ibiomed pigenhancer]# docker run hell 阅读全文
posted @ 2023-10-09 22:35 emanlee 阅读(129) 评论(0) 推荐(0) 编辑
摘要: locate nvidia-docker 下载Tensorflow Docker映像 您可以一次使用多个变体。例如,以下命令会将 TensorFlow 版本映像下载到计算机上: docker pull tensorflow/tensorflow # latest stable release doc 阅读全文
posted @ 2023-10-09 22:35 emanlee 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 虚拟机:通过虚拟化技术模拟真实的硬件从而创建出来的一台拥有完整功能的逻辑计算机。 Docker容器:docker容器也是一种虚拟化技术,和传统虚拟化不一样的是docker只模拟一个程序最核心的运行环境,所以十分小巧,启动更快。 Docker虚拟化技术和传统虚拟化技术架构对比: 对比特点 虚拟机 完整 阅读全文
posted @ 2023-10-09 22:35 emanlee 阅读(18) 评论(0) 推荐(0) 编辑
摘要: File /home/software/anaconda3/envs/mydlenv/lib/python3.8/site-packages/keras/backend_config.py:33 28 # Default image data format, one of "channels_las 阅读全文
posted @ 2023-10-09 22:34 emanlee 阅读(682) 评论(0) 推荐(0) 编辑
摘要: np.expand_dims axis = 0时,[]加在最外面 axis = 1时,给每一行都加[] axis = 2时,给每一个元素都加[] x_train = np.expand_dims(X, axis=4) AxisError Traceback (most recent call las 阅读全文
posted @ 2023-10-09 22:34 emanlee 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 首先看看是不是用户自己的包,如果不是再安装网上的包。 ModuleNotFoundError Traceback (most recent call last) Cell In[1], line 45 42 import keras_metrics as km 43 from keras.model 阅读全文
posted @ 2023-10-09 22:31 emanlee 阅读(311) 评论(0) 推荐(0) 编辑
摘要: ValueError: ('`tf.compat.v1.keras` Optimizer (', <tensorflow.python.keras.optimizers.SGD >, ') is not supported when eager execution is enabled. Use a 阅读全文
posted @ 2023-10-09 22:31 emanlee 阅读(149) 评论(0) 推荐(0) 编辑
摘要: #第一步,import import tensorflow as tf #导入模块 from sklearn import datasets #从sklearn中导入数据集 import numpy as np #导入科学计算模块 #import keras from tensorflow impo 阅读全文
posted @ 2023-10-09 22:31 emanlee 阅读(75) 评论(0) 推荐(0) 编辑
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 328 下一页