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
/* Copy this file to ~/Library/KeyBindings/DefaultKeyBinding.dict */ | |
/* http://www.gnufoo.org/macosx/ */ | |
/* The original bindings are from Mike Ferris of lorax.com as shipped | |
* with his TextExtras package. They were further modified by Mishka Gorodnitzky | |
* ([email protected]), Patrick Linskey, and Llew Mason. | |
*/ | |
{ | |
"~f" = "moveWordForward:"; /* M-f */ | |
"~b" = "moveWordBackward:"; /* M-b */ | |
"~<" = "moveToBeginningOfDocument:"; /* M-< */ |
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 python2 | |
'''Serving dynamic images with Pandas and matplotlib (using flask).''' | |
import matplotlib | |
matplotlib.use('Agg') | |
import matplotlib.pyplot as plt | |
import numpy as np | |
import pandas as pd | |
from cStringIO import StringIO |
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
{ | |
"embeddings": [ | |
{ | |
"tensorName": "Image Encodings", | |
"tensorShape": [ | |
9918, | |
500 | |
], | |
"tensorPath": "https://storage.googleapis.com/embeddings-projector/encodings.tsv", | |
"metadataPath": "https://storage.googleapis.com/embeddings-projector/metadata.tsv", |
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
{ | |
"embeddings": [ | |
{ | |
"tensorName": "My tensor", | |
"tensorShape": [ | |
150, | |
4 | |
], | |
"tensorPath": "https://storage.googleapis.com/embeddings-projector/iris_tensors.tsv" | |
} |