-
Notifications
You must be signed in to change notification settings - Fork 7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
OMNIGLOT Dataset #46
OMNIGLOT Dataset #46
Changes from 6 commits
149760d
206c74e
a2954d2
a6f165a
f1dd5c5
1a82a10
e472eaa
6d4e78f
b0cf267
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
from __future__ import print_function | ||
import torch.utils.data as data | ||
from PIL import Image | ||
import os | ||
import os.path | ||
import errno | ||
import torch | ||
import json | ||
import codecs | ||
import numpy as np | ||
from PIL import Image | ||
|
||
class OMNIGLOT(data.Dataset): | ||
urls = [ | ||
'https://github.com/brendenlake/omniglot/raw/master/python/images_background.zip', | ||
'https://github.com/brendenlake/omniglot/raw/master/python/images_evaluation.zip' | ||
] | ||
raw_folder = 'raw' | ||
processed_folder = 'processed' | ||
training_file = 'training.pt' | ||
test_file = 'test.pt' | ||
|
||
def __init__(self, root, train=True, transform=None, target_transform=None, download=False): | ||
self.root = root | ||
self.transform = transform | ||
self.target_transform = target_transform | ||
if download: | ||
self.download() | ||
|
||
if not self._check_exists(): | ||
raise RuntimeError('Dataset not found.' | ||
+ ' You can use download=True to download it') | ||
|
||
self.all_items=find_classes(os.path.join(self.root, self.processed_folder)) | ||
self.idx_classes=index_classes(self.all_items) | ||
|
||
def __getitem__(self, index): | ||
filename=self.all_items[index][0] | ||
path=self.all_items[index][2]+"/"+filename | ||
This comment was marked as off-topic.
Sorry, something went wrong.
This comment was marked as off-topic.
Sorry, something went wrong. |
||
img=Image.open(path).convert('RGB') | ||
target=self.idx_classes[self.all_items[index][1]] | ||
if self.transform is not None: | ||
img = self.transform(img) | ||
if self.target_transform is not None: | ||
target = self.target_transform(target) | ||
|
||
return img,target | ||
|
||
def __len__(self): | ||
return len(self.all_items) | ||
|
||
def _check_exists(self): | ||
This comment was marked as off-topic.
Sorry, something went wrong. |
||
return os.path.exists(os.path.join(self.root, self.processed_folder, "images_evaluation")) and \ | ||
os.path.exists(os.path.join(self.root, self.processed_folder, "images_background")) | ||
|
||
def download(self): | ||
from six.moves import urllib | ||
import zipfile | ||
|
||
if self._check_exists(): | ||
return | ||
|
||
# download files | ||
try: | ||
This comment was marked as off-topic.
Sorry, something went wrong. |
||
os.makedirs(os.path.join(self.root, self.raw_folder)) | ||
os.makedirs(os.path.join(self.root, self.processed_folder)) | ||
except OSError as e: | ||
if e.errno == errno.EEXIST: | ||
pass | ||
else: | ||
raise | ||
|
||
for url in self.urls: | ||
print('== Downloading ' + url) | ||
data = urllib.request.urlopen(url) | ||
This comment was marked as off-topic.
Sorry, something went wrong. |
||
filename = url.rpartition('/')[2] | ||
file_path = os.path.join(self.root, self.raw_folder, filename) | ||
with open(file_path, 'wb') as f: | ||
f.write(data.read()) | ||
file_processed = os.path.join(self.root, self.processed_folder) | ||
print("== Unzip from "+file_path+" to "+file_processed) | ||
zip_ref = zipfile.ZipFile(file_path, 'r') | ||
zip_ref.extractall(file_processed) | ||
zip_ref.close() | ||
print("Download finished.") | ||
|
||
def find_classes(root_dir): | ||
retour=[] | ||
This comment was marked as off-topic.
Sorry, something went wrong. |
||
for (root,dirs,files) in os.walk(root_dir): | ||
for f in files: | ||
if (f.endswith("png")): | ||
r=root.split('/') | ||
lr=len(r) | ||
retour.append((f,r[lr-2]+"/"+r[lr-1],root)) | ||
This comment was marked as off-topic.
Sorry, something went wrong. |
||
print("Found %d items "%len(retour)) | ||
return retour | ||
|
||
def index_classes(items): | ||
idx={} | ||
for i in items: | ||
if (not i[1] in idx): | ||
This comment was marked as off-topic.
Sorry, something went wrong. |
||
idx[i[1]]=len(idx) | ||
print("Found %d classes"% len(idx)) | ||
return idx |
This comment was marked as off-topic.
Sorry, something went wrong.