-
Notifications
You must be signed in to change notification settings - Fork 386
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into tutorial_be
- Loading branch information
Showing
45 changed files
with
3,492 additions
and
453 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
- name: Build project | ||
run: python3 -m build | ||
- name: Upload artifacts | ||
uses: actions/upload-artifact@v4.4.3 | ||
uses: actions/upload-artifact@v4.5.0 | ||
with: | ||
name: pypi-dist | ||
path: dist/ | ||
|
@@ -42,4 +42,4 @@ jobs: | |
name: pypi-dist | ||
path: dist/ | ||
- name: Publish to PyPI | ||
uses: pypa/[email protected].2 | ||
uses: pypa/[email protected].3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
Basic Usage | ||
=========== | ||
|
||
The following tutorials introduce the basic concepts and components of TorchGeo: | ||
|
||
* `Transforms <transforms.ipynb>`_: Preprocessing and data augmentation transforms for geospatial data | ||
* `Spectral Indices <indices.ipynb>`_: Visualizing and appending spectral indices | ||
* `Pretrained Weights <pretrained_weights.ipynb>`_: Models and pretrained weights | ||
* `Lightning Trainers <trainers.ipynb>`_: PyTorch Lightning data modules and trainers | ||
* `Command-Line Interface <cli.ipynb>`_: TorchGeo's command-line interface | ||
|
||
.. toctree:: | ||
:hidden: | ||
:maxdepth: 1 | ||
|
||
transforms | ||
indices | ||
pretrained_weights | ||
trainers | ||
cli |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
Case Studies | ||
============ | ||
|
||
The following case studies present end-to-end workflows for common use cases of geospatial machine learning: | ||
|
||
* `Earth Surface Water <earth_surface_water.ipynb>`_: A workflow for mapping surface water, including lakes and rivers | ||
|
||
Do you have a use case that is missing from this list? Please open a pull request to add tutorials for your own use cases. | ||
|
||
.. toctree:: | ||
:hidden: | ||
:maxdepth: 1 | ||
|
||
earth_surface_water |
Oops, something went wrong.