aycaduran commited on
Commit
95a5ae7
·
verified ·
1 Parent(s): 09aac3a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +74 -3
README.md CHANGED
@@ -1,3 +1,74 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ license: mit
4
+ tags:
5
+ - computer-vision
6
+ - image-segmentation
7
+ - semantic-segmentation
8
+ - instance-segmentation
9
+ - segformer
10
+ - mask-rcnn
11
+ - mmsegmentation
12
+ - detectron2
13
+ - photovoltaics
14
+ - bipv
15
+ - building-facades
16
+ library_name: pytorch
17
+ pipeline_tag: image-segmentation
18
+ ---
19
+
20
+ # BIPVfinder
21
+
22
+ BIPVfinder provides deep-learning checkpoints for segmenting **building-integrated photovoltaics (BIPV)** on building façades from street-level and web imagery. The associated codebase (training + evaluation + processing) lives in the GitHub repository linked below.
23
+
24
+ - Code: https://github.com/ycdrn/BIPVfinder
25
+ - Training dataset repo: https://github.com/ycdrn/bipv_facades
26
+ - Checkpoints in this HF repo: `model_ckpts.zip`
27
+
28
+ ## Model summary
29
+
30
+ This Hub repository hosts fine-tuned checkpoints used in:
31
+
32
+ > *Deep learning for BIPV segmentation on facades: Comparison with human annotations across facade designs* (Building and Environment, 2026).
33
+ DOI: https://doi.org/10.1016/j.buildenv.2026.114292
34
+
35
+ Two architectures are referenced in the project:
36
+ - **SegFormer** (semantic segmentation)
37
+ - **Mask R-CNN** (instance segmentation)
38
+
39
+ ## Intended use
40
+
41
+ Primary intended uses:
42
+ - Research on façade PV / BIPV recognition and segmentation
43
+ - Automated BIPV mask creation as an input to downstream tasks such as PV area estimation and energy-yield estimation (see the accompanying paper/code)
44
+
45
+ ## Training data
46
+
47
+ Models were trained using the **BIPV Facades Dataset** (curated set of 400 BIPV façade projects; see dataset repository).
48
+ - Dataset repo: https://github.com/ycdrn/bipv_facades
49
+
50
+ ## How to use
51
+
52
+ From this repo, download `model_ckpts.zip` and extract it locally, e.g.:
53
+
54
+ ```bash
55
+ unzip model_ckpts.zip -d model_ckpts
56
+ ```
57
+
58
+ Then place the downloaded ckpts in the respective folder: [/files/03_model_checkpoints/](https://github.com/ycdrn/BIPVfinder/tree/82116e240f9e786cedf57d532110bc3066d721d0/files/03_model_checkpoints).
59
+ Please check the [paper repository](https://github.com/ycdrn/BIPVfinder) for further details and inference.
60
+
61
+ ## Citation
62
+
63
+ ```bibtex
64
+ @article{DURAN2026114292,
65
+ title = {Deep learning for BIPV segmentation on facades: Comparison with human annotations across facade designs},
66
+ journal = {Building and Environment},
67
+ pages = {114292},
68
+ year = {2026},
69
+ issn = {0360-1323},
70
+ doi = {10.1016/j.buildenv.2026.114292},
71
+ url = {https://www.sciencedirect.com/science/article/pii/S0360132326000983},
72
+ author = {Ayca Duran and Pedram Mirabian and Panagiotis Karapiperis and Christoph Waibel and Bernd Bickel and Arno Schlueter}
73
+ }
74
+ ```