Skip to content

Commit 615cc4c

Browse files
committed
fix: 调整deep中内容的公式
1 parent 97e83c9 commit 615cc4c

File tree

5 files changed

+27
-51
lines changed

5 files changed

+27
-51
lines changed

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ heroImage: https://static.numpy.org.cn/site/logo.png
99
actionText: 快速了解 →
1010
actionLink: /user/
1111
action2Text: 开始深度学习
12-
action2Link: https://megengine.org.cn/?from=numpy-cn
12+
action2Link: https://megengine.org.cn/?id=NumpyHome_learnnow_index_01
1313
footer: 署名-非商业性使用-相同方式共享 3.0 中国大陆 (CC BY-NC-SA 3.0 CN) | Copyright © 2019-present Zhi Bing
1414
---
1515

docs/deep/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ meta:
1010

1111
<p></p><p></p>
1212

13-
<a href="https://megengine.org.cn/?from=numpy-cn" target="_blank">
13+
<a href="https://megengine.org.cn/?id=NumpyDeep_pic_index_01" target="_blank">
1414
<img src="https://static.numpy.org.cn/inside/megengin_0001.png">
1515
</a>
1616

1717
<p></p><p></p>
1818

1919
欢迎来到 NumPy 与深度学习栏目!
2020

21-
本栏目会指导你如何使用 [NumPy](https://www.numpy.org.cn/)[Matplotlib](https://www.matplotlib.org.cn/)[Pandas](https://www.pypandas.cn/) 和 国产深度学习框架[MegEngine](https://megengine.org.cn/?from=numpy-cn) 进行深度学习的入门。
21+
本栏目会指导你如何使用 [NumPy](https://www.numpy.org.cn/)[Matplotlib](https://www.matplotlib.org.cn/)[Pandas](https://www.pypandas.cn/) 和 国产深度学习框架[MegEngine](https://megengine.org.cn/?id=NumpyDeep_pic_index_01) 进行深度学习的入门。
2222

2323
## 为深度学习新手准备的教程目录
2424

docs/deep/beginner/from_linear_regression_to_linear_classification.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,17 @@ meta:
55
- name: description
66
content: 回归和分类问题在机器学习中十分常见,我们接触过了线性回归,那么线性模型是否可用于分类任务呢?本次教程中,我们将:接触经典的 MNIST 数据集和对应的分类任务,对计算机视觉领域的图像编码有一个基础认知...
77
---
8-
98
# 从线性回归到线性分类
109

11-
本文章原文链接:[https://megengine.org.cn/doc/stable/zh/getting-started/beginner/from-linear-regression-to-linear-classification.html](https://megengine.org.cn/doc/stable/zh/getting-started/beginner/from-linear-regression-to-linear-classification.html?from=numpy-cn)
10+
本文章原文链接:[https://megengine.org.cn/doc/stable/zh/getting-started/beginner/from-linear-regression-to-linear-classification.html](https://megengine.org.cn/doc/stable/zh/getting-started/beginner/from-linear-regression-to-linear-classification.html?id=NumpyClassification_page3_studio_01)
1211

1312
回归和分类问题在机器学习中十分常见,我们接触过了线性回归,那么线性模型是否可用于分类任务呢?本次教程中,我们将:
1413

1514
- 接触经典的 MNIST 数据集和对应的分类任务,对计算机视觉领域的图像编码有一个基础认知;
1615
- 将线性回归经过“简单改造”,则可以用来解决分类问题——我们将接触到 Logistic 回归和 Softmax 回归;
1716
- 结合之前的学习,**实现一个最简单的线性分类器,并尝试用它来识别手写数字。**
1817

19-
请先运行下面的代码,检验你的环境中是否已经安装好 MegEngine([访问官网安装教程](https://megengine.org.cn/install?from=numpy-cn)):
18+
请先运行下面的代码,检验你的环境中是否已经安装好 MegEngine([访问官网安装教程](https://megengine.org.cn/install/?id=NumpyClassification_page3_install_01)):
2019

2120
```python
2221
import megengine
@@ -30,6 +29,8 @@ print(megengine.__version__)
3029
1.2.0
3130
```
3231

32+
或者你可以可前往 **MegStudio**,fork 公开项目,无需本地安装,直接线上体验([前往学习](https://studio.brainpp.com/project/4643/?id=NumpyClassification_page3_docstart_01)
33+
3334
接下来,我们将先了解一下这次要使用到的分类问题经典数据集:[MNIST 手写数字数据集](http://yann.lecun.com/exdb/mnist/)
3435

3536
## MNIST 手写数字数据集
@@ -623,4 +624,4 @@ Accuracy = 91.700
623624

624625
深度学习,简单开发。我们鼓励你在实践中不断思考,并启发自己去探索直觉性或理论性的解释。
625626

626-
本文章原文链接:[https://megengine.org.cn/doc/stable/zh/getting-started/beginner/from-linear-regression-to-linear-classification.html](https://megengine.org.cn/doc/stable/zh/getting-started/beginner/from-linear-regression-to-linear-classification.html?from=numpy-cn)
627+
本文章原文链接:[https://megengine.org.cn/doc/stable/zh/getting-started/beginner/from-linear-regression-to-linear-classification.html](https://megengine.org.cn/doc/stable/zh/getting-started/beginner/from-linear-regression-to-linear-classification.html?id=NumpyClassification_page3_studio_01)

0 commit comments

Comments
 (0)