I hereby claim:
- I am jimfleming on github.
- I am jimfleming (https://keybase.io/jimfleming) on keybase.
- I have a public key whose fingerprint is A2C3 A14C 518F 9625 C898 5747 53FC 930D 4B45 E90F
To claim this, I am signing this object:
def randint(low, high=None, size=None, dtype=tf.int32): | |
""" | |
Return random integers from low (inclusive) to high (exclusive). | |
Interface borrowed from numpy.random.randint. | |
""" | |
if high is None: | |
high = low | |
low = 0 | |
assert dtype.is_integer(), 'dtype for randint must be an integer' | |
return tf.random_uniform(shape=size, minval=low, maxval=high, dtype=dtype) |
import matplotlib | |
import matplotlib.cm | |
import tensorflow as tf | |
def colorize(value, vmin=None, vmax=None, cmap=None): | |
""" | |
A utility function for TensorFlow that maps a grayscale image to a matplotlib | |
colormap for use with TensorBoard image summaries. |
I hereby claim:
To claim this, I am signing this object:
import numpy as np | |
from keras.models import Model | |
from keras.layers import Input, Dense, RepeatVector, Activation, Flatten, Reshape | |
from keras.layers.convolutional import Convolution2D, MaxPooling2D, AveragePooling2D, UpSampling2D | |
from keras.layers.normalization import BatchNormalization | |
from keras.layers.recurrent import LSTM | |
from keras.layers.wrappers import TimeDistributed |
{ | |
"name": "Panda3D Reference", | |
"package": "pandaref", | |
"index": "index.html", | |
"selectors": { | |
".header .headertitle .title": "Class", | |
".memitem .memproto .memname a": "Method" | |
}, | |
"ignore": [], | |
"icon32x32": "", |
{ | |
"name": "Panda3D Manual", | |
"package": "pandaman", | |
"index": "Main_Page.html", | |
"selectors": { | |
"ol.toc li a": "Guide" | |
}, | |
"ignore": [ | |
], |
struct Graph<'a> { | |
neurons: HashMap<u64, &'a (Node + 'a)>, | |
} |
using UnityEngine; | |
using UnityEditor; | |
using System; | |
using System.IO; | |
using System.Linq; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Text.RegularExpressions; | |
public class Blur { |