You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: Submit a bug report to help us improve CogVideoX-Factory / 提交一个 Bug 问题报告来帮助我们改进 CogVideoX-Factory 开源框架
3
+
body:
4
+
- type: textarea
5
+
id: system-info
6
+
attributes:
7
+
label: System Info / 系統信息
8
+
description: Your operating environment / 您的运行环境信息
9
+
placeholder: Includes Cuda version, Diffusers version, Python version, operating system, hardware information (if you suspect a hardware problem)... / 包括Cuda版本,Diffusers,Python版本,操作系统,硬件信息(如果您怀疑是硬件方面的问题)...
10
+
validations:
11
+
required: true
12
+
13
+
- type: checkboxes
14
+
id: information-scripts-examples
15
+
attributes:
16
+
label: Information / 问题信息
17
+
description: 'The problem arises when using: / 问题出现在'
18
+
options:
19
+
- label: "The official example scripts / 官方的示例脚本"
20
+
- label: "My own modified scripts / 我自己修改的脚本和任务"
21
+
22
+
- type: textarea
23
+
id: reproduction
24
+
validations:
25
+
required: true
26
+
attributes:
27
+
label: Reproduction / 复现过程
28
+
description: |
29
+
Please provide a code example that reproduces the problem you encountered, preferably with a minimal reproduction unit.
30
+
If you have code snippets, error messages, stack traces, please provide them here as well.
31
+
Please format your code correctly using code tags. See https://help.github.com/en/github/writing-on-github/creating-and-highlighting-code-blocks#syntax-highlighting
32
+
Do not use screenshots, as they are difficult to read and (more importantly) do not allow others to copy and paste your code.
Copy file name to clipboardExpand all lines: README_zh.md
+38-16Lines changed: 38 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,19 @@
1
1
# CogVideoX Factory 🧪
2
2
3
+
[Read this in English](./README_zh.md)
4
+
3
5
在 24GB GPU 内存下微调 Cog 系列视频模型以生成自定义视频 ⚡️📼
4
6
5
-
TODO:添加有趣的视频结果表
7
+
<tablealign="center">
8
+
<tr>
9
+
<tdalign="center"><videosrc="https://github.com/user-attachments/assets/aad07161-87cb-4784-9e6b-16d06581e3e5">Your browser does not support the video tag.</video></td>
-[`torchao`](https://github.com/pytorch/ao) 中的 `CPUOffloadOptimizer`。您可以阅读它的能力和限制 [此处](https://github.com/pytorch/ao/tree/main/torchao/prototype/low_bit_optim#optimizer-cpu-offload)。简而言之,它允许您使用 CPU 存储可训练的参数和梯度。这导致优化器步骤在 CPU 上进行,需要一个快速的 CPU 优化器,例如 `torch.optim.AdamW(fused=True)` 或在优化器步骤上应用 `torch.compile`。此外,建议不要将模型编译用于训练。梯度裁剪和积累尚不支持。
0 commit comments