Skip to content

Commit

Permalink
Issues when showing examples of the CIFAR10 dataset
Browse files Browse the repository at this point in the history
  • Loading branch information
eugenioLR committed Jul 12, 2024
1 parent 51e56a0 commit 44ec00e
Show file tree
Hide file tree
Showing 10 changed files with 279 additions and 465 deletions.
132 changes: 62 additions & 70 deletions docs/Tutorial/Image Collection.ipynb

Large diffs are not rendered by default.

86 changes: 21 additions & 65 deletions docs/Tutorial/Image Distribution.ipynb

Large diffs are not rendered by default.

62 changes: 28 additions & 34 deletions docs/Tutorial/Image Filters.ipynb

Large diffs are not rendered by default.

277 changes: 79 additions & 198 deletions docs/Tutorial/Image Visualization.ipynb

Large diffs are not rendered by default.

63 changes: 33 additions & 30 deletions docs/Tutorial/Multi Dim Images.ipynb

Large diffs are not rendered by default.

46 changes: 30 additions & 16 deletions docs/Tutorial/ParamGrid.ipynb

Large diffs are not rendered by default.

72 changes: 21 additions & 51 deletions docs/Tutorial/RGB Images.ipynb

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions examples/plot_ImageGrid_3d_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

import seaborn_image as isns

isns.set_image(origin="lower")

cifar_list = isns.load_image("cifar10 list")

g = isns.ImageGrid(cifar_list, cbar=False, height=1, col_wrap=10)
2 changes: 2 additions & 0 deletions examples/plot_ImageGrid_4d.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@

import seaborn_image as isns

isns.set_image(origin="lower")

cifar = isns.load_image("cifar10")

g = isns.ImageGrid(cifar, cbar=False, height=1, col_wrap=10)
2 changes: 1 addition & 1 deletion src/seaborn_image/_grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ class ImageGrid:
:context: close-figs
>>> cifar = isns.load_image("cifar10")
>>> g = isns.ImageGrid(cifar, height=1, col_wrap=6)
>>> g = isns.ImageGrid(cifar, height=1, col_wrap=6, origin="lower")
Map a function to the image data
Expand Down

0 comments on commit 44ec00e

Please sign in to comment.