Skip to content

Commit 106db85

Browse files
author
Maxime Lenormand
committed
Fixing link redirects
1 parent bb4c58b commit 106db85

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

blog/2024-09-05-dl4eo/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ _https://en.wikipedia.org/wiki/Mercator_projection_
9898

9999
We read the content of the Pleiades image in its original projection (either the raw geometry or a transverse mercator projection in which the central meridian would pass through the center of the image). In this case, the resolution is guaranteed to be the correct native resolution of the image.
100100

101-
The UDF gets the Pleiades image in the correct projection, then calls the prediction API, and finally returns the predictions in a GeoDataFrame which will be dynamically rendered on the map. For performance, we have added the [@fused.cache](/core-concepts/content-management/cache/) decorators which make the function automatically cache results for identical parameters. The predictions are returned in pixels in the source image and then converted into lat/long so they render on a map. Then, when we look at the result in the workbench, we get some issues at the border of the tiles.
101+
The UDF gets the Pleiades image in the correct projection, then calls the prediction API, and finally returns the predictions in a GeoDataFrame which will be dynamically rendered on the map. For performance, we have added the [@fused.cache](/core-concepts/cache/) decorators which make the function automatically cache results for identical parameters. The predictions are returned in pixels in the source image and then converted into lat/long so they render on a map. Then, when we look at the result in the workbench, we get some issues at the border of the tiles.
102102

103103
import ImagePredicTileFix from '/blog/2024-09-05-dl4eo/tilingv3.png';
104104

blog/2024-09-12-danieljahn/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ I'll admit, this one is a bit of a tongue-in-cheek.
102102
[Mapbox](https://www.mapbox.com/) is a powerful platform and Fused is not on a mission to replace it.
103103

104104
However, it does get the point across: Fused can power a web map that obtains data from any source and processes the data on the fly as the user pans the map.
105-
With its [caching layer](/core-concepts/content-management/cache/), the user can get the results of previously computed locations almost instantaneously.
105+
With its [caching layer](/core-concepts/cache/), the user can get the results of previously computed locations almost instantaneously.
106106

107107
Since any Fused UDF automatically serves raster and vector tiles, Fused can also be [used with Mapbox GL JS](/user-guide/out/mapbox/).
108108

docs/core-concepts/data_ingestion/why-ingestion.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ Example of data you don't need to ingest: 50Mb `.parquet`
251251

252252
### Using cache as a single-use "ingester"
253253

254-
We could actually significantly speed up the above example where we loaded the AIS data as a CSV without running `fused.ingest()`, by using [cache](/core-concepts/content-management/cache/):
254+
We could actually significantly speed up the above example where we loaded the AIS data as a CSV without running `fused.ingest()`, by using [cache](/core-concepts/cache/):
255255

256256
```python {9-13} showLineNumbers
257257
@fused.udf
@@ -282,7 +282,7 @@ import ImgCSVCached from '@site/docs/core-concepts/data_ingestion/cached_csv_com
282282
<img src={ImgCSVCached} alt="Comparing first CSV read to cached CSV read" style={{width: 600}} />
283283
</div>
284284

285-
We're using [`@fused.cache`](/core-concepts/content-management/cache/) to cache the result of `load_csv()` which is the same regardless of our `bbox`, so this allows us to save an 'intermediate' result on disk.
285+
We're using [`@fused.cache`](/core-concepts/cache/) to cache the result of `load_csv()` which is the same regardless of our `bbox`, so this allows us to save an 'intermediate' result on disk.
286286
There are some limitations to this approach though:
287287
- This cache is emptied after 24h.
288288
- This cache is overwritten any time you change the cached function or its inputs

docs/core-concepts/write.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ An exception to this convention is for modules used for function annotation, whi
5151

5252
## `@fused.cache` decorator
5353

54-
Use the [@fused.cache](/core-concepts/content-management/cache/) decorator to persist a function's output across runs so UDFs run faster.
54+
Use the [@fused.cache](/core-concepts/cache/) decorator to persist a function's output across runs so UDFs run faster.
5555

5656

5757
```python showLineNumbers

docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Fused is an end-to-end cloud platform for data analytics, build around [User Def
2121
To speed up Data Science pipelines we need a few things, all of which we're working on:
2222
- [Ingestion of data](/core-concepts/data_ingestion/) into Cloud Native formats
2323
- [Serverless compute engine](/core-concepts/write/) for User Defined Functions
24-
- [Caching of data](/core-concepts/content-management/cache/) for faster iteration & reducing cost of compute
24+
- [Caching of data](/core-concepts/cache/) for faster iteration & reducing cost of compute
2525
- [Workbench](/workbench/overview/) our browser-based IDE to develop & iterate on UDFs with a map view
2626
- [Batch run](/core-concepts/run-udfs/run_large/) of many User Defined Functions to scale code to any dataset size in a few lines of code
2727

docs/quickstart.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ Now you can dive deeper into more advanced topics:
261261
- Take a deeper look at [Workbench](/workbench/overview/)
262262
- Look into the [UDF Catalog](/workbench/udf-catalog/) to find UDFs from the community you could leverage
263263
- Dive into the `fused` [Python SDK](/python-sdk/)
264-
- Learn about how [Fused handles caching](/core-concepts/content-management/cache/)
264+
- Learn about how [Fused handles caching](/core-concepts/cache/)
265265
- Join [Discord](https://bit.ly/fused-discord) to connect with the community and discover what's possible
266266

267267
Welcome aboard! 🚢

docs/user-guide/examples/dark-vessel-detection.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ We've simplified the process quite a bit here, you could also:
510510
Before adding any new functionality, we're going to clean our UDF up a bit more:
511511
- Move some of the functionality into separate functions
512512
- Adding common error catching (so our UDF doesn't fail if no Sentinel 1 images are found within our AOI + date range if it's too narrow)
513-
- Add a [cache decorator](/core-concepts/content-management/cache/) to code functions that retrieve data to speed up the UDF & reduce costs.
513+
- Add a [cache decorator](/core-concepts/cache/) to code functions that retrieve data to speed up the UDF & reduce costs.
514514

515515
This will allow us to keep our UDF more readable (by abstracting code away) and more responsive. Cached functions store their result to disk, which makes a common query a lot more responsive and less expensive by using less compute
516516

0 commit comments

Comments
 (0)