# machinelearning **Repository Path**: oscsc/machinelearning ## Basic Information - **Project Name**: machinelearning - **Description**: 机器学习相关简单的使用案例 - **Primary Language**: Python - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-02-18 - **Last Updated**: 2025-03-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # MachineLearning ## DeepLearningFromScratch ### 单层神经网络结构 ```mermaid flowchart LR x1((x1)) --> n1((神经元1)) x1 --> n2((神经元2)) x1 --> n3((神经元3)) x2((x2)) --> n1 x2 --> n2 x2 --> n3 n1 --> y1((y1)) n2 --> y2((y2)) n3 --> y3((y3)) ``` 上图展示了一个具有两个输入(x1, x2)和三个输出(y1, y2, y3)的单层神经网络结构。每个神经元都接收所有输入信号,并产生一个输出信号。