|
|
|
@ -45,6 +45,9 @@ class ScalarSummary(Primitive):
|
|
|
|
|
def __init__(self):
|
|
|
|
|
"""init"""
|
|
|
|
|
|
|
|
|
|
def __call__(self, *args, **kwargs):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ImageSummary(Primitive):
|
|
|
|
|
"""
|
|
|
|
@ -70,6 +73,9 @@ class ImageSummary(Primitive):
|
|
|
|
|
def __init__(self):
|
|
|
|
|
"""init"""
|
|
|
|
|
|
|
|
|
|
def __call__(self, *args, **kwargs):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TensorSummary(Primitive):
|
|
|
|
|
"""
|
|
|
|
@ -97,6 +103,9 @@ class TensorSummary(Primitive):
|
|
|
|
|
def __init__(self):
|
|
|
|
|
"""init"""
|
|
|
|
|
|
|
|
|
|
def __call__(self, *args, **kwargs):
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class HistogramSummary(Primitive):
|
|
|
|
|
"""
|
|
|
|
|