├── .gitignore ├── LICENSE ├── README.md ├── data ├── classification │ ├── cats │ │ ├── adorable-animal-blur-617278.jpg │ │ └── adorable-animal-cat-20787.jpg │ └── dogs │ │ ├── 1.jpg │ │ └── 2.jpg ├── segmentation │ ├── input │ │ ├── ISIC_0000000.jpg │ │ ├── ISIC_0000001.jpg │ │ ├── ISIC_0000003.jpg │ │ ├── ISIC_0000004.jpg │ │ ├── ISIC_0000006.jpg │ │ ├── ISIC_0000007.jpg │ │ ├── ISIC_0000008.jpg │ │ ├── ISIC_0000009.jpg │ │ ├── ISIC_0000011.jpg │ │ ├── ISIC_0000012.jpg │ │ ├── ISIC_0000013.jpg │ │ ├── ISIC_0000014.jpg │ │ ├── ISIC_0000015.jpg │ │ ├── ISIC_0000016.jpg │ │ ├── ISIC_0000017.jpg │ │ ├── ISIC_0000018.jpg │ │ ├── ISIC_0000019.jpg │ │ ├── ISIC_0000020.jpg │ │ ├── ISIC_0000021.jpg │ │ ├── ISIC_0000022.jpg │ │ ├── ISIC_0000023.jpg │ │ ├── ISIC_0000024.jpg │ │ ├── ISIC_0000025.jpg │ │ ├── ISIC_0000026.jpg │ │ ├── ISIC_0000027.jpg │ │ ├── ISIC_0000028.jpg │ │ ├── ISIC_0000029.jpg │ │ └── ISIC_0000030.jpg │ └── masks │ │ ├── ISIC_0000000_segmentation.png │ │ ├── ISIC_0000001_segmentation.png │ │ ├── ISIC_0000003_segmentation.png │ │ ├── ISIC_0000004_segmentation.png │ │ ├── ISIC_0000006_segmentation.png │ │ ├── ISIC_0000007_segmentation.png │ │ ├── ISIC_0000008_segmentation.png │ │ ├── ISIC_0000009_segmentation.png │ │ ├── ISIC_0000011_segmentation.png │ │ ├── ISIC_0000012_segmentation.png │ │ ├── ISIC_0000013_segmentation.png │ │ ├── ISIC_0000014_segmentation.png │ │ ├── ISIC_0000015_segmentation.png │ │ ├── ISIC_0000016_segmentation.png │ │ ├── ISIC_0000017_segmentation.png │ │ ├── ISIC_0000018_segmentation.png │ │ ├── ISIC_0000019_segmentation.png │ │ ├── ISIC_0000020_segmentation.png │ │ ├── ISIC_0000021_segmentation.png │ │ ├── ISIC_0000022_segmentation.png │ │ ├── ISIC_0000023_segmentation.png │ │ ├── ISIC_0000024_segmentation.png │ │ ├── ISIC_0000025_segmentation.png │ │ ├── ISIC_0000026_segmentation.png │ │ ├── ISIC_0000027_segmentation.png │ │ ├── ISIC_0000028_segmentation.png │ │ ├── ISIC_0000029_segmentation.png │ │ └── ISIC_0000030_segmentation.png └── sources.txt └── notebooks ├── 144-Crop.ipynb ├── PyTorch_Data_Augmentation_Image_Classification.ipynb └── PyTorch_Data_Augmentation_Image_Segmentation.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/README.md -------------------------------------------------------------------------------- /data/classification/cats/adorable-animal-blur-617278.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/classification/cats/adorable-animal-blur-617278.jpg -------------------------------------------------------------------------------- /data/classification/cats/adorable-animal-cat-20787.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/classification/cats/adorable-animal-cat-20787.jpg -------------------------------------------------------------------------------- /data/classification/dogs/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/classification/dogs/1.jpg -------------------------------------------------------------------------------- /data/classification/dogs/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/classification/dogs/2.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000000.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000001.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000003.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000004.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000006.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000007.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000007.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000008.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000008.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000009.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000009.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000011.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000011.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000012.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000013.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000013.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000014.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000014.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000015.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000015.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000016.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000017.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000018.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000019.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000019.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000020.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000020.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000021.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000022.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000023.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000024.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000025.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000025.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000026.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000026.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000027.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000027.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000028.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000029.jpg -------------------------------------------------------------------------------- /data/segmentation/input/ISIC_0000030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/input/ISIC_0000030.jpg -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000000_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000000_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000001_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000001_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000003_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000003_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000004_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000004_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000006_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000006_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000007_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000007_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000008_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000008_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000009_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000009_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000011_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000011_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000012_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000012_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000013_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000013_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000014_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000014_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000015_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000015_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000016_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000016_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000017_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000017_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000018_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000018_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000019_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000019_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000020_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000020_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000021_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000021_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000022_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000022_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000023_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000023_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000024_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000024_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000025_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000025_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000026_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000026_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000027_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000027_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000028_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000028_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000029_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000029_segmentation.png -------------------------------------------------------------------------------- /data/segmentation/masks/ISIC_0000030_segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/segmentation/masks/ISIC_0000030_segmentation.png -------------------------------------------------------------------------------- /data/sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/data/sources.txt -------------------------------------------------------------------------------- /notebooks/144-Crop.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/notebooks/144-Crop.ipynb -------------------------------------------------------------------------------- /notebooks/PyTorch_Data_Augmentation_Image_Classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/notebooks/PyTorch_Data_Augmentation_Image_Classification.ipynb -------------------------------------------------------------------------------- /notebooks/PyTorch_Data_Augmentation_Image_Segmentation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fabioperez/pytorch-examples/HEAD/notebooks/PyTorch_Data_Augmentation_Image_Segmentation.ipynb --------------------------------------------------------------------------------