12 2018 档案
摘要:声明:此习题集的题目来源是《CSAPP》英文第二版,与《CSAPP》中文第二版题号和主要题干是对应的,但是子问题的数据可能会有些许出入。 本习题集的目的在于对《CSAPP》2、3、5、6、8章的内容进行一次比较大致的复习。 限于个人水平,答案难免有错误之处,请各位在评论区指出错误,谢谢! 由于时间因
阅读全文
摘要:week1 一张图片,设像素为64\ 64, 颜色通道为红蓝绿三通道,则对应3个64\ 64实数矩阵 为了用向量表示这些矩阵,将这些矩阵的像素值展开为一个向量x作为算法的输入 从红色到绿色再到蓝色,依次按行一个个将元素读到向量x中,则x是一个$1\times64 64 3$的矩阵,也就是一个64\
阅读全文
摘要:之前的学习成果并不能解决复杂的非线性问题 Neural Networks Sigmoid(logistic) activation function : activation function is another term for $g(z) = \frac{1}{1+e^{ z}}$ activ
阅读全文
摘要:Classification It's not a good idea to use linear regression for classification problem. We can use logistic regression algorism , which is a classifi
阅读全文
摘要:对于multiple features 的问题(设有n个feature),hypothesis 应该改写成 $$ \mathit{h} _{\theta}(x) = \theta_{0} + \theta_{1}\cdot x_{1}+\theta_{2}\cdot x_{2}+\theta_{3}
阅读全文
摘要:Supervised Learning given labelled data to train and used to predict for regression problem and classification problem Unsupervised Learning derive st
阅读全文
摘要:PATTERN系列之五 I. Introduction To ease the expression of real time requirements, Dwyer, and then Konrad, studied a large collection of existing systems i
阅读全文
摘要:PATTERN 系列之四 1、Introduction The patterns presented in [Dwyer et al, 1999] can be regarded as qualitative patterns with respect to the quantitative pat
阅读全文
摘要:PATTERN系列的番外篇 对non Zeno的概念进行了明晰 accepting :if infinitely often the same state non Zeno :if time diverges,which means $\sum_{i\geq20}$$\delta_{i}$ $\ri
阅读全文
摘要:PATTERN 系列之三 翻译约定: temporal 时序的 摘要: 1、基于对 一些工业上的嵌入式系统应用的基于时间的需求, 用三种常用的时序逻辑创造了实时规范模式。 2、为了进一步加强对于一个规范的理解,给出了支持实时属性的结构化英语语法。 1、Introduction 常用的正式的规
阅读全文
摘要:PATTERN系列之二 由于是用中文写的总结,所以翻译有些约定(感想:英文文档还是英文做笔记吧) 主要内容: 在Dwyer的成果基础上添加了精确的时间关联,建立了时间关联的自动机。 论文中给出来的Figure就是observer automaton,是根据模式来观察实际运行情况中是否违反了模
阅读全文
摘要:PATTERN 系列之一 注:pattern 指的是需求文档中的模式,pattern 系列是我看的几篇关于pattern的论文的学习总结。这几篇论文归纳了数种pattern specification。 pattern系列讲述的内容也主要是跟软件的需求文档相关 definition premise:
阅读全文
摘要:全排列 //这篇题解是我第一篇题解,很久以前写的,就作为我blog的第一篇文章吧 思路 递归。 N个数的全排列数,观察3个数的全排列数: 1 2 3 1 3 2 2 1 3 2 3 1 3 1 2 3 2 1 可以看到第一个分别是1 2 3,而各自后面所跟着的,恰恰是剩下的数的全排列,以1为例,后面
阅读全文

浙公网安备 33010602011771号