mirror of
https://github.com/THUDM/CogVideo.git
synced 2025-04-06 03:57:56 +08:00
commit
5e3e3aabe0
@ -189,7 +189,7 @@ models we currently offer, along with their foundational information.
|
|||||||
<tr>
|
<tr>
|
||||||
<td style="text-align: center;">Video Resolution</td>
|
<td style="text-align: center;">Video Resolution</td>
|
||||||
<td colspan="1" style="text-align: center;">1360 * 768</td>
|
<td colspan="1" style="text-align: center;">1360 * 768</td>
|
||||||
<td colspan="1" style="text-align: center;">256 <= W <=1360<br> 256 <= H <=768<br> W,H % 16 == 0</td>
|
<td colspan="1" style="text-align: center;"> Min(W, H) = 768 <br> 768 ≤ Max(W, H) ≤ 1360 <br> Max(W, H) % 16 = 0 </td>
|
||||||
<td colspan="3" style="text-align: center;">720 * 480</td>
|
<td colspan="3" style="text-align: center;">720 * 480</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -181,7 +181,7 @@ CogVideoXは、[清影](https://chatglm.cn/video?fr=osm_cogvideox) と同源の
|
|||||||
<tr>
|
<tr>
|
||||||
<td style="text-align: center;">ビデオ解像度</td>
|
<td style="text-align: center;">ビデオ解像度</td>
|
||||||
<td colspan="1" style="text-align: center;">1360 * 768</td>
|
<td colspan="1" style="text-align: center;">1360 * 768</td>
|
||||||
<td colspan="1" style="text-align: center;">256 <= W <=1360<br> 256 <= H <=768<br> W,H % 16 == 0</td>
|
<td colspan="1" style="text-align: center;"> Min(W, H) = 768 <br> 768 ≤ Max(W, H) ≤ 1360 <br> Max(W, H) % 16 = 0 </td>
|
||||||
<td colspan="3" style="text-align: center;">720 * 480</td>
|
<td colspan="3" style="text-align: center;">720 * 480</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -171,7 +171,7 @@ CogVideoX是 [清影](https://chatglm.cn/video?fr=osm_cogvideox) 同源的开源
|
|||||||
<tr>
|
<tr>
|
||||||
<td style="text-align: center;">视频分辨率</td>
|
<td style="text-align: center;">视频分辨率</td>
|
||||||
<td colspan="1" style="text-align: center;">1360 * 768</td>
|
<td colspan="1" style="text-align: center;">1360 * 768</td>
|
||||||
<td colspan="1" style="text-align: center;">256 <= W <=1360<br> 256 <= H <=768<br> W,H % 16 == 0</td>
|
<td colspan="1" style="text-align: center;"> Min(W, H) = 768 <br> 768 ≤ Max(W, H) ≤ 1360 <br> Max(W, H) % 16 = 0 </td>
|
||||||
<td colspan="3" style="text-align: center;">720 * 480</td>
|
<td colspan="3" style="text-align: center;">720 * 480</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -78,8 +78,9 @@ def main():
|
|||||||
num_frames=input_config.num_frames,
|
num_frames=input_config.num_frames,
|
||||||
prompt=input_config.prompt,
|
prompt=input_config.prompt,
|
||||||
num_inference_steps=input_config.num_inference_steps,
|
num_inference_steps=input_config.num_inference_steps,
|
||||||
generator=torch.Generator(device="cuda").manual_seed(input_config.seed),
|
generator=torch.Generator().manual_seed(input_config.seed),
|
||||||
guidance_scale=6,
|
guidance_scale=6,
|
||||||
|
use_dynamic_cfg=True,
|
||||||
).frames[0]
|
).frames[0]
|
||||||
|
|
||||||
end_time = time.time()
|
end_time = time.time()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user