woerns commited on
Commit
042586f
Β·
verified Β·
1 Parent(s): 868b222

Mirror Edit-tab AI tool weights (GFPGAN, LAMA, ESRGAN, DAT, BiRefNet, DDColor) - Stage 5

Browse files
README.md ADDED
@@ -0,0 +1,50 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - image-editor
5
+ - face-restoration
6
+ - inpainting
7
+ - background-removal
8
+ - upscaling
9
+ - colorization
10
+ - mirror
11
+ library_name: pytorch
12
+ ---
13
+
14
+ # A.I.M.I Image Editor Tools Mirror
15
+
16
+ Central mirror for the weights used by the A.I.M.I image editor tab's one-shot AI operations. Re-hosted from upstream for stable URLs; contents unmodified.
17
+
18
+ ## Folders
19
+
20
+ ### `face-restore/` β€” GFPGAN face restoration
21
+ - `GFPGANv1.4.pth` β€” Tencent GFPGAN v1.4 (Apache 2.0). 332 MB.
22
+ - `detection_Resnet50_Final.pth` β€” facexlib RetinaFace detector (MIT). 104 MB.
23
+ - `parsing_parsenet.pth` β€” facexlib face parser (MIT). 81 MB.
24
+
25
+ ### `removal-lama/` β€” LAMA object removal
26
+ - `big-lama.pt` β€” LAMA inpainting (Apache 2.0, Samsung Moscow). 196 MB.
27
+
28
+ ### `upscalers/` β€” ESRGAN + DAT
29
+ - `RealESRGAN_x4plus.pth` β€” Real-ESRGAN x4 (Apache 2.0, Xintao Wang). 64 MB.
30
+ - `4xNomos8kDAT.onnx` β€” DAT x4 photo-fine-tune (CC-BY-4.0, Phips Nomos8k). 61 MB.
31
+
32
+ ### `bgremove-birefnet/` β€” Background removal
33
+ - `birefnet_fp16.onnx` β€” BiRefNet ONNX (MIT, ZhengPeng7 et al., 2024). 467 MB.
34
+
35
+ ### `colorize-ddcolor/` β€” B&W colorization
36
+ - `ddcolor.onnx` β€” Alibaba DAMO DDColor (Apache 2.0). 870 MB.
37
+
38
+ ## Licenses
39
+
40
+ All components permit commercial use. See attributions.
41
+
42
+ ## Attribution
43
+
44
+ - **GFPGAN**: Tencent ARC (THL A29 Limited / Tencent) β€” *GFPGAN: Towards Real-World Blind Face Restoration with Generative Facial Prior* (2021). Apache 2.0.
45
+ - **facexlib**: Xintao Wang. MIT.
46
+ - **LAMA**: Roman Suvorov, Elizaveta Logacheva, Anton Mashikhin, Anastasia Remizova, Arsenii Ashukha, Aleksei Silvestrov, Naejin Kong, Harshith Goka, Kiwoong Park, Victor Lempitsky β€” *Resolution-robust Large Mask Inpainting with Fourier Convolutions* (WACV 2022). Apache 2.0.
47
+ - **Real-ESRGAN**: Xintao Wang, Liangbin Xie, Chao Dong, Ying Shan β€” *Real-ESRGAN: Training Real-World Blind Super-Resolution with Pure Synthetic Data* (ICCV 2021). Apache 2.0.
48
+ - **DAT**: Zheng Chen, Yulun Zhang, Jinjin Gu, Linghe Kong, Xiaokang Yang, Fisher Yu β€” *Dual Aggregation Transformer Is More Accurate for Super-Resolution* (ICCV 2023). Apache 2.0 code. Photo fine-tune by Phips, released CC-BY-4.0.
49
+ - **BiRefNet**: Peng Zheng, Dehong Gao, Deng-Ping Fan, Li Liu, Jorma Laaksonen, Wanli Ouyang, Nicu Sebe β€” *Bilateral Reference for High-Resolution Dichotomous Image Segmentation* (2024). MIT.
50
+ - **DDColor**: Xiaoyang Kang, Tao Yang, Wenqi Ouyang, Peiran Ren, Lingzhi Li, Xuansong Xie (Alibaba DAMO Academy) β€” *DDColor: Towards Photo-Realistic Image Colorization via Dual Decoders* (ICCV 2023). Apache 2.0.
bgremove-birefnet/birefnet_fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3654c741eb80bd926ada8fed1713b506ccf8d30eb1f6487e87eb9f234f33df09
3
+ size 489666272
colorize-ddcolor/ddcolor.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0a8bc92e8289cb1ff782dca474c5f365cf6da1c009bb2b0d79f28125bc222cca
3
+ size 912105703
face-restore/GFPGANv1.4.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e2cd4703ab14f4d01fd1383a8a8b266f9a5833dacee8e6a79d3bf21a1b6be5ad
3
+ size 348632874
face-restore/detection_Resnet50_Final.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d1de9c2944f2ccddca5f5e010ea5ae64a39845a86311af6fdf30841b0a5a16d
3
+ size 109497761
face-restore/parsing_parsenet.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d558d8d0e42c20224f13cf5a29c79eba2d59913419f945545d8cf7b72920de2
3
+ size 85331193
removal-lama/big-lama.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7ba7aa7ac37a4d41fdbbeba3a2af7ead18058552997e3a3cd1a3b2210c9e6b4c
3
+ size 205803670
upscalers/4xNomos8kDAT.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b135b3fd1a774e4570aecafee682d961279a2e84d19c700d299c514c71ce7ae3
3
+ size 64515025
upscalers/RealESRGAN_x4plus.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4fa0d38905f75ac06eb49a7951b426670021be3018265fd191d2125df9d682f1
3
+ size 67040989