nielsr HF Staff commited on
Commit
0d4b8a3
ยท
verified ยท
1 Parent(s): b27236b

Update model card with metadata and usage instructions

Browse files

Hi! I'm Niels from the Hugging Face community team. I've updated the model card for TeleStyle to improve its discoverability and usability.

Key changes:
1. Added `library_name: diffusers` to the metadata based on the project's dependencies.
2. Added the `arxiv` ID for better paper integration.
3. Included sample usage (CLI commands) for both image and video stylization from your GitHub repository.
4. Refined the metadata tags.

This should make it easier for users to understand and run your model!

Files changed (1) hide show
  1. README.md +33 -7
README.md CHANGED
@@ -1,16 +1,20 @@
1
  ---
2
- license: apache-2.0
3
- language:
4
- - en
5
  base_model:
6
  - Wan-AI/Wan2.1-T2V-1.3B
7
  - Qwen/Qwen-Image-Edit-2509
8
- pipeline_tag: any-to-any
 
 
 
 
 
9
  tags:
10
  - video
11
  - image
12
  - stylization
 
13
  ---
 
14
  <div align="center">
15
 
16
  <h1><b>TeleStyle: Content-Preserving Style Transfer in Images and Videos</b></h1>
@@ -36,19 +40,41 @@ Shiwen Zhang, Xiaoyan Yang, Bojia Zi, Haibin Huang, Chi Zhang, Xuelong Li
36
  </a>
37
  </p>
38
 
 
39
 
40
- ## ๐Ÿ””News
41
 
42
  - [2026-01-28]: Released [Code](https://github.com/Tele-AI/TeleStyle), [Model](https://huggingface.co/Tele-AI/TeleStyle), [Paper](http://arxiv.org/abs/2601.20175).
43
 
44
  ## How to use
45
 
46
- - Please refer to [**๐Ÿ”— GitHub**](https://github.com/Tele-AI/TeleStyle) for usage.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
 
 
48
 
49
  ## ๐ŸŒŸ Citation
50
 
51
- If you find UniVideo useful for your research and applications, please cite using this BibTeX:
52
 
53
  ```bibtex
54
  @article{teleai2026telestyle,
 
1
  ---
 
 
 
2
  base_model:
3
  - Wan-AI/Wan2.1-T2V-1.3B
4
  - Qwen/Qwen-Image-Edit-2509
5
+ language:
6
+ - en
7
+ license: apache-2.0
8
+ pipeline_tag: other
9
+ library_name: diffusers
10
+ arxiv: 2601.20175
11
  tags:
12
  - video
13
  - image
14
  - stylization
15
+ - style-transfer
16
  ---
17
+
18
  <div align="center">
19
 
20
  <h1><b>TeleStyle: Content-Preserving Style Transfer in Images and Videos</b></h1>
 
40
  </a>
41
  </p>
42
 
43
+ TeleStyle is a lightweight yet effective model for both image and video stylization. Built upon Qwen-Image-Edit, it leverages a Curriculum Continual Learning framework to achieve high-fidelity content preservation and style customization across diverse, in-the-wild style categories.
44
 
45
+ ## ๐Ÿ”” News
46
 
47
  - [2026-01-28]: Released [Code](https://github.com/Tele-AI/TeleStyle), [Model](https://huggingface.co/Tele-AI/TeleStyle), [Paper](http://arxiv.org/abs/2601.20175).
48
 
49
  ## How to use
50
 
51
+ ### 1. Installation
52
+
53
+ ```bash
54
+ pip install -r requirements.txt
55
+ ```
56
+
57
+ ### 2. Inference
58
+
59
+ We provide inference scripts for running TeleStyle on demo inputs for each task:
60
+
61
+ #### Image Stylization
62
+ To generate a stylized image using a reference style image and a content image:
63
+ ```bash
64
+ python telestyleimage_inference.py --image_path assets/example/0.png --style_path videos/1.png --output_path results/image.png
65
+ ```
66
+
67
+ #### Video Stylization
68
+ To generate a stylized video using a stylized first frame and a content video:
69
+ ```bash
70
+ python telestylevideo_inference.py --video_path assets/example/1.mp4 --style_path assets/example/1-0.png --output_path results/video.mp4
71
+ ```
72
 
73
+ For more details, please refer to the [**๐Ÿ”— GitHub**](https://github.com/Tele-AI/TeleStyle) repository.
74
 
75
  ## ๐ŸŒŸ Citation
76
 
77
+ If you find TeleStyle useful for your research and applications, please cite using this BibTeX:
78
 
79
  ```bibtex
80
  @article{teleai2026telestyle,