This extremely rudimentary training framework was implemented in Python language during my graduate studies, in order to learn the principles of neural network training. It has not been completed.
- Mul\Add\Minus Tracing
- Dropout Tracing
- MaxPool Tracing
- MaxPool Tracing
- Relu Tracing
It has not been completed.
Minimalist demo for implementing parameter servers
Understand the training framework of deep learning neural networks through approximately 300 lines of C++ code
Solve equation 0.3*x + 0.4 = 0.8
Solve equation 0.3*x^2 + 0.4*x + 0.5 = 0.8
Linear fitting a*x + b = y
floatflow implemented with Rust language, in order to taste Rust
Used to understand the following questions:
1. How to automatically construct a computational graph for backward calculation of backpropagation algorithm?
2. How to automatically explore the parallelism of computational graphs?
3. How can computational graphs be viewed as directed acyclic graphs to schedule the execution of computational graphs?