akshayka commited on
Commit
3e3f7d8
1 Parent(s): bf1a819

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -32,8 +32,8 @@ def __(mo):
32
  As Grant explains, the seam carving algorithm preserves the shapes of the main content in the image, while killing the "dead space": the image is resized, but the clocks and other content are not resized or deformed.
33
 
34
  This notebook is a Python version of the seam carving algorithm, but it is also a
35
- demonstration of marimo's [persistent caching
36
- feature](https://docs.marimo.io/recipes.html#persistent-caching-for-very-expensive-computations),
37
  which is helpful because the algorithm is compute intensive even when you
38
  use [Numba](https://numba.pydata.org/).
39
 
 
32
  As Grant explains, the seam carving algorithm preserves the shapes of the main content in the image, while killing the "dead space": the image is resized, but the clocks and other content are not resized or deformed.
33
 
34
  This notebook is a Python version of the seam carving algorithm, but it is also a
35
+ demonstration of marimo's [caching
36
+ feature](https://docs.marimo.io/guides/best_practices/performance.html#cache-computations-with-mo-cache),
37
  which is helpful because the algorithm is compute intensive even when you
38
  use [Numba](https://numba.pydata.org/).
39