2016-05-15:资料+SVM+基础

2016-05-16  本文已影响73人  袁一帆

1. 算法(第四版)github-python

https://github.com/ChangeMyUsername/algorithms-sedgewick-python

2. github:scipy_sklearn_tutorial

https://github.com/amueller/scipy_2015_sklearn_tutorial

3. Google 开源自然语言解析器

https://github.com/tensorflow/models/tree/master/syntaxnet

4. LSTM模型学习

http://blog.csdn.net/shincling/article/details/49362161
http://blog.csdn.net/a635661820/article/details/45390671

5. 自然语言处理的科普文

http://python.jobbole.com/85094/


函数距离与几何距离

再也不想被这个坑了。。。

函数间隔啊亲~

SVM

TodoList - sort

  1. 选择排序select:N^2/2次比较,N次交换
  1. 插入排序insert:最坏N^2/2次比较和交换,最好N-1次比较和0次交换
  2. 希尔排序shell:
  3. 归并排序merge:NlogN时间,N空间
  4. 快速排序quick:平均NlogN,最差每次partition都有一个是空,则为N^2
  5. 堆:k的父节点k/2,k的子节点2k和2k+1,高度math.floor(lgk)

TodoList - find

  1. 二分查找
  1. 二叉查找树
上一篇下一篇

猜你喜欢

热点阅读