This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# import tensorflow | |
import tensorflow as tf | |
# import the utils file in the current folder | |
from . import utils | |
# from the Autoencoder file import the interface to implement | |
from .Autoencoder import Autoencoder | |
class SingleLayerCAE(Autoencoder): | |
""" Build a single layer CAE""" |