-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reorganize and clean MNIST + CIFAR10 examples.
- Loading branch information
Showing
17 changed files
with
193 additions
and
509 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,154 @@ | ||
# Copyright 2018 The JAX Authors. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# https://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
# Modified by Graphcore Ltd 2024. | ||
|
||
"""Datasets used in examples.""" | ||
|
||
|
||
import array | ||
import gzip | ||
import os | ||
import pickle | ||
import struct | ||
import tarfile | ||
import urllib.request | ||
from os import path | ||
|
||
import numpy as np | ||
|
||
_DATA = "/tmp/jax_example_data/" | ||
|
||
|
||
def _download(url, filename): | ||
"""Download a url to a file in the JAX data temp directory.""" | ||
if not path.exists(_DATA): | ||
os.makedirs(_DATA) | ||
out_file = path.join(_DATA, filename) | ||
if not path.isfile(out_file): | ||
urllib.request.urlretrieve(url, out_file) | ||
print(f"downloaded {url} to {_DATA}") | ||
|
||
|
||
def _partial_flatten(x): | ||
"""Flatten all but the first dimension of an ndarray.""" | ||
return np.reshape(x, (x.shape[0], -1)) | ||
|
||
|
||
def _one_hot(x, k, dtype=np.float32): | ||
"""Create a one-hot encoding of x of size k.""" | ||
return np.array(x[:, None] == np.arange(k), dtype) | ||
|
||
|
||
def _unzip(file): | ||
file = tarfile.open(file) | ||
file.extractall(_DATA) | ||
file.close() | ||
return | ||
|
||
|
||
def _unpickle(file): | ||
with open(file, "rb") as fo: | ||
dict = pickle.load(fo, encoding="bytes") | ||
return dict | ||
|
||
|
||
def mnist_raw(): | ||
"""Download and parse the raw MNIST dataset.""" | ||
# CVDF mirror of http://yann.lecun.com/exdb/mnist/ | ||
base_url = "https://storage.googleapis.com/cvdf-datasets/mnist/" | ||
|
||
def parse_labels(filename): | ||
with gzip.open(filename, "rb") as fh: | ||
_ = struct.unpack(">II", fh.read(8)) | ||
return np.array(array.array("B", fh.read()), dtype=np.uint8) | ||
|
||
def parse_images(filename): | ||
with gzip.open(filename, "rb") as fh: | ||
_, num_data, rows, cols = struct.unpack(">IIII", fh.read(16)) | ||
return np.array(array.array("B", fh.read()), dtype=np.uint8).reshape(num_data, rows, cols) | ||
|
||
for filename in [ | ||
"train-images-idx3-ubyte.gz", | ||
"train-labels-idx1-ubyte.gz", | ||
"t10k-images-idx3-ubyte.gz", | ||
"t10k-labels-idx1-ubyte.gz", | ||
]: | ||
_download(base_url + filename, filename) | ||
|
||
train_images = parse_images(path.join(_DATA, "train-images-idx3-ubyte.gz")) | ||
train_labels = parse_labels(path.join(_DATA, "train-labels-idx1-ubyte.gz")) | ||
test_images = parse_images(path.join(_DATA, "t10k-images-idx3-ubyte.gz")) | ||
test_labels = parse_labels(path.join(_DATA, "t10k-labels-idx1-ubyte.gz")) | ||
|
||
return train_images, train_labels, test_images, test_labels | ||
|
||
|
||
def mnist(permute_train=False): | ||
"""Download, parse and process MNIST data to unit scale and one-hot labels.""" | ||
train_images, train_labels, test_images, test_labels = mnist_raw() | ||
|
||
train_images = _partial_flatten(train_images) / np.float32(255.0) | ||
test_images = _partial_flatten(test_images) / np.float32(255.0) | ||
train_labels = _one_hot(train_labels, 10) | ||
test_labels = _one_hot(test_labels, 10) | ||
|
||
if permute_train: | ||
perm = np.random.RandomState(0).permutation(train_images.shape[0]) | ||
train_images = train_images[perm] | ||
train_labels = train_labels[perm] | ||
|
||
return train_images, train_labels, test_images, test_labels | ||
|
||
|
||
def cifar_raw(): | ||
"""Download, unzip and parse the raw cifar dataset.""" | ||
|
||
filename = "cifar-10-python.tar.gz" | ||
url = "https://www.cs.toronto.edu/~kriz/cifar-10-python.tar.gz" | ||
_download(url, filename) | ||
_unzip(path.join(_DATA, filename)) | ||
|
||
data_batches = ["data_batch_1", "data_batch_2", "data_batch_3", "data_batch_4", "data_batch_5"] | ||
data = [] | ||
labels = [] | ||
for batch in data_batches: | ||
tmp_dict = _unpickle(path.join(_DATA, "cifar-10-batches-py", batch)) | ||
data.append(tmp_dict[b"data"]) | ||
labels.append(tmp_dict[b"labels"]) | ||
train_images = np.concatenate(data) | ||
train_labels = np.concatenate(labels) | ||
|
||
test_dict = _unpickle(path.join(_DATA, "cifar-10-batches-py", "test_batch")) | ||
test_images = test_dict[b"data"] | ||
test_labels = np.array(test_dict[b"labels"]) | ||
|
||
return train_images, train_labels, test_images, test_labels | ||
|
||
|
||
def cifar(permute_train=False): | ||
"""Download, parse and process cifar data to unit scale and one-hot labels.""" | ||
|
||
train_images, train_labels, test_images, test_labels = cifar_raw() | ||
|
||
train_images = train_images / np.float32(255.0) | ||
test_images = test_images / np.float32(255.0) | ||
train_labels = _one_hot(train_labels, 10) | ||
test_labels = _one_hot(test_labels, 10) | ||
|
||
if permute_train: | ||
perm = np.random.RandomState(0).permutation(train_images.shape[0]) | ||
train_images = train_images[perm] | ||
train_labels = train_labels[perm] | ||
|
||
return train_images, train_labels, test_images, test_labels |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
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
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
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
Oops, something went wrong.