Add pipeline tag, library name, and paper link
#1
by
nielsr
HF staff
- opened
README.md
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
---
|
2 |
license: mit
|
|
|
|
|
3 |
---
|
|
|
4 |
<h2>[Installation Free!] Quicker Start with Hugging Face AutoModel</h2>
|
5 |
|
6 |
No need to install this GitHub repo. Ensure that you use the Transformers package of 4.45.0 (`pip install transformers==4.45.0`).
|
@@ -77,7 +80,9 @@ conversation = [
|
|
77 |
{
|
78 |
"role": "user",
|
79 |
"content": [
|
80 |
-
{"type": "text", "text": "Assume you are an image quality evaluator.
|
|
|
|
|
81 |
{"type": "image"},
|
82 |
],
|
83 |
},
|
@@ -112,3 +117,5 @@ print("Weighted average score:", weighted_score)
|
|
112 |
```
|
113 |
|
114 |
To test q-sit on datasets, please refer to evaluation scripts [here](https://github.com/Q-Future/Q-SiT/tree/main/eval_scripts).
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
+
library_name: transformers
|
4 |
+
pipeline_tag: image-to-text
|
5 |
---
|
6 |
+
|
7 |
<h2>[Installation Free!] Quicker Start with Hugging Face AutoModel</h2>
|
8 |
|
9 |
No need to install this GitHub repo. Ensure that you use the Transformers package of 4.45.0 (`pip install transformers==4.45.0`).
|
|
|
80 |
{
|
81 |
"role": "user",
|
82 |
"content": [
|
83 |
+
{"type": "text", "text": "Assume you are an image quality evaluator.
|
84 |
+
Your rating should be chosen from the following five categories: Excellent, Good, Fair, Poor, and Bad (from high to low).
|
85 |
+
How would you rate the quality of this image?"},
|
86 |
{"type": "image"},
|
87 |
],
|
88 |
},
|
|
|
117 |
```
|
118 |
|
119 |
To test q-sit on datasets, please refer to evaluation scripts [here](https://github.com/Q-Future/Q-SiT/tree/main/eval_scripts).
|
120 |
+
|
121 |
+
This model is described in [](https://huggingface.co/papers/2503.09197). The code is available at https://github.com/Q-Future/Q-SiT.
|