wandb.data_types.Graph
Wandb class for graphs
Graph(
format="keras"
)
This class is typically used for saving and diplaying neural net models. It represents the graph as an array of nodes and edges. The nodes can have labels that can be visualized by wandb.
Examples:
Import a keras model:
Graph.from_keras(keras_model)
Methods
add_edge
add_edge
add_edge(
from_node, to_node
)
add_node
add_node
add_node(
node=None, **node_kwargs
)
from_keras
from_keras
@classmethod
from_keras(
model
)
pprint
pprint
pprint()
__getitem__
__getitem__
__getitem__(
nid
)
Last updated
Was this helpful?