Skip to content

Instantly share code, notes, and snippets.

View Panaetius's full-sized avatar

Ralf Grubenmann Panaetius

  • @swiss-data-science-center
  • Zurich, Switzerland
View GitHub Profile
@Panaetius
Panaetius / test.py
Last active March 21, 2017 22:17
Produces SIGFPE in Tensorflow
import tensorflow as tf
def test(x):
return x
with tf.Graph().as_default():
writer = tf.python_io.TFRecordWriter(
"test.tfrecords")
for i in range(1000):
example = tf.train.Example(features=tf.train.Features(feature={