以房价预测为例,使用numpy实现深度学习网络--线性回归代码。
数据链接:https://pan.baidu.com/s/1pY5gc3g8p-IK3AutjSUUMA
提取码:l3oo
分类:
其他好文 时间:
2020-04-06 23:54:31
阅读次数:
138
python基础 常见数据结构 线性结构:list/tuple,array/collections.namedtuple 链式结构: ,collections.deque(双端队列)- 字典结构:dict,collections.Counter/OrderedDict 集合结构:set/frozen ...
分类:
其他好文 时间:
2020-04-06 20:57:12
阅读次数:
68
统计list中各元素出现的次数,下面的方法也适用于统计字符串中各字符出现的次数 1、用字典的形式来处理 a = "abhcjdjje" a_dict = {}for i in a: a_dict[i] = a.count(i)print(a_dict) 2、用count函数直接打印出来 L = [2 ...
分类:
编程语言 时间:
2020-04-05 20:04:47
阅读次数:
68
索引 长度 for循环 user_info = {"name":3,"age":11,"country":"china"} print(user_info["country"]) print(len(user_info)) for k in user_info: print(k) china 3 n ...
分类:
其他好文 时间:
2020-04-05 15:44:21
阅读次数:
60
1 class Solution: 2 def calSum(self,x): 3 s = str(x) 4 sums = 0 5 for j in range(len(s)): 6 sums += int(s[j]) 7 return sums 8 9 def countLargestGroup( ...
分类:
其他好文 时间:
2020-04-05 09:52:40
阅读次数:
50
1 class Solution: 2 def canConstruct(self, s: str, k: int) -> bool: 3 #奇数个字符出现的数量 <= k 4 #所有的字符的类别数量 >= k 5 dic = dict() 6 n = len(s) 7 for i in range ...
分类:
其他好文 时间:
2020-04-05 09:44:32
阅读次数:
73
张量 tensor Tensor是一个类, 包含了属性和常用函数, 一个Tensor对象主要包含一下三个部分, 如下所示: Tensor("placeholder:0", shape=(2, 3), dtype=float32) 第一部分是Tensor Name, 比如:‘Constant'、 ’p ...
分类:
其他好文 时间:
2020-04-04 20:58:04
阅读次数:
82
给定一组整数,还有一个目标数,在给定这组整数中找到两个数字,使其和为目标数,如找到,解是唯一的。找不到则显示 "no answer"。输出的下标按从小到大排序。用一重循环加字典实现。 输入格式: 在一行中给出这组数。 在下一行输入目标数 输出格式: 在一行中输出这两个数的下标,用一个空格分开。 输入 ...
分类:
其他好文 时间:
2020-04-04 11:25:22
阅读次数:
171
在做项目的时候,遇到这样的数据: "trends": [ { "name": "Rick Gates", "promoted_content": null, "query": "%22Rick+Gates%22", "tweet_volume": 135732, "url": "http://twi ...
分类:
编程语言 时间:
2020-04-03 13:47:18
阅读次数:
87