Jacid23 commited on
Commit
23c6e00
Β·
verified Β·
1 Parent(s): 437d8e0

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +90 -0
README.md ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-sa-4.0
3
+ tags:
4
+ - third-eye
5
+ - image-restoration
6
+ - video-restoration
7
+ - super-resolution
8
+ - denoise
9
+ - deblur
10
+ - colorization
11
+ - frame-interpolation
12
+ library_name: pytorch
13
+ ---
14
+
15
+ # Third Eye - Model Weights Bundle
16
+
17
+ Reliable mirror of AI model weights used by [Third Eye](https://github.com/Jacid23/Third_Eye), a media organizer with hidden editing dimensions.
18
+
19
+ These weights are downloaded automatically by `scripts/fetch_models.py` during installation. Self-hosting them here removes dependency on upstream Google Drive links and unreliable community mirrors.
20
+
21
+ ## License
22
+
23
+ The bundle is tagged **CC BY-NC-SA 4.0** β€” the most restrictive license among the included models. By using these weights you agree to:
24
+
25
+ - **Non-commercial use only**
26
+ - Provide **attribution** to the original authors (listed below)
27
+ - Distribute any derivatives under the **same license**
28
+
29
+ ## Files and Attribution
30
+
31
+ Every weight in this repo is a verbatim copy of the file released by its original author. Original sources and licenses below.
32
+
33
+ ### Denoise / Deblur (NAFNet)
34
+
35
+ - `NAFNet-SIDD-width64.pth` β€” denoise model
36
+ - `NAFNet-REDS-width64.pth` β€” deblur model
37
+
38
+ **Authors:** Liangyu Chen, Xiaojie Chu, Xiangyu Zhang, Jian Sun (Megvii Research)
39
+ **Upstream:** https://github.com/megvii-research/NAFNet
40
+ **License:** MIT
41
+ **Paper:** "Simple Baselines for Image Restoration" (ECCV 2022)
42
+
43
+ ### Frame Interpolation (RIFE)
44
+
45
+ - `flownet.pkl` β€” RIFE 4.6 weights
46
+
47
+ **Authors:** Zhewei Huang et al. (Practical-RIFE team)
48
+ **Upstream:** https://github.com/hzwer/Practical-RIFE
49
+ **License:** MIT (code) / non-commercial (weights, per author note)
50
+ **Paper:** "Real-Time Intermediate Flow Estimation for Video Frame Interpolation"
51
+
52
+ ### Community Upscale Models
53
+
54
+ - `4x-UltraSharp.pth` β€” community upscale model by Kim2091
55
+ - `foolhardy_Remacri.pth` β€” community model by foolhardy
56
+ - `RealisticRescaler_100000_G.pth` β€” community upscale model
57
+ - `4x-UniScale-Balanced [72000g].pth` β€” UniScale community variant
58
+ - `4x-UniScale-Strong [42400g].pth` β€” UniScale community variant
59
+
60
+ **Upstream catalog:** https://openmodeldb.info/
61
+ **License:** CC BY-NC-SA 4.0 (community convention for ESRGAN-derived models)
62
+
63
+ Architecture is RRDBNet from Real-ESRGAN. Original Real-ESRGAN architecture:
64
+ - **Authors:** Xintao Wang et al. (Tencent ARC Lab)
65
+ - **Upstream:** https://github.com/xinntao/Real-ESRGAN
66
+ - **License:** BSD-3-Clause
67
+
68
+ ## Usage
69
+
70
+ Download programmatically via the Third Eye installer:
71
+
72
+ ```bat
73
+ install.bat
74
+ ```
75
+
76
+ Or directly:
77
+
78
+ ```bash
79
+ wget https://huggingface.co/Jacid23/third-eye-models/resolve/main/NAFNet-SIDD-width64.pth
80
+ ```
81
+
82
+ ## Source Code
83
+
84
+ Third Eye source: https://github.com/Jacid23/Third_Eye
85
+
86
+ Model download script: `scripts/fetch_models.py`
87
+
88
+ ## Acknowledgements
89
+
90
+ All credit for the models goes to their original authors and research teams. This repository exists only to provide reliable download mirrors for an open-source application that integrates these models. No modifications have been made to any weight file.