- 博客(21)
- 收藏
- 关注

原创 统计学资料
[Springer] Basics of Modern Mathematical Statistics by Vladimir Spokoiny, Thorsten Dickhaus Exercises and Solutions 作者提供的免费pdf:http://premolab.ru/c_files/c49/Ff7OxE07fQ.pdf[Springer] The Elements o
2016-12-07 12:30:02
977
原创 scipy.optimize.minimize 的优化算法(2): Powell中的line search算法
Powell中的line search算法
2017-01-20 09:39:17
4184
原创 scipy.optimize.minimize 的优化算法(1): Nelder–Mead Simplex
Nelder–Mead Simplex Algorithm
2017-01-17 16:39:49
14583
原创 Python Regular Expressions 正则表达式
Python Regular Expressions 正则表达式参考 python library 3.6 以及 Google for Education 编写
2016-11-14 16:07:58
707
翻译 基本的gradient descent梯度下降法
基本的gradient descent梯度下降法: Batch gradient descent; Stochastic gradient descent; Mini-batch gradient descent
2016-10-06 13:45:03
1216
原创 算法2:最大子序列和问题
四种方法得到最大子序列和: maxsum_brutalforce: 穷举 O(n3)O(n^{3}) maxsum_brutalforce_m: 优化穷举 O(n2)O(n^{2}) maxsum_dc: divide and conquer O(nlog(n))O(nlog(n)) maxsum_l: 线性算法 O(n)O(n)#include <iostream>#include <c
2016-08-25 21:40:58
552
原创 算法1:字符串模式匹配KMP算法 源代码
#include <iostream>#include <cstring>using namespace std;void kmp_t(const char * s, int *t){ int len = strlen(s); if(len<=2){ t[0]=-1; t[1]=0; } else{ t[0]=-1; t[1]=0;
2016-08-24 21:03:46
909
原创 文献:利用自驱动分子马达并行计算子集和问题 Parallel computation with molecular-motor-propelled agents...(PNAS)
本文作者通过电子束光刻(Electron-beam lithography)来制作供自驱动蛋白运动的计算网络, 并借此来解决一个简单的{2,5,9}\{2,5,9\}子集和问题。该问题是:给定一个集合S={s1,s2,...,sN}S=\{s_1,s_2,...,s_N\},是否存在解∑wisi=T\sum w_is_i = T. 最直接的解法:穷举所有子集的复杂度2N2^N,而本文的方法约为N2N
2016-02-23 11:36:21
2630
原创 libsvm源代码注释+算法描述:svm_predict
(I will try my best to make this note clearer. We mainly discuss one_class case while others will be introduced in the future.)Starting from the usage of svm-predict: ./svm-predict svmguide1.t svmguid
2016-02-20 15:05:04
12077
原创 libsvm源代码注释+算法描述:svm_train
(I will try my best to make this note clearer.)We mainly focus on solve_c_svc in this note.Our goal: mindB\displaystyle \min_{\mathbf{d}_B} 12dTB∇2f(αk)dB+∇f(αk)TBdB\frac{1}{2}\mathbf{d}_{B}^{T}\nabla
2016-02-19 21:03:04
15923
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人