Update Readme.md

This commit is contained in:
Alec Helbling
2023-08-30 23:52:06 -04:00
committed by GitHub
parent 5df233ea90
commit 4fc0251cfc

View File

@@ -352,42 +352,6 @@ $ manim -pql example.py
<img src="assets/readme/dropout.gif">
#### Seed the Dropouts:
```py
self.play(
make_neural_network_dropout_animation(
nn, dropout_rate=0.25, do_forward_pass=True, seed=4
)
)
```
<img src="assets/readme/dropout_seed_4.gif">
#### Seed the Dropouts with First layer static:
```py
self.play(
make_neural_network_dropout_animation(
nn, dropout_rate=0.25, do_forward_pass=True, seed=4, first_layer_stable=True
)
)
```
<img src="assets/readme/dropout_seed_4_first.gif">
#### Seed the Dropouts with First and Last layers static:
```py
self.play(
make_neural_network_dropout_animation(
nn, dropout_rate=0.25, do_forward_pass=True, seed=4, first_layer_stable=True, last_layer_stable=True
)
)
```
<img src="assets/readme/dropout_seed_4_first_last.gif">
## Citation
If you found ManimML useful please cite it below!