PACKET_SNIFFER Capture data flowing through an interface. Filter this data. Display Interesting information such as: Login info(username&password). Vi ...
分类:
编程语言 时间:
2019-08-21 00:10:31
阅读次数:
117
原文链接: https://blog.csdn.net/qq_38148394/article/details/87921373 此功能实现使用到PHPExcel类库,PHPExcel是一个PHP类库,用来帮助我们简单、高效实现从Excel读取Excel的数据和导出数据到Excel。也是我们日常开发 ...
分类:
Web程序 时间:
2019-08-20 19:04:33
阅读次数:
204
今天在为新的业务线搭架数据库后,在启动的时候报错 root@qsbilldatahis-db01:/usr/local/mysql/bin# ./mysql ERROR 2002 (HY000): Can't connect to local MySQL server through socket ...
分类:
数据库 时间:
2019-08-19 19:24:05
阅读次数:
101
RNN(Recurrent Neural Networks)循环神经网络 广泛应用于自然语言处理(NLP,Natural Language Processing) Back Propagation Through Time Vanishing gradient problem LSTM, 长期依赖, ...
分类:
其他好文 时间:
2019-08-16 20:49:00
阅读次数:
95
Understanding LSTM Networks 原作者:Christopher Olah 原址:http://colah.github.io/posts/2015 08 Understanding LSTMs/ Step by Step LSTM Walk Through LSTM的第一步是 ...
分类:
Web程序 时间:
2019-08-15 19:21:45
阅读次数:
157
题面 http://uoj.ac/problem/389 题解 当我刚学欧拉回路的时候,刚刚把网络流学完,就知道欧拉回路的题可以用网络流来做,这道题就是啦。 可以说欧拉回路是一类特殊网络流的调整问题(和上下界网络流)差不多。 所以我曾经开过脑洞,有上下界最小流可以用费用流做,但是由于太慢被自己$D$ ...
分类:
其他好文 时间:
2019-08-14 09:39:04
阅读次数:
120
There is a ball in a maze with empty spaces and walls. The ball can go through empty spaces by rolling up, down, left or right, but it won't stop roll ...
分类:
其他好文 时间:
2019-08-13 13:33:18
阅读次数:
73
AutoTikv是一个用于对TiKV数据库进行自动调优的工具。它的设计灵感来自于SIGMOD 2017的一篇paper:Automatic Database Management System Tuning Through Large-scale Machine Learning,使用机器学习模型对 ...
分类:
其他好文 时间:
2019-08-11 11:22:11
阅读次数:
135
看的头秃,生活艰难 由条件概率可得,P(wi | x) = P(wi, x) / P(x) 套贝叶斯公式得,P(wi | x) = P(x | wi) * P(wi) / P(x) 通过比较P(wi | x)的大小决定分为哪一类中,由于分母相同,所以转化为比较P(x | wi) * P(wi) 的大 ...
分类:
编程语言 时间:
2019-08-10 19:45:54
阅读次数:
100
First lets recall the concept for BFS and DFS. I will use below Binary Tree as an example. Before that, lets go through some of the concepts of Trees ...
分类:
其他好文 时间:
2019-08-09 17:37:01
阅读次数:
94