Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix:9,10修改 #65

Merged
merged 1 commit into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions 人工智能基础与应用/10.循环神经网络.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ $$

![循环神经网络原理](./image/循环神经网络原理.png)

循环神经网络的神经元接受其他神经元和自身两部分信息,进而形成具有环路的网络结构

# 标准循环神经网络 (RNN) 模型

## 循环神经网络介绍
Expand Down Expand Up @@ -90,11 +92,11 @@ $$

$$
h_t = f_1(h_{t-1}, x_t), \quad \forall t \in [1, T]
$$
$$

$$
h_{T+t} = f_2(h_{T+t-1}, \hat{y}_{t-1}), \quad \forall t \in [1, M]
$$
$$

$$
\hat{y}_t = g(h_{T+t}), \quad \forall t \in [1, M]
Expand Down
2 changes: 1 addition & 1 deletion 人工智能基础与应用/9.卷积神经网络.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ $$
### 全连接层

- 全连接层目的:在于分类/回归等
- 前面若干层 (卷积、激活、池化等) 目的:实现从**数据变换**中**提取特征***,作为全连接层的**输入**为全连接层服务
- 前面若干层 (卷积、激活、池化等) 目的:实现从**数据变换**中**提取特征**,作为全连接层的**输入**为全连接层服务

## 卷积神经网络的应用

Expand Down
Loading