This gist has been superceded by Meta Graph functionality that has since been added to tensorflow core.
The code remains posted for archival purposes only.
| {0: 'tench, Tinca tinca', | |
| 1: 'goldfish, Carassius auratus', | |
| 2: 'great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias', | |
| 3: 'tiger shark, Galeocerdo cuvieri', | |
| 4: 'hammerhead, hammerhead shark', | |
| 5: 'electric ray, crampfish, numbfish, torpedo', | |
| 6: 'stingray', | |
| 7: 'cock', | |
| 8: 'hen', | |
| 9: 'ostrich, Struthio camelus', |
This gist has been superceded by Meta Graph functionality that has since been added to tensorflow core.
The code remains posted for archival purposes only.
| import gzip | |
| import os | |
| import numpy as np | |
| import six | |
| from six.moves.urllib import request | |
| parent = 'http://yann.lecun.com/exdb/mnist' | |
| train_images = 'train-images-idx3-ubyte.gz' | |
| train_labels = 'train-labels-idx1-ubyte.gz' |
| from scipy.spatial.distance import pdist, squareform | |
| import numpy as np | |
| from numbapro import jit, float32 | |
| def distcorr(X, Y): | |
| """ Compute the distance correlation function | |
| >>> a = [1,2,3,4,5] | |
| >>> b = np.array([1,2,9,4,4]) |