October 24, 2019
nginx 静态文件压缩
12345gzip on; # 打开gzip开关,默认为ongzip_min_length 1k; # 需要压缩的最小文件大小, 小于这个值的文件不压缩gzip_buffers 4 16k;gzip_types text/plain application/x ...
Read more
October 10, 2019
机器学习
逻辑回归模型线性回归模型可以用来做预测,它的输出值是实数域的连续值。如果我们想做一个分类任务,可以将线性回归模型的输出值映射到0-1之间,如果映射后的输出值大于0.5,我们认为该模型将这个样本分到类别A,如果输出值小于0.5,我们认为该模型将这个样本分到类别B,令这个映射函数为$g(x)$, ...
Read more
October 6, 2019
机器学习
线性回归模型用 $\mathbf{x}=(x_1,x_2,\ldots,x_n)^T$ 表示特征,预测值为这些特征的线性组合$$h(\mathbf{x}) = h_{\mathbf{w}}(\mathbf{x}) = w_0 + w_1 x_1 + w_2 x_2 + \ldots + w_ ...
Read more
March 5, 2019
Linux
Tips
汇总工作中遇到的有用的Linux命令
进程相关
已知PID获取进程的工作目录,可以通过以下三种方式获取 123$ pwdx <PID>$ lsof -p <PID> | grep cwd$ readlink -e /proc/<PID>/cwd
V ...
Read more
February 28, 2019
使用pipenv 安装第三包失败环境
os: mac os
python: 3.7
pip: 18.1
错误提示1234567lib/python3.7/site-packages/pipenv/utils.py", line 402, in resolve_deps re ...
Read more
February 26, 2019
1git clone
$f(x)=ax+b$
$e^{i \pi} + 1 = 0$
$${\displaystyle p_{A}(n)=\left(\prod _{a\in A}a^{-1}\right)\cdot {\frac {n^{k-1}}{(k-1)!}}+O(n^{k-2}). ...
Read more
December 30, 2018
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer ...
Read more