# deep-learning-from-scratch
**Repository Path**: traveler_zhao/deep-learning-from-scratch
## Basic Information
- **Project Name**: deep-learning-from-scratch
- **Description**: Source code and pdf from the book 《深度学习入门-基于Python的理论与实现》,包含源代码和高清PDF(带书签)。
- **Primary Language**: Unknown
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 2
- **Created**: 2020-08-03
- **Last Updated**: 2024-10-21
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# deep-learning-from-scratch
《深度学习入门-基于Python的理论与实现》,包含源代码和高清PDF(带书签)。
相信您寻找pdf、源代码已经很久了,是的,这里免费提供大家一起学习进步,如果帮到您希望您可以**Star**
本项目将持续更新自己的学习笔记,欢迎一起交流。
## 文件结构文件夹
名称 | 描述
---- | -----
ch01 | 第1章使用的源代码
ch02 | 第2章使用的源代码
... | ...
ch08 | 第8章使用的源代码
common | 共同使用的源代码
dataset | 数据集用的源代码
learningnotes | 学习笔记
## 必要条件
执行源代码需要安装以下环境:
* Python 3.x
* NumPy
* Matplotlib
## 执行方法
前进到各章节的文件夹,执行Python命令。
```
$ cd ch01
$ python man.py
$ cd ../ch05
$ python train_nueralnet.py
```