Skip to content

Instantly share code, notes, and snippets.

View hkabbech's full-sized avatar

Hélène Kabbech hkabbech

  • DataHub Maastricht
  • 18:22 (UTC +01:00)
View GitHub Profile
@hkabbech
hkabbech / SingleLayerCAE.py
Created February 5, 2019 08:44 — forked from galeone/SingleLayerCAE.py
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"""