mirror of
https://github.com/WallabyLester/RBF-aPID-Controller.git
synced 2026-05-20 02:54:27 +08:00
9 lines
177 B
Python
9 lines
177 B
Python
import unittest
|
|
import numpy as np
|
|
import tensorflow as tf
|
|
from aPID_tf import AdaptivePIDTf
|
|
from RBF_tf import RBFAdaptiveModel
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|