mirror of
https://github.com/helblazer811/ManimML.git
synced 2026-03-13 08:41:18 +08:00
Update Readme.md
This commit is contained in:
36
Readme.md
36
Readme.md
@@ -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!
|
||||
|
||||
Reference in New Issue
Block a user