Skip to content

Instantly share code, notes, and snippets.

View crikeli's full-sized avatar

Kelin Christi crikeli

View GitHub Profile
@crikeli
crikeli / resizing_training_validation_and_test_data.ipynb
Created April 27, 2017 01:51
Resizing and making sure data has indeed resized as we wanted...
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@crikeli
crikeli / resizing_image_function.ipynb
Last active April 27, 2017 01:37
resizing image function
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@crikeli
crikeli / training_data_exploration.ipynb
Last active April 27, 2017 01:27
Exploring Training Data
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@crikeli
crikeli / plankton_visualtization_training_data.ipynb
Created April 26, 2017 22:42
A small sample of various types of plankton from the training data
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@crikeli
crikeli / validation_data_creation.ipynb
Created April 26, 2017 22:18
A jupyter notebook gist for validation data creation
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@crikeli
crikeli / min-char-rnn.py
Created November 2, 2016 14:13 — forked from karpathy/min-char-rnn.py
Minimal character-level language model with a Vanilla Recurrent Neural Network, in Python/numpy
"""
Minimal character-level Vanilla RNN model. Written by Andrej Karpathy (@karpathy)
BSD License
"""
import numpy as np
# data I/O
data = open('input.txt', 'r').read() # should be simple plain text file
chars = list(set(data))
data_size, vocab_size = len(data), len(chars)