本节我们来利用卷积神经网络(CNN)来实现kaggle平台上的 CIFAR-10 - Object Recognition In Images 图像分类问题。 相关数据下载地址为:https://www.kaggle.com/c/cifar-10/data 新建 python3 文件 cifar_m ...
分类:
其他好文 时间:
2020-05-29 23:40:56
阅读次数:
127
Django组件之分页器 分页器的使用 book_list=Book.objects.all() paginator = Paginator(book_list, 10) print("count:",paginator.count) #数据总数 print("num_pages",paginato ...
分类:
其他好文 时间:
2020-05-29 23:11:52
阅读次数:
72
数据如下: 选择坐标轴,将坐标轴交叉中的自动改为坐标轴值,手动输入合适值。 利用label重新设置数据。 最终效果如下: ...
分类:
其他好文 时间:
2020-05-28 00:55:51
阅读次数:
73
1.读取 def read_dataset(): file_path = r'C:\Users\D。\SMSSpamCollection' sms = open(file_path, encoding='utf-8') sms_data = [] sms_label = [] csv_reader ...
分类:
其他好文 时间:
2020-05-27 22:04:37
阅读次数:
97
from tkinter import * master = Tk() master.geometry("700x600") # Label 标签组件 l_show = Label(master,text="小怪兽") l_show.pack(side="left") # Entry 单行文本组件 ...
分类:
其他好文 时间:
2020-05-27 20:56:27
阅读次数:
75
效果图: 代码: input{ display: inline-block; vertical-align: middle; } label{ vertical-align: middle; } ...
分类:
其他好文 时间:
2020-05-27 15:16:50
阅读次数:
221
1.读取 2.数据预处理 3.数据划分—训练集和测试集数据划分 from sklearn.model_selection import train_test_split x_train,x_test, y_train, y_test = train_test_split(data, target, ...
分类:
其他好文 时间:
2020-05-27 09:25:14
阅读次数:
77
通过一个内嵌类 "class Meta" 给你的 model 定义元数据, 类似下面这样: class Foo(models.Model): bar = models.CharField(maxlength=30) class Meta: # ... Model 元数据就是 "不是一个字段的任何数据 ...
分类:
Web程序 时间:
2020-05-26 16:49:41
阅读次数:
83
[TOC] Paper Reading @ 23/50 original : https://arxiv.org/abs/1812.06203 Formatted Citation: Abstract Temporal Aggregation Network decompose convolutio ...
分类:
Web程序 时间:
2020-05-25 12:04:45
阅读次数:
81
<el-table-column prop="dealTotal" align="center" label="交易总量" :render-header="renderHeaderMethods" /> renderHeaderMethods(h, { column }) { return h('d ...
分类:
其他好文 时间:
2020-05-24 21:08:00
阅读次数:
228