You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+70-46Lines changed: 70 additions & 46 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,17 +4,18 @@ A PyTorch Lightning-based framework for geospatial deep learning with multi-sens
4
4
5
5
## Overview
6
6
7
-
Geo Deep Learning (GDL) is a modular framework designed for semantic segmentation of geospatial imagery using state-of-the-art deep learning models. Built on PyTorch Lightning, it provides efficient training pipelines for multi-sensor data with WebDataset support.
7
+
Geo Deep Learning (GDL) is a modular framework designed to support a wide range of geospatial deep learning tasks such as semantic segmentation, object detection, and regression.
8
+
Built on PyTorch Lightning, it provides efficient training pipelines for multi-sensor data.
python geo_deep_learning/train.py fit --config configs/dofa_config_RGB.yaml
54
+
uv sync --extra cpu
46
55
```
56
+
This creates a virtual environment in `.venv/` and installs all dependencies.
57
+
58
+
3.**Activate the environment:**
59
+
```bash
60
+
# Linux/macOS
61
+
source .venv/bin/activate
62
+
63
+
# Windows
64
+
.venv\Scripts\activate
65
+
```
66
+
67
+
Or use `uv run` to execute commands without manual activation:
68
+
```bash
69
+
uv run python geo_deep_learning/train.py fit --config configs/dofa_config_RGB.yaml
70
+
```
71
+
**Note:***If you prefer to use conda or another environment manager, you can generate a `requirements.txt` file from the dependencies listed in `pyproject.toml` for manual installation.*
47
72
48
73
### Configuration
49
74
50
-
Models are configured via YAML files in `configs/`:
75
+
Models are configured via YAML files in the `configs/` directory:
0 commit comments