机器学习
# 概述 # 机器学习范式 监督学习(归纳学习) 给定训练数据 training data 和期望的输出(标签)desired outputs (with labels) 半监督学习 给定训练数据 training data 和部分期望的输出 some labels 无监督学习 仅给定训练数据 training data without labels 强化学习 Reinforce Learning (RL) 从序列决策中获取奖励 observations and periodic rewards as the agent takes sequential actions; #...
more...acme.sh插件
# 证书相关文件格式 证书 (Certificate) - .cer 、 .crt 私钥 (Private Key) - .key 证书签名请求 (Certificate signing request) - .csr 证书吊销列表 (Certificate Revocation List) - .crl 以上除了 .crl 均可以使用这两种编码方式,从而有这样的后缀: base64 编码 - .pem 二进制编码 (少见) - .der 为了给我们的网页应用使用 https 协议,我们需要得到有效的第三方认证的证书以及对应的私钥。 CA,certificate...
more...调度
# 调度相关概念 为什么需要调度? 释放被阻塞、挂起的进程占用的 CPU 资源 实现 I/O 操作和 CPU 并行执行( I/O 密集型和 CPU 密集型) 调度的层次、类型 处理器 / CPU 调度⭐️(进程调度的主要内容) 作业调度 /long-term scheduling / 长程调度 / 高级调度 The decision to add to the pool of processes to be executed 内存调度 /medium-term scheduling / 中程调度 / 中级调度 The decision to add to the number of...
more...离散时间信号的傅里叶变换
# 公式表 # 基本傅里叶变换对 # 性质 # 非周期信号 # FT 公式推导 定义 x~[n]\widetilde{x}[n]x[n] 为 x[n]x[n]x[n] 的周期延拓,以 NNN 为周期,x[n]x[n]x[n] 是 x~[n]\widetilde{x}[n]x[n] 的一个周期。 当 T→∞T\to\infinT→∞ 时,在 (−∞,+∞)(-\infin,+\infin)(−∞,+∞) 内 x~[n]=x[n]\widetilde{x}[n]=x[n]x[n]=x[n] ;在该极限情况下有...
more...