mirror of
https://github.com/WallabyLester/RBF-aPID-Controller.git
synced 2026-05-10 04:58:14 +08:00
Updating README.
This commit is contained in:
@@ -1,2 +1,22 @@
|
||||
# RBF-aPID-Controller
|
||||
RBF Neural Net Adaptive PID Controller
|
||||
|
||||
Implementations of a radial basis function (RBF) neural network adaptive PID controller. Uses
|
||||
neural net and error information from PID control to adapt the control signal. Provides one
|
||||
adaptation value, using error, integral, and derivative.
|
||||
|
||||
To adapt the PID gains themselves, network outputs must be made to 3 neurons. Example usage
|
||||
with simulated data can be found in `first_order_sim.py`
|
||||
|
||||
The method has been implemented in three ways:
|
||||
|
||||
1. TensorFlow : Using TF to build and train the RBF Model.
|
||||
|
||||

|
||||

|
||||
|
||||
2. Numpy: Using Numpy to build and train the RBF Model.
|
||||
|
||||

|
||||
|
||||
3. C++: Written in C++ (requiring `cmath`), for use on embedded systems.
|
||||
|
||||
Reference in New Issue
Block a user