Skip to content

Instantly share code, notes, and snippets.

View hkabbech's full-sized avatar

Hélène Kabbech hkabbech

  • DataHub Maastricht
  • 22:05 (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"""
ps2pdf input.pdf output.pdf
@hkabbech
hkabbech / gist:391f6f1862c465556338eb77b749f64c
Created July 27, 2018 14:46
Merge certain pages from within multiple documents using pdftk
#sudo apt-get install pdftk
pdftk A=a.pdf B=b.pdf cat A1-2 B A3-end output combined.pdf