Added basic example neural network

This commit is contained in:
Alec Helbling
2022-04-26 12:15:00 -04:00
parent 7175728568
commit 95a36eb234

View File

@ -13,6 +13,7 @@ class NeuralNetworkScene(Scene):
FeedForwardLayer(3) FeedForwardLayer(3)
] ]
nn = NeuralNetwork(layers) nn = NeuralNetwork(layers)
nn.scale(2)
nn.move_to(ORIGIN) nn.move_to(ORIGIN)
# Make Animation # Make Animation
self.add(nn) self.add(nn)