import tensorflow as tf # 之前也说过,直接打印,只能得到状态,是得不到值的 c = tf.constant([[1,2],[2,3]],name='const_1',dtype=tf.int64) print(c) # Tensor("const_1:0", shape=(... ...
分类:
其他好文 时间:
2018-07-20 11:32:58
阅读次数:
162
import numpy as np import pandas as pd from pandas import Series,DataFrame s=Series([1,2,3],index=['a','b','c']) print(s) ''' a 1 b 2 c 3 dtype: int64... ...
分类:
编程语言 时间:
2018-07-17 20:17:26
阅读次数:
222
Matlab R2016a完全自学一本通 第2章 Matlab基础知识 2.1 数据类型 数值,逻辑,字符串,函数句柄,结构体,单元数组 2.1.1 数值类型 int8,uint8;int16,uint16;int32,uint32;int64,uint64 整数型 single 单精度 doubl ...
分类:
其他好文 时间:
2018-07-11 19:41:02
阅读次数:
136
[SDOI2016]排列计数 题目大意: 长度为$n(n\le10^6)$的$1\sim n$的排列$A$,求恰好有$m$个数满足$A_i=i$的方案数。 思路: 二项式系数+全错位排列简单推一下即可。 源代码: cpp include include typedef long long int64 ...
分类:
其他好文 时间:
2018-06-23 13:26:18
阅读次数:
179
这是我在做多元线性回归时遇到的错误:这个也是数据类型类的错误; 解决办法就是把数据的类型转化之后就行的了,于‘TypeError: Input 'b' of 'MatMul' Op has type int64 that does not match type float32 of argument ...
分类:
其他好文 时间:
2018-06-23 00:06:10
阅读次数:
1532
1 布尔型: var b bool = true。 2 数字类型: 整型 int 和浮点型 uint8, uint16, uint32, uint64, int8, int16, int32, int64 float32、float64 complex64, complex128 byte(类似Ui ...
分类:
其他好文 时间:
2018-06-15 23:29:32
阅读次数:
178
下面是 Go 支持的基本类型: bool Numeric Types int8, int16, int32, int64, int uint8,uint16,uin32,uint64, uint float32, float64 complex64, complex128 byte rune str ...
分类:
其他好文 时间:
2018-06-09 11:27:16
阅读次数:
213
题目连接:http://poj.org/problem?id=1426 题意:找到一个只由0和1组成的数能把n整除;当初没读懂题,一直放了很久,最大位有20位,用无符号 __int64 正好20位; 思路:简单dfs,一个判断找到未找到开关k;因为由0 1组成,故dfs的方向为乘10和乘10加1; ...
分类:
其他好文 时间:
2018-06-07 20:53:26
阅读次数:
796
整数集合是Redis用于保存整数值的集合抽象数据结构,它可以保存类型为int16_t 、int32_t或者int64_t的整数值,并且保证集合中不会出现重复元素。 一、整数集合数据结构定义 参数说明:contents:contents数组是整数集合的底层实现,整数集合的每个元素都是contents数 ...
分类:
其他好文 时间:
2018-06-03 19:25:57
阅读次数:
168
抄书。 1、注释:% 2、数据类型: ①数值:(u)int8,(u)int16,(u)int32,(u)int64,float,double,复数(虚部i),默认数据类型是double;char是6位,schar是8位,bitN指定任意N位带符号整数 ②逻辑类型:True和False,使用logic ...
分类:
其他好文 时间:
2018-05-23 20:32:39
阅读次数:
205