文章作者: 西山晴雪
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来源 西山晴雪的知识笔记!
相关推荐
2023-01-03
🔥 广义线性模型索引帖
待补充 #refplus, #refplus li{ padding:0; margin:0; list-style:none; }; document.querySelectorAll(".refplus-num").forEach((ref) => { let refid = ref.firstChild.href.replace(location.origin+location.pathname,''); let refel = document.querySelector(refid); let refnum = refel.dataset.num; let ref_content = refel.innerText.replace(`[${refnum}]`,''); tippy(ref, { content:...
2023-01-03
模型选择与平均索引帖
#refplus, #refplus li{ padding:0; margin:0; list-style:none; }; document.querySelectorAll(".refplus-num").forEach((ref) => { let refid = ref.firstChild.href.replace(location.origin+location.pathname,''); let refel = document.querySelector(refid); let refnum = refel.dataset.num; let ref_content = refel.innerText.replace(`[${refnum}]`,''); tippy(ref, { content: ref_content, ...
2023-03-17
深度学习理论的基本原则_第2章_神经网络
第 2 章 神经网络本章将转向深度学习的介绍性概述。 在 第 2.1 节 中,我们介绍了 神经元、激活、偏置、权重 和 层 等神经网络架构的基本组件,并定义了多层感知器(MLP),这是由基本组件迭代组成的一种简单模型。鉴于所有深度网络在概念上都是由许多结构相同的层迭代组成,因此可以将 MLP 视为一种原型网络架构,用于在整本书中说明深度学习的原理。这类神经网络模型足够丰富,可以捕捉深度学习理论的所有基本要素,同时又足够简单,可以保持本书的教学重点。尽管如此,我们还是会简要讨论其他网络架构的有效理论。 在 第 2.2 节 中,我们列出了一些在实践中经常使用的常见激活函数。 在 第 2.3 节 中,我们将讨论如何初始化 MLP。我们在这里进行了一个关键的概念转变,从 将权重和偏差视为随机变量,转向考虑 在神经活动和网络输出上引入的分布。当我们开始为具有一般激活函数的 MLP 开发有效理论时,我们在此处推导的表达式将为 第 4 章 中的分析提供一个自然的起点。 2.1 函数近似人工神经网络...
2023-01-03
贝叶斯模型比较与选择索引帖
待完善 #refplus, #refplus li{ padding:0; margin:0; list-style:none; }; document.querySelectorAll(".refplus-num").forEach((ref) => { let refid = ref.firstChild.href.replace(location.origin+location.pathname,''); let refel = document.querySelector(refid); let refnum = refel.dataset.num; let ref_content = refel.innerText.replace(`[${refnum}]`,''); tippy(ref, { content:...
2023-01-03
贝叶斯优化索引帖
待完善 #refplus, #refplus li{ padding:0; margin:0; list-style:none; }; document.querySelectorAll(".refplus-num").forEach((ref) => { let refid = ref.firstChild.href.replace(location.origin+location.pathname,''); let refel = document.querySelector(refid); let refnum = refel.dataset.num; let ref_content = refel.innerText.replace(`[${refnum}]`,''); tippy(ref, { content:...
2023-02-12
近似贝叶斯计算索引帖
注: 近似贝叶斯计算(Approximate Bayesian Comnpution, ABC)主要面向似然函数无法解析给出的场景,即似然函数是 intractable 的。在传统的空间信息技术领域中,不管是点参考数据还是面元数据,一般都会给出高斯、泊松等似然假设,因此目前的应用较少,此部分内容暂时作为了解范畴。 1 概论 《近似贝叶斯计算简明教程》:节选自 Martin《Python 中的贝叶斯建模和计算》一书的第八章。 2 序列数据 当面临序列问题时,会涉及传统有显式似然的 序贯蒙特卡洛方法(SMC) 向无显式似然的 序贯蒙特卡洛近似贝叶斯计算(SMC-ABC) 的转变。 3 #refplus, #refplus li{ padding:0; margin:0; list-style:none; }; document.querySelectorAll(".refplus-num").forEach((ref) => { ...