a-ml commited on
Commit
ee0ab1e
·
verified ·
1 Parent(s): bc66eda

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -1
README.md CHANGED
@@ -7,4 +7,19 @@ tags:
7
  - coreml
8
  ---
9
 
10
- Based on https://github.com/fabiotosi92/ZipDepth - Converted to CoreML for use on iPhone Devices, Internal testing suggested iPhone 12> will attain good results
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  - coreml
8
  ---
9
 
10
+ Based on https://github.com/fabiotosi92/ZipDepth - Converted to CoreML for use on iPhone Devices, Internal testing suggested iPhone 12> will attain good results
11
+
12
+ 📊 Quantitative Results
13
+
14
+ ZipDepth achieves state-of-the-art accuracy among lightweight embedded models on NYUv2, KITTI, ETH3D, ScanNet, and DIODE, while being significantly more efficient than large pretrained models.
15
+
16
+ ![image](https://cdn-uploads.huggingface.co/production/uploads/682c33f86f59c83933a1f1df/MkETb44ehq4_CYAoA-zbh.png)
17
+
18
+ 🏗️ Architecture
19
+
20
+
21
+ ![image](https://cdn-uploads.huggingface.co/production/uploads/682c33f86f59c83933a1f1df/orDKivbQj0SBw3uLS2_8J.png)
22
+
23
+ The encoder is organized in four hierarchical stages. Stages 1–2 use RepVGG reparameterizable blocks (3×3 + 1×1 + identity branches fused into a single 3×3 at inference) augmented with Strip Pooling Attention for horizontal/vertical context. Stage 3 adds Squeeze-and-Excitation channel attention and a Global Context Block. Stage 4 deepens the representation with additional RepVGG blocks.
24
+
25
+ The neck combines SPPF multi-scale pooling with a Cross-Scale Fusion module. The decoder is a lightweight FPN with a Convex Upsampling head for sub-pixel-accurate depth maps.