1.python与json数据结构的对应情况 2.dumps:卸载,将json对象卸载为str *sort_keys:排序 *indent:格式化 *ensure_ascii参数,想要输出中文时,要设置ensure_ascii=False *skipkeys参数,在encoding过程中,dict对 ...
分类:
编程语言 时间:
2018-09-11 18:05:03
阅读次数:
299
LightGBM 可以使用一个 pairs 的 list 或一个字典来设置参数: 1.Booster提升器的参数: 2.可以制定多eval指标: 模型的训练:需要一个params参数和训练数据集 训练完成后存储模型: 模型使用如下方式来加载: 预测:已将训练或者加载好的模型都可以对数据集进行预测 在 ...
分类:
其他好文 时间:
2018-09-10 15:35:11
阅读次数:
2732
Lua中的类型与值 Lua中的表达式 Lua中的语句 Lua中的函数 Lua中的闭包 Lua 中 pairs 和 ipairs 的区别 Lua中的迭代器与泛型for Lua中的协同程序 Lua中__index和__newindex实践 Lua中的元表与元方法 Lua中的环境概念 Lua中的模块与包 ...
分类:
其他好文 时间:
2018-09-05 19:50:17
阅读次数:
121
UVA12716 GCD XOR Description Given an integer N, find how many pairs (A, B) are there such that: gcd(A, B) = A xor B where 1 ≤ B ≤ A ≤ N. Here gcd(A, ...
分类:
其他好文 时间:
2018-09-04 20:49:53
阅读次数:
167
Write a program that takes as input a rooted tree and a list of pairs of vertices. For each pair (u,v) the program determines the closest common ances ...
分类:
其他好文 时间:
2018-09-03 13:41:00
阅读次数:
154
Reducer receives (key, values) pairs and aggregate values to a desired format, then write produced (key, value) pairs back into HDFS. Reducer Class Pr ...
分类:
其他好文 时间:
2018-09-01 18:06:22
阅读次数:
180
题目如下: 解题思路:对于任意一个word,要找出在wordlist中是否存在与之能组成回文的其他words,有两种思路。一是遍历wordlist;二是对word本身进行分析,找出能组成回文的words,并判断是否存在于wordlist中。显然,第二种思路比较的次数要少很多。怎么找出能组成回文的wo ...
分类:
其他好文 时间:
2018-09-01 12:33:01
阅读次数:
141
【600】 Non-negative Integers without Consecutive Ones 【629】 K Inverse Pairs Array 【638】 Shopping Offers 【639】 Decode Ways II 【646】 Maximum Length of Pa ...
分类:
其他好文 时间:
2018-08-31 21:14:32
阅读次数:
163
网络性能测量的五项指标 可用性(availability) 响应时间(response time) 网络利用率(network utilization) 网络吞吐量(network throughput) 网络带宽容量(network bandwidth capacity) 1. 可用性 测试网络性 ...
分类:
Web程序 时间:
2018-08-31 14:01:27
阅读次数:
5242
Swap Nodes in Pairs https://www.youtube.com/watch?v=f45_eF1gmn8&t=83s Given a linked list, swap every two adjacent nodes and return its head. Example:... ...
分类:
其他好文 时间:
2018-08-28 22:05:17
阅读次数:
163