- 博客(12)
- 收藏
- 关注
原创 解决OSError: [WinError 126] 找不到指定的模块。 Error loading “D:\Anaconda3\Lib\site-packages\torch\lib\fbgemm
import torch出问题 OSError: [WinError 126] 找不到指定的模块。 Error loading "D:\Anaconda3\Lib\site-packages\torch\lib\fbgemm.dll" or one of its dependencies.解决方法
2024-08-05 19:15:30 6437 20
原创 CNN框架(LeNet,AlexNet,VGGNet,inception,GoogLeNet,ResNet)
CNN框架(LeNet,AlexNet,VGGNet,inception,GoogLeNet,ResNet)
2024-07-07 15:09:25 486
原创 解决Exception: URL fetch failure on https:...cifar-10-python.tar.gz None unknown url type: https
解决Exception: URL fetch failure on https://www.cs.toronto.edu/~kriz/cifar-10-python.tar.gz : None -- unknown url type: https
2024-06-05 19:53:59 314
原创 anaconda+pycharm+tensorflow and keras虚拟环境配置+jupyter目录插件安装
anaconda+pycharm+tensorflow,keras,虚拟环境配置+jupyter目录安装插件
2024-06-04 17:55:38 884 1
原创 2021-01-30
编写一个程序,生成一个1010的随机矩阵并保存为csv文件(空格分隔行向量、换行分隔列向量)*import randomf=open("E:/矩阵.csv","w")list=[]for i in range(10): word="" for a in range(10): word = word + str(random.randrange(1,100)) + ", " list.append(word) for row in list: f
2021-01-30 23:48:43 246
原创 time库
time库时间戳:1970年1月1日早上八点到指定时间的间隔(单位是秒)import timeprint(time.time())1606652751.3068986结构化时间对象:st=time.localtime()print(type(st))#st本质上是元组,一共九个元素print(st)<class 'time.struct_time'>time.struct_time(tm_year=2020, tm_mon=11, tm_mday=29, tm_hour=2
2020-11-29 21:52:57 118 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人