Skip to content

Commit

Permalink
Merge pull request #734 from eugenioLR/cifar_docs
Browse files Browse the repository at this point in the history
  • Loading branch information
SarthakJariwala committed Jul 25, 2024
2 parents 2170169 + 9f3dfd7 commit 5be220f
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 32 deletions.
64 changes: 33 additions & 31 deletions docs/Tutorial/Multi Dim 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 5be220f

Please sign in to comment.