This file contains 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
class CollectionsDatasetTest(Dataset): | |
def __init__(self, | |
csv_file, | |
root_dir, | |
transform=None): | |
self.data = pd.read_csv(csv_file) | |
self.root_dir = root_dir | |
self.transform = transform |
This file contains 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 | |
from torch.utils.data import Dataset | |
class CollectionsDataset(Dataset): | |
def __init__(self, | |
csv_file, | |
root_dir, | |
num_classes, | |
transform=None): |
This file contains 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
""" | |
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) |
This file contains 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 cv2 | |
scaling = 10 | |
webcam = cv2.VideoCapture(0) | |
haar = cv2.CascadeClassifier("/usr/local/Cellar/opencv/2.4.8.2/share/OpenCV/lbpcascades/lbpcascade_frontalface.xml") | |
if webcam.isOpened(): # try to get the first frame | |
rval, frame = webcam.read() |
This file contains 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
# k-Means clustering for Normal Distributions - Almost from scratch! | |
import numpy as np | |
import scipy as sp | |
import random | |
from math import radians, cos, sin, asin, sqrt | |
def haversine(lon1, lat1, lon2, lat2): | |
""" |
This file contains 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
==> Installing dependencies for opencv: cmake, pkg-config, libpng | |
==> Installing opencv dependency: cmake | |
==> Downloading http://www.cmake.org/files/v2.8/cmake-2.8.12.tar.gz | |
######################################################################## 100.0% | |
==> ./bootstrap --prefix=/usr/local/Cellar/cmake/2.8.12 --system-libs --no-system-libarchive --datadir=/shar | |
==> make | |
==> make install | |
Warning: Could not link cmake. Unlinking... | |
Error: The `brew link` step did not complete successfully |
NewerOlder