mirror of
https://github.com/helblazer811/ManimML.git
synced 2025-05-20 20:16:32 +08:00
Added ListGroup class for better management of a group of objects.
This commit is contained in:
@ -5,8 +5,8 @@ from manim_ml.neural_network.layers.parent_layers import VGroupNeuralNetworkLaye
|
||||
class EmbeddingLayer(VGroupNeuralNetworkLayer):
|
||||
"""NeuralNetwork embedding object that can show probability distributions"""
|
||||
|
||||
def __init__(self, point_radius=0.02):
|
||||
super(EmbeddingLayer, self).__init__()
|
||||
def __init__(self, point_radius=0.02, **kwargs):
|
||||
super(EmbeddingLayer, self).__init__(**kwargs)
|
||||
self.point_radius = point_radius
|
||||
self.axes = Axes(
|
||||
tips=False,
|
||||
|
Reference in New Issue
Block a user