今天再做接口自动化练习的时候,碰到了这个报错, 初看一下,就是数据类型错误。 报错:TypeError: list indices must be integers or slices, not str 仔细分析一下自己的报错信息,发现,原来是list的索引错误了。 解决方法: 少了那个索引,导致把 ...
分类:
其他好文 时间:
2021-06-19 18:49:15
阅读次数:
0
Go入门(8)——循环迭代 使用range关键字来遍历list、array或者map。range可以理解为“for each index of”。对于array或者slices,将会返回整型的下标;对于map,将会返回键值对的键。range支持返回单个值或者两个值。如果返回单个值,则为下标;否则为下 ...
分类:
其他好文 时间:
2021-04-07 11:38:31
阅读次数:
0
一、数据集简介 二、MNIST数据集介绍 三、CIFAR 10/100数据集介绍 四、tf.data.Dataset.from_tensor_slices() 五、shuffle()随机打散 六、map()数据预处理 七、实战 import tensorflow as tf import tenso ...
分类:
其他好文 时间:
2021-04-05 12:08:27
阅读次数:
0
What is :: (double colon) in Python when subscripting sequences? 15 Extended Slices https://docs.python.org/release/2.3.5/whatsnew/section-slices.html ...
分类:
编程语言 时间:
2020-06-03 13:25:17
阅读次数:
71
A sequence of number is called arithmetic if it consists of at least three elements and if the difference between any two consecutive elements is the ...
分类:
其他好文 时间:
2020-05-21 10:33:22
阅读次数:
54
今天看了下fasthttp的源码,发现了一个有趣的地方,遂研究了一下。 详情请直接看原作者的一个slides https://docs.google.com/presentation/d/e/2PACX-1vTxoBN41dYFB8aV8c0SDET3B2htsAavXPAwR-CMyfT2LfAR ...
分类:
其他好文 时间:
2020-05-08 13:22:35
阅读次数:
62
原文链接:https://dave.cheney.net/2020/03/01/are large slices more expensive than smaller ones 程序员有一个迷信的倾向,特别是当一个程序员听说拷贝操作是“昂贵”的(耗时耗内存),而拷贝操作随处可见,特别是当它学习Go ...
分类:
其他好文 时间:
2020-04-15 01:01:11
阅读次数:
83
Problem : A sequence of number is called arithmetic if it consists of at least three elements and if the difference between any two consecutive elemen ...
分类:
其他好文 时间:
2020-04-12 13:58:48
阅读次数:
67
给你一个披萨,它由 3n 块不同大小的部分组成,现在你和你的朋友们需要按照如下规则来分披萨: 你挑选 任意 一块披萨。Alice 将会挑选你所选择的披萨逆时针方向的下一块披萨。Bob 将会挑选你所选择的披萨顺时针方向的下一块披萨。重复上述过程直到没有披萨剩下。每一块披萨的大小按顺时针方向由循环数组 ...
分类:
其他好文 时间:
2020-03-25 01:27:50
阅读次数:
140
本篇涉及的内容主要有小型常用的经典数据集的加载步骤,tensorflow提供了如下接口:keras.datasets、tf.data.Dataset.from_tensor_slices(shuffle、map、batch、repeat),涉及的数据集如下:boston housing、mnist/ ...
分类:
其他好文 时间:
2020-01-26 20:48:01
阅读次数:
120