Skip to content

Commit

Permalink
quenn v0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sraashis committed Jul 28, 2020
0 parents commit 7a41d6f
Show file tree
Hide file tree
Showing 310 changed files with 1,687 additions and 0 deletions.
130 changes: 130 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
# Created by .ignore support plugin (hsz.mobi)
### Python template
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
.idea
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# IPython
profile_default/
ipython_config.py

# pyenv
.python-version

# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/
net_logs
logs_backup
.ipynb_checkpoints
chk
data
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2020 Aashis Khanal

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
### quenn
**Qu**ick **N**eural **N**etwork **E**xperimentation

### Please see experiments folder for examples
10 changes: 10 additions & 0 deletions example/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
### quenn
**Qu**ick **N**eural **N**etwork **E**xperimentation

### This document consists of an example on the following datasets:
* **DRIVE**: Staal, J., Abramoff, M., Niemeijer, M., Viergever, M., and van Ginneken, B. (2004).
Ridge based vessel segmentation in color images of the retina.
IEEE Transactions on Medical Imaging23, 501–509
* **AV_WIDE**: Estrada, R., Tomasi, C., Schmidler, S. C., and Farsiu, S. (2015).
Tree topology estimation. IEEE Transactions on Pattern Analysis and Machine Intelligence
37, 1688–1701. doi:10.1109/TPAMI.2014.2592382116
Empty file added example/__init__.py
Empty file.
103 changes: 103 additions & 0 deletions example/classification.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
import os
import random

import numpy as np
import torch
import torch.nn.functional as F
import torchvision.transforms as tmf
from PIL import Image as IMG

from quenn.utils.imageutils import Image
from quenn.core.measurements import Avg, Prf1a
from quenn.core.nn import QNTrainer, QNDataset
from example.models import DiskExcNet

sep = os.sep


class KernelDataset(QNDataset):
def __init__(self, **kw):
super().__init__(**kw)
self.get_label = kw.get('label_getter')
self.get_mask = kw.get('mask_getter')

def load_index(self, map_id, file_id, file):
self.indices.append([map_id, file_id, file])

def __getitem__(self, index):
map_id, file_id, file = self.indices[index]
dt = self.dmap[map_id]

img_obj = Image()
img_obj.load(dt['data_dir'], file)
img_obj.load_ground_truth(dt['label_dir'], dt['label_getter'])
img_obj.apply_clahe()
if self.mode == 'train' and random.uniform(0, 1) <= 0.5:
img_obj.array = np.flip(img_obj.array, 0)
img_obj.ground_truth = np.flip(img_obj.ground_truth, 0)

if self.mode == 'train' and random.uniform(0, 1) <= 0.5:
img_obj.array = np.flip(img_obj.array, 1)
img_obj.ground_truth = np.flip(img_obj.ground_truth, 1)

img_tensor = self.transforms(IMG.fromarray(img_obj.array))

gt = img_obj.ground_truth
if len(gt.shape) > 2:
gt = gt[:, :, 0]

gt = self.transforms(IMG.fromarray(gt))
gt[gt == 255] = 1
return {'indices': self.indices[index], 'input': img_tensor, 'label': gt.squeeze()}

@property
def transforms(self):
return tmf.Compose(
[tmf.Resize((128, 128)), tmf.ToTensor()])


class KernelTrainer(QNTrainer):
def __init__(self, args, **kw):
super().__init__(args, **kw)

def _init_nn(self):
self.nn['model'] = DiskExcNet(self.args['num_channel'], self.args['num_class'], r=self.args['model_scale'])

def iteration(self, batch):
inputs = batch['input'].to(self.nn['device']).float()
labels = batch['label'].to(self.nn['device']).long()

out = self.nn['model'](inputs)
loss = F.cross_entropy(out, labels)
out = F.log_softmax(out, 1)

_, pred = torch.max(out, 1)
sc = self.new_metrics()
sc.add(pred, labels)

avg = Avg()
avg.add(loss.item(), len(inputs))

return {'loss': loss, 'avg_loss': avg, 'output': out, 'scores': sc, 'predictions': pred}

def save_predictions(self, accumulator):
dataset_name = list(accumulator[0].dmap.keys()).pop()
file = accumulator[1][0]['indices'][2][0].split('.')[0]
out = accumulator[1][1]['output']
img = out[:, 1, :, :].cpu().numpy() * 255
img = np.array(img.squeeze(), dtype=np.uint8)
IMG.fromarray(img).save(self.cache['log_dir'] + sep + dataset_name + '_' + file + '.png')

def new_metrics(self):
return Prf1a()

def reset_dataset_cache(self):
self.cache['global_test_score'] = []
self.cache['monitor_metrics'] = 'f1'
self.cache['score_direction'] = 'maximize'

