Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/justjavac/writing-your-own-deep-neural-network
一步步开发自己的深度学习的神经网络 Deep Neural Network。
https://github.com/justjavac/writing-your-own-deep-neural-network
Last synced: 2 months ago
JSON representation
一步步开发自己的深度学习的神经网络 Deep Neural Network。
- Host: GitHub
- URL: https://github.com/justjavac/writing-your-own-deep-neural-network
- Owner: justjavac
- Created: 2023-04-14T07:40:45.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-19T01:34:37.000Z (almost 2 years ago)
- Last Synced: 2024-11-02T02:20:28.074Z (3 months ago)
- Language: TypeScript
- Homepage: https://dnn-playground.deno.dev
- Size: 183 KB
- Stars: 64
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- build-your-own-x-zh - **TypeScript**: 一步步开发自己的深度学习的神经网络
README
# writing-your-own-deep-neural-network
一步步开发自己的深度学习的神经网络 Deep Neural Network。**[./dnn](./dnn/) 目录源码有详细的注释**。
[Playground](https://dnn-playground.deno.dev)
## 项目结构
```
.
├── components # 组件
├── dnn # 神经网络代码
├── examples # 一些例子
├── hooks
├── islands
├── models # 已经训练好的模型
├── routes
└── test # 测试代码
```## 使用
Start the project:
```
deno task start
```This will watch the project directory and restart as necessary.