Matrix

class verta.data_types.Matrix(value)

Representation of a matrix.

Parameters:

value (list of list of float) – Matrix values.

Examples

from verta.data_types import Matrix
data = Matrix([
    [1, 2, 3],
    [4, 5, 6],
    [7, 8, 9],
])
run.log_attribute("matrix", data)