Skip to content

Instantly share code, notes, and snippets.

@charlesdckim
charlesdckim / conv3dnet.py
Created February 14, 2017 13:12 — forked from dansileshi/conv3dnet.py
Example of 3D convolutional network with TensorFlow
import tensorflow as tf
import numpy as np
FC_SIZE = 1024
DTYPE = tf.float32
def _weight_variable(name, shape):
return tf.get_variable(name, shape, DTYPE, tf.truncated_normal_initializer(stddev=0.1))