System information
Describe the documentation issue
In the definition of ModelHelper one positional argument is missing data_format:
class ModelHelper(AbstractModelHelper):
"""Model helper for creating a ConvNet model for the Fashion-MNIST dataset."""
def __init__(self):
"""Constructor function."""
# class-independent initialization
super(ModelHelper, self).__init__()
whereas examples/convnet_at_fmnist.py script is correct:
class ModelHelper(AbstractModelHelper):
"""Model helper for creating a ConvNet model for the Fashion-MNIST dataset."""
def __init__(self, data_format='channels_last'):
"""Constructor function."""
# class-independent initialization
super(ModelHelper, self).__init__(data_format)
We welcome contributions by users. Will you be able to update submit a PR to fix the doc Issue?
Yes
System information
Describe the documentation issue
In the definition of ModelHelper one positional argument is missing data_format:
whereas examples/convnet_at_fmnist.py script is correct:
We welcome contributions by users. Will you be able to update submit a PR to fix the doc Issue?
Yes