0%

这题是Leetcode第21题,难度为easy。

Question

Merge two sorted linked lists and return it as a new list. The new list should be made by splicing together the nodes of the first two lists.

阅读全文 »

Gurobi is one of the most powerful mathematical optimization solver. Here I introduce an planning optimization model first, and try to model it with python and gurobi python package.

阅读全文 »

这篇文章主要是记录《统计学习基础》第二章感知机的学习过程。

Definition

感知机(Perceptron)是二分类的线性分类模型(Linear classification Model),感知机学习是训练出一个可以将输入数据进行线性分离的超平面:

where $x\in \mathbf{R}^{n}, w\in \mathbf{R}^{n}$

阅读全文 »

Model introducation

Logistic Regression是一个分类模型,而不是回归模型. Logistic Regression回归的本质是:假设数据服从某个分布,然后用极大似然估计去做参数的估计.

阅读全文 »

编写草稿

1
$ hexo new draft 标题

生成md文件在source/_draft目录下,放在此文件夹下的草稿使用hexo g命令生成静态文件时,不会被生成。

阅读全文 »

自从读PhD以来,就想搭建一个属于自己的博客,记录一下博士生活。然而由于自己水平有限,简单研究过两下就放弃了。这次克服拖延症,在网上google一推教程,选定Hexo + github pages来搭建自己的博客。希望自己可以多多记录,好好学习,天天向上!在这里,简单记录一下博客的建立过程。

阅读全文 »