Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
from PIL import Image | |
import requests | |
import tempfile | |
def load_gif_url(url): | |
with tempfile.NamedTemporaryFile(suffix=".gif") as f: | |
f.write(requests.get(url).content) | |
f.flush() | |
img = Image.open(f.name) |
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_bw(src): | |
return cv2.cvtColor(src, cv2.COLOR_BGR2GRAY) | |
def show_color(src): | |
plt.imshow(cv2.cvtColor(src, cv2.COLOR_BGR2RGB)) | |
_ = plt.xticks([]), plt.yticks([]) | |
def show_bw(bw): | |
plt.imshow(bw, cmap='gray') | |
_ = plt.xticks([]), plt.yticks([]) |
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_state_v0(state): | |
url = make_url(state) | |
IN = load_gif_url(url) | |
#Drop the text at the top | |
IN = IN[150:] | |
#Convert 3 color channels to 1 | |
IN_bw = get_bw(IN) |
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_state_v1(state): | |
url = make_url(state) | |
IN = load_gif_url(url) | |
#Drop the text at the top | |
IN = IN[150:] | |
#Convert 3 color channels to 1 | |
IN_bw = get_bw(IN) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
[default] | |
library_dirs = /usr/local/lib | |
[atlas] | |
atlas_libs = openblas | |
library_dirs = /usr/local/lib | |
[lapack] | |
lapack_libs = openblas | |
library_dirs = /usr/local/lib | |
[openblas] | |
libraries = openblas |
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 os | |
os.environ['THEANO_FLAGS']="optimizer_including=conv_fft_valid:conv_fft_full" | |
from pylearn2.config import yaml_parse | |
from pylearn2.datasets.dense_design_matrix import DenseDesignMatrix | |
import numpy as np | |
train_str = """!obj:pylearn2.train.Train { | |
dataset: &train !import '__main__ .train_set', |
OlderNewer