matthewyuan commited on
Commit
d8a9090
·
verified ·
1 Parent(s): 4ccfbd0

Upload Image Quality Fusion model

Browse files
Files changed (3) hide show
  1. README.md +16 -0
  2. config.json +11 -0
  3. model_info.json +21 -0
README.md ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - aesthetic
5
+ - brisque
6
+ - clip
7
+ - fusion
8
+ - image-quality
9
+ - model_hub_mixin
10
+ - pytorch_model_hub_mixin
11
+ ---
12
+
13
+ This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
14
+ - Code: https://github.com/yourusername/image-quality-fusion
15
+ - Paper: [More Information Needed]
16
+ - Docs: [More Information Needed]
config.json ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "clip_embed_dim": 512,
3
+ "clip_model": "ViT-B-32",
4
+ "dropout": 0.3,
5
+ "hidden_dim": 256,
6
+ "model_type": "deep",
7
+ "output_range": [
8
+ 1.0,
9
+ 10.0
10
+ ]
11
+ }
model_info.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "Image Quality Fusion",
3
+ "version": "1.0.0",
4
+ "description": "Multi-modal image quality assessment combining BRISQUE, Aesthetic, and CLIP features",
5
+ "performance": {
6
+ "mse": 2.859546184539795,
7
+ "mae": 1.4086108207702637,
8
+ "r2": 0.2890252470970154
9
+ },
10
+ "training_data": "SPAQ dataset (11,125 smartphone images)",
11
+ "training_metadata": {
12
+ "epoch": 4,
13
+ "val_loss": 2.880443743297032,
14
+ "metrics": {
15
+ "mse": 2.859546184539795,
16
+ "mae": 1.4086108207702637,
17
+ "r2": 0.2890252470970154
18
+ },
19
+ "timestamp": "2025-08-01T03:40:12.719814"
20
+ }
21
+ }