Skip to content

Instantly share code, notes, and snippets.

View rikrd's full-sized avatar

Ricard Marxer rikrd

View GitHub Profile
@sebble
sebble / custom.css
Created May 7, 2014 10:49
IPython Notebook Custom Style
/*
Placeholder for custom user CSS
mainly to be overridden in profile/static/custom/custom.css
This will always be an empty file in IPython
*/
/* set toolbar to hide by default */
.notebook_app #maintoolbar {
@danijar
danijar / blog_tensorflow_variational_auto_encoder.py
Last active February 22, 2023 09:02
TensorFlow Variational Auto-Encoder
# Full example for my blog post at:
# https://danijar.com/building-variational-auto-encoders-in-tensorflow/
import numpy as np
import matplotlib.pyplot as plt
import tensorflow as tf
from tensorflow.examples.tutorials.mnist import input_data
tfd = tf.contrib.distributions