Skip to content

Instantly share code, notes, and snippets.

View boblitex's full-sized avatar
🏠
Working from home

Jude Bobinihi boblitex

🏠
Working from home
  • South Africa
View GitHub Profile
@galeone
galeone / SingleLayerCAE.py
Last active September 23, 2019 08:00
Single Layer Convolutional Auto Encoder
# 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"""