Image Segmentation
Diffusers
Safetensors
remote-sensing
change-detection
semantic-segmentation
diffusion
earth-observation
Instructions to use ali97/noise2map with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use ali97/noise2map with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("ali97/noise2map", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
File size: 1,429 Bytes
8473714 7723ba2 8473714 7723ba2 8473714 7723ba2 8473714 7723ba2 8473714 7723ba2 8473714 7723ba2 8473714 7723ba2 8473714 7723ba2 8473714 7723ba2 8473714 7723ba2 8473714 7723ba2 7c447e6 8473714 7c447e6 7723ba2 8473714 7723ba2 8473714 7723ba2 8473714 7723ba2 8473714 7723ba2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | ---
library_name: diffusers
license: mit
tags:
- remote-sensing
- change-detection
- semantic-segmentation
- diffusion
- earth-observation
pipeline_tag: image-segmentation
---
# Noise2Map — Pretrained Backbones
Pretrained denoising UNet backbones for **Noise2Map: End-to-End Diffusion Model for Semantic Segmentation and Change Detection** (IEEE TGRS 2026).
> Ali Shibli, Andrea Nascetti, Yifang Ban — KTH Royal Institute of Technology
[[GitHub]](https://github.com/alishibli97/noise2map)
---
## Checkpoints
| Subfolder | Description |
|---|---|
| `aid-10k` | Pretrained on 10k AID aerial images (**recommended**) |
| `sat2gen` | Pretrained on MajorTOM Sentinel-2 satellite imagery |
| `imagenet2gen` | ImageNet pretrained |
| `ddpm-church` | Google DDPM church-256 |
---
## Usage
```python
from noise2map import Noise2Map
model = Noise2Map(
in_channels=6, # 3 for semantic segmentation
out_channels=2,
img_scale=256,
pretrained="aid_google_minmaxnorm",
)
```
See the [GitHub repo](https://github.com/alishibli97/noise2map) for full training and evaluation instructions.
---
## Citation
```bibtex
@article{shibli2025noise2map,
title = {Noise2Map: End-to-End Diffusion Model for Semantic Segmentation and Change Detection},
author = {Shibli, Ali and Nascetti, Andrea and Ban, Yifang},
journal = {IEEE Transactions on Geoscience and Remote Sensing},
year = {2026},
}
``` |