FuryTMP commited on
Commit
9359c20
·
verified ·
1 Parent(s): b2b97c9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +61 -3
README.md CHANGED
@@ -1,3 +1,61 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ pipeline_tag: image-to-image
4
+ library_name: onnxruntime
5
+ tags:
6
+ - onnx
7
+ - super-resolution
8
+ - upscaling
9
+ - bsrgan
10
+ - image-processing
11
+ ---
12
+
13
+ # BSRGANx2_fp16
14
+
15
+ BSRGANx4_fp16 is an ONNX export of a BSRGAN-based super-resolution model for 4× image upscaling.
16
+
17
+ ## Model Description
18
+
19
+ This repository provides a float16 ONNX version of a BSRGAN super-resolution model intended for deployment in ONNX Runtime based applications and custom upscaling pipelines.
20
+
21
+ ## File
22
+
23
+ - `BSRGANx4_fp16.onnx`
24
+
25
+ ## Intended Use
26
+
27
+ This model is intended for:
28
+
29
+ - 4× image upscaling
30
+ - video frame enhancement
31
+ - ONNX Runtime inference workflows
32
+ - integration into desktop and batch processing pipelines
33
+
34
+ ## Input / Output
35
+
36
+ - Input: low-resolution image tensor prepared by the host application
37
+ - Output: 4× upscaled image
38
+
39
+ Exact preprocessing, color handling, and tensor formatting depend on the application using the model.
40
+
41
+ ## Usage Notes
42
+
43
+ - Designed for ONNX Runtime
44
+ - FP16 export for improved performance on supported hardware
45
+ - Can be used with CUDA, TensorRT, DirectML, or CPU execution providers depending on environment support
46
+
47
+ ## Source / Attribution
48
+
49
+ This repository contains an ONNX-packaged version of a BSRGAN-based super-resolution model.
50
+
51
+ The original BSRGAN project and its upstream licensing are associated with the `cszn/BSRGAN` repository.
52
+
53
+ ## Limitations
54
+
55
+ - GAN-based upscaling may introduce hallucinated or stylized detail
56
+ - Output quality depends on source resolution, compression, and host pipeline implementation
57
+ - Not intended for measurement-accurate reconstruction or scientific imaging use
58
+
59
+ ## License
60
+
61
+ Apache License 2.0