摘要:
编写一个Django应用 cd到指定文件夹,创建项目,生成mysite目录(整个项目的容器)(mysite可以换名字) manage.py:管理项目的命令行工具 mysite/目录:一个python包,用mysite.url的形式调库 __init__:包的标识 settings.py:配置文件,用 阅读全文
摘要:
Decision tree To deal with nonlinear classification Greedy Top-down Recursive Partitioning ask questions to divide the entire space into independent r 阅读全文
摘要:
deep learning computationally expensive data algorithm logistic regression e.g.1 find a cat in the image input : suppose image 64*64, input vector x: 阅读全文
摘要:
Machine Level Programming machine code <-> assembly code code -> low level, how to generate by GCC intel 64(x86) instruction set(hardware designers pr 阅读全文
摘要:
Learning Theory Assumption data in training set and test set are from the same distribution all samples are sampled independently Learning Algorithm i 阅读全文
摘要:
Data splits, Models and Cross Validation Bias and Variance Bias: wrong thought about how to fit the data Variance: changing original dataset cause a g 阅读全文
摘要:
Kernels review A decision boundary with the greatest possible geometric margin. functional margin/geometric margin maximize the margin as an optimizin 阅读全文
摘要:
Qt安装配置指南 下载安装Qt 4.12以上版本即可 建议下载sjtug的镜像,不要从官网下载 链接:https://mirrors.sjtug.sjtu.edu.cn/qt/archive/qt/5.14/5.14.2/qt-opensource-windows-x86-5.14.2.exe 下载 阅读全文
摘要:
问题:编译之后无法产生可执行文件 以上为编译输出 尝试阅读报错信息 rc:resource script,Windows的资源文件,为exe设置信息,包括文件说明,产品名称,产品版本等 尝试将构建套件切换至其他版本 发现默认的msvc2015前有叹号,进入后显示no debugger setup,而 阅读全文
摘要:
1. 模型概览 1.1 学科分属 对偶问题,拉格朗日乘数法与KKT条件是一种求解凸二次规划的最优化算法,属于最优化问题的重要求解理论和技巧,在机器学习领域的支持向量机(SVM)的理论推导中起着核心作用。 1.2 历史发展 拉格朗日乘数法是数学优化中,一种寻找变量受数个条件限制下多元函数局部极值的策略 阅读全文