Skip to content
This repository has been archived by the owner on Mar 3, 2024. It is now read-only.

Commit

Permalink
Fix keras modules
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberZHG committed Jun 19, 2021
1 parent 0edc5e3 commit 646f829
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion keras_drop_block/__init__.py
@@ -1,3 +1,3 @@
from .drop_block import DropBlock1D, DropBlock2D

__version__ = '0.5.0'
__version__ = '0.6.0'
8 changes: 2 additions & 6 deletions keras_drop_block/backend.py
Expand Up @@ -2,8 +2,8 @@
from distutils.util import strtobool

__all__ = [
'keras', 'utils', 'activations', 'applications', 'backend', 'datasets',
'layers', 'preprocessing', 'wrappers', 'callbacks', 'constraints', 'initializers',
'keras', 'utils', 'activations', 'backend',
'layers', 'callbacks', 'constraints', 'initializers',
'metrics', 'models', 'losses', 'optimizers', 'regularizers', 'TF_KERAS',
]

Expand All @@ -17,12 +17,8 @@

utils = keras.utils
activations = keras.activations
applications = keras.applications
backend = keras.backend
datasets = keras.datasets
layers = keras.layers
preprocessing = keras.preprocessing
wrappers = keras.wrappers
callbacks = keras.callbacks
constraints = keras.constraints
initializers = keras.initializers
Expand Down

0 comments on commit 646f829

Please sign in to comment.