Add library_name and remove redundant tags
Browse filesThis PR adds the `library_name` to the model card metadata.
The provided code examples and file structure indicate that the model utilizes the `diffusers` library.
Adding this improves discoverability and clarity for users.
Additionally, the "text-to-image" and "image-to-video" tags are redundant given the `pipeline_tag: text-to-video`.
README.md
CHANGED
@@ -1,9 +1,8 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
pipeline_tag: text-to-video
|
|
|
4 |
tags:
|
5 |
-
- text-to-image
|
6 |
-
- image-to-video
|
7 |
- flux
|
8 |
---
|
9 |
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
pipeline_tag: text-to-video
|
4 |
+
library_name: diffusers
|
5 |
tags:
|
|
|
|
|
6 |
- flux
|
7 |
---
|
8 |
|