This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def extract(idxs, target): | |
trailing_shape = target.shape[idxs.shape[1]:] | |
flat_idxs = np.ravel_multi_index(idxs.T, target.shape[:idxs.shape[1]]) | |
result_shape = (idxs.shape[0], ) + trailing_shape | |
return target.reshape([-1, *trailing_shape])[flat_idxs].reshape(result_shape) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
from pathlib import Path | |
import h5py | |
def resolve_name(f, name_ref): | |
return ''.join([chr(i) for i in f[name_ref]]) | |
def flat(x): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def get_perceptual_axis_center_in_figure_space(fig, ax): | |
xs = ax.get_xlim() | |
if ax.get_xscale() == 'log': | |
xs = np.log10(xs) | |
c_x = sum(xs) / 2 | |
c_x = 10**c_x | |
else: | |
c_x = sum(xs) / 2 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
header = r''' | |
\begin{tikzpicture}[node distance = 2mm, auto] | |
%% Auto Generated | |
''' | |
raw_b = r''' | |
\node [block, below= of glove] (conv1) { | |
\begin{tabular}{cc} | |
Conv1D & Input: $n$x100 \\ | |
64x5 Dilation 1 & Output: $n$x64 \\ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
''' | |
Compatible with Keras, faster than reading from files (no stats). | |
It's only designed to work if all your images are vaguely similar sizes/ | |
when encoded as JPGS, so if you have: | |
white noise or other hard-to-encode stuff | |
radically varying image sizes | |
... | |
(probably other failure modes) | |
Then this is foolhardy. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def tf_pca(x): | |
''' | |
Compute PCA on the bottom two dimensions of x, | |
eg assuming dims = [..., observations, features] | |
''' | |
# Center | |
x -= tf.reduce_mean(x, -2, keepdims=True) | |
# Currently, the GPU implementation of SVD is awful. | |
# It is slower than moving data back to CPU to SVD there |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import keras.backend as kb | |
from keras.layers import Layer | |
def _kb_linspace(num): | |
num = kb.cast(num, kb.floatx()) | |
return kb.arange(0, num, dtype=kb.floatx()) / (num - 1) | |
def _kb_grid_coords(width, height): | |
w, h = width, height | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function isString(s) { | |
return (typeof s === 'string' || s instanceof String) | |
} | |
export function toBaseUnit(value, decimals, BN) { | |
if (!isString(value)) { | |
throw new Error('Pass strings to prevent floating point precision issues.') | |
} | |
const ten = new BN(10); | |
const base = ten.pow(new BN(decimals)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import subprocess | |
import shlex | |
import os | |
from pathlib import Path | |
def chdir_to_script_location(): | |
abspath = os.path.abspath(__file__) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import subprocess | |
import shlex | |
import os | |
from pathlib import Path | |
def chdir_to_script_location(): | |
abspath = os.path.abspath(__file__) |
OlderNewer