mirror of
https://github.com/THUDM/CogVideo.git
synced 2025-04-06 03:57:56 +08:00
colab link
This commit is contained in:
parent
3e3e918ad2
commit
bdd16a3efb
12
README.md
12
README.md
@ -309,6 +309,18 @@ works have already been adapted for CogVideoX, and we invite everyone to use the
|
|||||||
This open-source repository will guide developers to quickly get started with the basic usage and fine-tuning examples
|
This open-source repository will guide developers to quickly get started with the basic usage and fine-tuning examples
|
||||||
of the **CogVideoX** open-source model.
|
of the **CogVideoX** open-source model.
|
||||||
|
|
||||||
|
### Quick Start with Colab
|
||||||
|
|
||||||
|
Here provide three projects that can be run directly on free Colab T4 instances:
|
||||||
|
|
||||||
|
+ [CogVideoX-5B-T2V-Colab.ipynb](https://colab.research.google.com/drive/1pCe5s0bC_xuXbBlpvIH1z0kfdTLQPzCS?usp=sharing):
|
||||||
|
CogVideoX-5B Text-to-Video Colab code.
|
||||||
|
+ [CogVideoX-5B-T2V-Int8-Colab.ipynb](https://colab.research.google.com/drive/1DUffhcjrU-uz7_cpuJO3E_D4BaJT7OPa?usp=sharing):
|
||||||
|
CogVideoX-5B Quantized Text-to-Video Inference Colab code, which takes about 30 minutes per run.
|
||||||
|
+ [CogVideoX-5B-I2V-Colab.ipynb](https://colab.research.google.com/drive/17CqYCqSwz39nZAX2YyonDxosVKUZGzcX?usp=sharing):
|
||||||
|
CogVideoX-5B Image-to-Video Colab code.
|
||||||
|
|
||||||
|
|
||||||
### Inference
|
### Inference
|
||||||
|
|
||||||
+ [dcli_demo](inference/cli_demo.py): A more detailed inference code explanation, including the significance of
|
+ [dcli_demo](inference/cli_demo.py): A more detailed inference code explanation, including the significance of
|
||||||
|
13
README_ja.md
13
README_ja.md
@ -276,7 +276,18 @@ pipe.vae.enable_tiling()
|
|||||||
|
|
||||||
このオープンソースリポジトリは、**CogVideoX** オープンソースモデルの基本的な使用方法と微調整の例を迅速に開始するためのガイドです。
|
このオープンソースリポジトリは、**CogVideoX** オープンソースモデルの基本的な使用方法と微調整の例を迅速に開始するためのガイドです。
|
||||||
|
|
||||||
### 推論
|
### Colabでのクイックスタート
|
||||||
|
|
||||||
|
無料のColab T4上で直接実行できる3つのプロジェクトを提供しています。
|
||||||
|
|
||||||
|
+ [CogVideoX-5B-T2V-Colab.ipynb](https://colab.research.google.com/drive/1pCe5s0bC_xuXbBlpvIH1z0kfdTLQPzCS?usp=sharing):
|
||||||
|
CogVideoX-5B テキストからビデオへの生成用Colabコード。
|
||||||
|
+ [CogVideoX-5B-T2V-Int8-Colab.ipynb](https://colab.research.google.com/drive/1DUffhcjrU-uz7_cpuJO3E_D4BaJT7OPa?usp=sharing):
|
||||||
|
CogVideoX-5B テキストからビデオへの量子化推論用Colabコード。1回の実行に約30分かかります。
|
||||||
|
+ [CogVideoX-5B-I2V-Colab.ipynb](https://colab.research.google.com/drive/17CqYCqSwz39nZAX2YyonDxosVKUZGzcX?usp=sharing):
|
||||||
|
CogVideoX-5B 画像からビデオへの生成用Colabコード。
|
||||||
|
|
||||||
|
### Inference
|
||||||
|
|
||||||
+ [cli_demo](inference/cli_demo.py): 推論コードの詳細な説明が含まれており、一般的なパラメータの意味についても言及しています。
|
+ [cli_demo](inference/cli_demo.py): 推論コードの詳細な説明が含まれており、一般的なパラメータの意味についても言及しています。
|
||||||
+ [cli_demo_quantization](inference/cli_demo_quantization.py):
|
+ [cli_demo_quantization](inference/cli_demo_quantization.py):
|
||||||
|
@ -268,7 +268,7 @@ pipe.vae.enable_tiling()
|
|||||||
|
|
||||||
### Colab 快速使用
|
### Colab 快速使用
|
||||||
|
|
||||||
我们提供了四个能直接在免费的 Colab T4上 运行的项目
|
这里提供了三个能直接在免费的 Colab T4上 运行的项目
|
||||||
|
|
||||||
+ [CogVideoX-5B-T2V-Colab.ipynb](https://colab.research.google.com/drive/1pCe5s0bC_xuXbBlpvIH1z0kfdTLQPzCS?usp=sharing):
|
+ [CogVideoX-5B-T2V-Colab.ipynb](https://colab.research.google.com/drive/1pCe5s0bC_xuXbBlpvIH1z0kfdTLQPzCS?usp=sharing):
|
||||||
CogVideoX-5B 文字生成视频 Colab 代码。
|
CogVideoX-5B 文字生成视频 Colab 代码。
|
||||||
@ -276,8 +276,6 @@ pipe.vae.enable_tiling()
|
|||||||
CogVideoX-5B 文字生成视频量化推理 Colab 代码,运行一次大约需要30分钟。
|
CogVideoX-5B 文字生成视频量化推理 Colab 代码,运行一次大约需要30分钟。
|
||||||
+ [CogVideoX-5B-I2V-Colab.ipynb](https://colab.research.google.com/drive/17CqYCqSwz39nZAX2YyonDxosVKUZGzcX?usp=sharing):
|
+ [CogVideoX-5B-I2V-Colab.ipynb](https://colab.research.google.com/drive/17CqYCqSwz39nZAX2YyonDxosVKUZGzcX?usp=sharing):
|
||||||
CogVideoX-5B 图片生成视频 Colab 代码。
|
CogVideoX-5B 图片生成视频 Colab 代码。
|
||||||
+ [CogVideoX-5B-V2V-Colab.ipynb](https://colab.research.google.com/drive/1DUffhcjrU-uz7_cpuJO3E_D4BaJT7OPa?usp=sharing):
|
|
||||||
CogVideoX-5B 视频生成视频 Colab 代码。
|
|
||||||
|
|
||||||
### inference
|
### inference
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user