def reset_fold_cache(self):
self.cache['training_log'] = ['Loss,Precision,Recall,F1,Accuracy']
self.cache['validation_log'] = ['Loss,Precision,Recall,F1,Accuracy']
self.cache['test_score'] = ['Split,Precision,Recall,F1,Accuracy']
self.cache['best_score'] = 0.0
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added example/datasets/AV-WIDE/images/wide_image_03.png
Binary file added example/datasets/AV-WIDE/images/wide_image_08.png
Binary file added example/datasets/AV-WIDE/images/wide_image_09.png
Binary file added example/datasets/AV-WIDE/images/wide_image_12.png
Binary file added example/datasets/AV-WIDE/images/wide_image_13.png
Binary file added example/datasets/AV-WIDE/images/wide_image_17.png
Binary file added example/datasets/AV-WIDE/images/wide_image_18.png
Binary file added example/datasets/AV-WIDE/images/wide_image_19.png
Binary file added example/datasets/AV-WIDE/images/wide_image_20.png
Binary file added example/datasets/AV-WIDE/images/wide_image_26.png
Binary file added example/datasets/AV-WIDE/images/wide_image_30.png
1 change: 1 addition & 0 deletions example/datasets/AV-WIDE/splits/AV-WIDE_0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"train": ["wide_image_01.png", "wide_image_29.png", "wide_image_09.png", "wide_image_18.png", "wide_image_10.png", "wide_image_05.png", "wide_image_21.png", "wide_image_07.png", "wide_image_20.png", "wide_image_23.png", "wide_image_13.png", "wide_image_14.png", "wide_image_22.png", "wide_image_24.png", "wide_image_28.png", "wide_image_15.png", "wide_image_16.png", "wide_image_02.png"], "validation": ["wide_image_08.png", "wide_image_19.png", "wide_image_30.png", "wide_image_26.png", "wide_image_27.png", "wide_image_12.png"], "test": ["wide_image_03.png", "wide_image_11.png", "wide_image_17.png", "wide_image_06.png", "wide_image_25.png", "wide_image_04.png"]}
1 change: 1 addition & 0 deletions example/datasets/AV-WIDE/splits/AV-WIDE_1.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"train": ["wide_image_03.png", "wide_image_11.png", "wide_image_17.png", "wide_image_06.png", "wide_image_25.png", "wide_image_04.png", "wide_image_21.png", "wide_image_07.png", "wide_image_20.png", "wide_image_23.png", "wide_image_13.png", "wide_image_14.png", "wide_image_22.png", "wide_image_24.png", "wide_image_28.png", "wide_image_15.png", "wide_image_16.png", "wide_image_02.png"], "validation": ["wide_image_01.png", "wide_image_29.png", "wide_image_09.png", "wide_image_18.png", "wide_image_10.png", "wide_image_05.png"], "test": ["wide_image_08.png", "wide_image_19.png", "wide_image_30.png", "wide_image_26.png", "wide_image_27.png", "wide_image_12.png"]}
1 change: 1 addition & 0 deletions example/datasets/AV-WIDE/splits/AV-WIDE_2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"train": ["wide_image_03.png", "wide_image_11.png", "wide_image_17.png", "wide_image_06.png", "wide_image_25.png", "wide_image_04.png", "wide_image_08.png", "wide_image_19.png", "wide_image_30.png", "wide_image_26.png", "wide_image_27.png", "wide_image_12.png", "wide_image_22.png", "wide_image_24.png", "wide_image_28.png", "wide_image_15.png", "wide_image_16.png", "wide_image_02.png"], "validation": ["wide_image_21.png", "wide_image_07.png", "wide_image_20.png", "wide_image_23.png", "wide_image_13.png", "wide_image_14.png"], "test": ["wide_image_01.png", "wide_image_29.png", "wide_image_09.png", "wide_image_18.png", "wide_image_10.png", "wide_image_05.png"]}
1 change: 1 addition & 0 deletions example/datasets/AV-WIDE/splits/AV-WIDE_3.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"train": ["wide_image_03.png", "wide_image_11.png", "wide_image_17.png", "wide_image_06.png", "wide_image_25.png", "wide_image_04.png", "wide_image_08.png", "wide_image_19.png", "wide_image_30.png", "wide_image_26.png", "wide_image_27.png", "wide_image_12.png", "wide_image_01.png", "wide_image_29.png", "wide_image_09.png", "wide_image_18.png", "wide_image_10.png", "wide_image_05.png"], "validation": ["wide_image_22.png", "wide_image_24.png", "wide_image_28.png", "wide_image_15.png", "wide_image_16.png", "wide_image_02.png"], "test": ["wide_image_21.png", "wide_image_07.png", "wide_image_20.png", "wide_image_23.png", "wide_image_13.png", "wide_image_14.png"]}
1 change: 1 addition & 0 deletions example/datasets/AV-WIDE/splits/AV-WIDE_4.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"train": ["wide_image_08.png", "wide_image_19.png", "wide_image_30.png", "wide_image_26.png", "wide_image_27.png", "wide_image_12.png", "wide_image_01.png", "wide_image_29.png", "wide_image_09.png", "wide_image_18.png", "wide_image_10.png", "wide_image_05.png", "wide_image_21.png", "wide_image_07.png", "wide_image_20.png", "wide_image_23.png", "wide_image_13.png", "wide_image_14.png"], "validation": ["wide_image_03.png", "wide_image_11.png", "wide_image_17.png", "wide_image_06.png", "wide_image_25.png", "wide_image_04.png"], "test": ["wide_image_22.png", "wide_image_24.png", "wide_image_28.png", "wide_image_15.png", "wide_image_16.png", "wide_image_02.png"]}
1 change: 1 addition & 0 deletions example/datasets/AV-WIDE/splits/AV-WIDE_5.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"train": ["wide_image_29.png", "wide_image_28.png", "wide_image_19.png", "wide_image_23.png", "wide_image_05.png", "wide_image_09.png", "wide_image_24.png", "wide_image_03.png", "wide_image_06.png", "wide_image_17.png", "wide_image_18.png", "wide_image_21.png", "wide_image_13.png", "wide_image_25.png", "wide_image_30.png", "wide_image_10.png", "wide_image_22.png", "wide_image_14.png", "wide_image_08.png", "wide_image_04.png"], "validation": ["wide_image_27.png", "wide_image_15.png", "wide_image_16.png", "wide_image_12.png", "wide_image_26.png"], "test": ["wide_image_07.png", "wide_image_01.png", "wide_image_11.png", "wide_image_02.png", "wide_image_20.png"]}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
71 changes: 71 additions & 0 deletions example/datasets/DRIVE/OD_Segmentation/Untitled.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [],
"source": [
"import numpy as np\n",
"from PIL import Image"
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [],
"source": [
"arr = np.array(Image.open(\"04_test_gt.tif\"))"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"array([ 0, 255], dtype=uint8)"
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"np.unique(arr)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.0"
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Binary file added example/datasets/DRIVE/images/01_test.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/02_test.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/03_test.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/04_test.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/05_test.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/06_test.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/07_test.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/08_test.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/09_test.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/10_test.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/11_test.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/12_test.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/13_test.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/14_test.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/15_test.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/16_test.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/17_test.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/18_test.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/19_test.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/20_test.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/21_training.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/22_training.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/23_training.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/24_training.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/25_training.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/26_training.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/27_training.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/28_training.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/29_training.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/30_training.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/31_training.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/32_training.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/33_training.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/34_training.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/35_training.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/36_training.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/37_training.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/38_training.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/39_training.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/images/40_training.tif
Binary file not shown.
Binary file added example/datasets/DRIVE/mask/01_mask.gif
Binary file added example/datasets/DRIVE/mask/02_mask.gif
Binary file added example/datasets/DRIVE/mask/03_mask.gif
Binary file added example/datasets/DRIVE/mask/04_mask.gif
Binary file added example/datasets/DRIVE/mask/05_mask.gif
Binary file added example/datasets/DRIVE/mask/06_mask.gif
Binary file added example/datasets/DRIVE/mask/07_mask.gif
Binary file added example/datasets/DRIVE/mask/08_mask.gif
Binary file added example/datasets/DRIVE/mask/09_mask.gif
Binary file added example/datasets/DRIVE/mask/10_mask.gif
Binary file added example/datasets/DRIVE/mask/11_mask.gif
Binary file added example/datasets/DRIVE/mask/12_mask.gif
Binary file added example/datasets/DRIVE/mask/13_mask.gif
Binary file added example/datasets/DRIVE/mask/14_mask.gif
Binary file added example/datasets/DRIVE/mask/15_mask.gif
Binary file added example/datasets/DRIVE/mask/16_mask.gif
Binary file added example/datasets/DRIVE/mask/17_mask.gif
Binary file added example/datasets/DRIVE/mask/18_mask.gif
Binary file added example/datasets/DRIVE/mask/19_mask.gif
Binary file added example/datasets/DRIVE/mask/20_mask.gif
Binary file added example/datasets/DRIVE/mask/21_mask.gif
Binary file added example/datasets/DRIVE/mask/22_mask.gif
Binary file added example/datasets/DRIVE/mask/23_mask.gif
Binary file added example/datasets/DRIVE/mask/24_mask.gif
Binary file added example/datasets/DRIVE/mask/25_mask.gif
Binary file added example/datasets/DRIVE/mask/26_mask.gif
Binary file added example/datasets/DRIVE/mask/27_mask.gif
Binary file added example/datasets/DRIVE/mask/28_mask.gif
Binary file added example/datasets/DRIVE/mask/29_mask.gif
Binary file added example/datasets/DRIVE/mask/30_mask.gif
Binary file added example/datasets/DRIVE/mask/31_mask.gif
Binary file added example/datasets/DRIVE/mask/32_mask.gif
Binary file added example/datasets/DRIVE/mask/33_mask.gif
Binary file added example/datasets/DRIVE/mask/34_mask.gif
Binary file added example/datasets/DRIVE/mask/35_mask.gif
Binary file added example/datasets/DRIVE/mask/36_mask.gif
Binary file added example/datasets/DRIVE/mask/37_mask.gif
Binary file added example/datasets/DRIVE/mask/38_mask.gif
Binary file added example/datasets/DRIVE/mask/39_mask.gif
Binary file added example/datasets/DRIVE/mask/40_mask.gif
Loading

0 comments on commit 7a41d6f

Please sign in to comment.