frankleeeee commited on
Commit
11b895d
1 Parent(s): 31db6d8

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +32 -3
README.md CHANGED
@@ -1,3 +1,32 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+
5
+
6
+ <p align="center">
7
+ <img src="https://cdn-uploads.huggingface.co/production/uploads/63993d721fad4d6eb265d999/UXleJWJExX2WlBizxzYxn.png" width="250"/>
8
+ </p>
9
+
10
+
11
+ # Open-Sora STDiT3 Stage3 Weights
12
+
13
+ This repository stores the weights of the STDiT3 released by the Open-Sora team. You can visit our project at:
14
+
15
+ - [GitHub](https://github.com/hpcaitech/Open-Sora)
16
+ - [Gallery](https://hpcaitech.github.io/Open-Sora/)
17
+ - [Gradio Demo](https://huggingface.co/spaces/hpcai-tech/open-sora)
18
+
19
+ We recommend you to use this weights in the [Open-Sora codebase]((https://github.com/hpcaitech/Open-Sora)). If you want to use STDiT in your own project, you may use the following sample code.
20
+
21
+ 1. Install `opensora`
22
+
23
+ ```bash
24
+ pip install git+https://github.com/hpcaitech/Open-Sora.git
25
+ ```
26
+
27
+ 2. Use `STDiT3` in your own code
28
+
29
+ ```python
30
+ from opensora.models.stdit.stdit3 import STDiT3
31
+ stdit = STDiT3.from_pretrained("hpcai-tech/OpenSora-STDiT-v3-stage3")
32
+ ```