摘要: qqq 阅读全文
posted @ 2021-08-14 16:42 符号2020 阅读(16) 评论(0) 推荐(0)
摘要: 参数详解 Fan: 风扇转速(0%--100%),N/A表示没有风扇 Temp: GPU温度(GPU温度过高会导致GPU频率下降) Perf: 性能状态,从P0(最大性能)到P12(最小性能) Pwr: GPU功耗 Persistence-M: 持续模式的状态(持续模式耗能大,但在新的GPU应用启动 阅读全文
posted @ 2021-08-13 15:27 符号2020 阅读(151) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/X_kh_2001/article/details/81146916 https://blog.csdn.net/wangyuxi__/article/details/84136227 Win10+1050Ti配置Tensorflow教程 https:// 阅读全文
posted @ 2021-08-11 20:56 符号2020 阅读(156) 评论(0) 推荐(0)
摘要: #测试显卡类别 !nvidia-smi Fri Aug 6 00:55:57 2021 + + | NVIDIA-SMI 470.42.01 Driver Version: 460.32.03 CUDA Version: 11.2 | | + + + | GPU Name Persistence-M 阅读全文
posted @ 2021-08-06 11:39 符号2020 阅读(257) 评论(0) 推荐(0)
摘要: 使用RNN预测文本 独热码:数量大,过于稀疏,映射之间是独立的,没有表现出关联性 Embedding:一种单词编码方法,以低维向量实现了编码,这种编码通过神经网络训练优化,能表达出单词的相关性。 把上面有W的那个带箭头的圈去掉,它就变成了最普通的全连接神经网络。x是一个向量,它表示输入层的值(这里面 阅读全文
posted @ 2021-08-02 11:35 符号2020 阅读(289) 评论(0) 推荐(0)
摘要: https://zhouchen.blog.csdn.net/article/details/105178437 YOLO目标检测算法 -YOLO_原理详述 - https://blog.csdn.net/qq_28123095/article/details/80052308 阅读全文
posted @ 2021-07-22 18:43 符号2020 阅读(49) 评论(0) 推荐(0)
摘要: import pandas as pd import requests from urllib.parse import urlencode from bs4 import BeautifulSoup import pandas as pd for i in range(2,20): # 爬取全部1 阅读全文
posted @ 2021-07-17 17:46 符号2020 阅读(87) 评论(0) 推荐(0)
摘要: # 1 引入库 # 2 数据预处理 # 3 建立模型 # 4 loss 设置 # 5 编译 # 6 结果展示与可视化 # 导入库 import tensorflow as tf from tensorflow.keras import datasets, layers, models import 阅读全文
posted @ 2021-07-15 09:55 符号2020 阅读(878) 评论(0) 推荐(0)
摘要: import tensorflow as tf from tensorflow.keras import datasets, layers, models import matplotlib.pyplot as plt from tensorflow.keras import Model from 阅读全文
posted @ 2021-07-15 09:52 符号2020 阅读(210) 评论(0) 推荐(1)
摘要: import tensorflow as tf import matplotlib.pyplot as plt import os,PIL # 设置随机种子尽可能使结果可以重现 import numpy as np np.random.seed(1) # 设置随机种子尽可能使结果可以重现 impor 阅读全文
posted @ 2021-07-15 09:45 符号2020 阅读(93) 评论(0) 推荐(0)