ManimML icon indicating copy to clipboard operation
ManimML copied to clipboard

ManimML is a project focused on providing animations and visualizations of common machine learning concepts with the Manim Community Library.

Results 26 ManimML issues
Sort by recently updated
recently updated
newest added

Missing manim_ml.diffusion.random_walk, dependency of diffusion process example

I am just trying to run the first example in the Readme.md. I am running on an M1 Pro Mac. I did a conda install of Manim Community v0.17.3 and...

I want to add the following features: 1. [x] Max Pooling 2. [x] Padding 3. [x] Change the parameters for the Convolutional3d layers to be more ergonomic. 5. [ ]...

enhancement

Hi, when I was trying to run the maxpooling example in 0.0.24 it gave me an AttributeError: convolutional_2d_to_max_pooling_2d.py:170 in make_forward_pass_animation │ │ ❱ 170 │ │ │ │ axis=manim_ml.three_d_config.rotation_axis, │...

Add missing `.config.` for convolutional 2d to max pooling 2d animation Resolves #38

Hello I've got an issue with `Image to Convolutional 2D` . I took the cnn example and changed the Neural Network to: ``` nn = NeuralNetwork( [ ImageLayer(numpy_image, height=1.5), Convolutional2DLayer(1,...

specifiying -> specifying

Hi Alec, My first error fix to this project a few weeks ago got me into using manim to illustrate ML concepts, and I started working on adding [transpose convolution](https://towardsdatascience.com/what-is-transposed-convolutional-layer-40e5e6e31c11#:~:text=Transposed%20convolutions%20are%20standard%20convolutions,in%20a%20standard%20convolution%20operation.)...

Is it possible to change the color of the nodes and the background of the neural network?

Manim has the ability to represent animations as classes. These classes can take parameters and they can wrap around a passed Mobject (in our case this could be a neural...