Deep Learning, Ian Goodfellow, Yoshua Bengio, and Aaron Courville, 2016 (MIT Press) - 为神经网络层,包括全连接层、权重、偏置和激活函数,提供了全面的理论和数学基础。
Layers and Models, The Flux.jl Contributors, 2025 (Flux.jl Documentation) - Flux.jl的官方文档,详细介绍了Dense层的构造器、参数和行为,是其实现方式的权威指南。
Understanding the difficulty of training deep feedforward neural networks, Xavier Glorot, Yoshua Bengio, 2010Proceedings of the Thirteenth International Conference on Artificial Intelligence and Statistics (AISTATS 2010), Vol. 9 (JMLR.org) - 这篇开创性论文提出了Glorot(Xavier)神经网络权重初始化策略,Flux.jl中Dense层的默认设置即采用此策略。
Neural Networks: The Basics, Andrej Karpathy, Justin Johnson, and Serena Yeung, 2023 - 对神经网络的基本概念进行了清晰易懂的介绍,包括全连接层的结构和运作方式、权重和偏置。