You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: