Nz-LTX25-weights
動画編集ソフト AviUtl2 用のプラグイン Nz-Videomni(旧称 Nz-LTX23)が持つ
LTX 2.5用の推論エンジン(engine25)を動かすための、モデル重みファイル一式です。
Nz-Videomni は、Lightricks社の動画生成AIモデル LTX 2.5 を AviUtl2 のタイムライン上から
そのまま使えるようにするプラグインです。
収録しているのは4ファイルです。うち3ファイル(VAE 2点・アップスケーラー 1点)は
上流の配布物をそのままバイト単位でコピーしたもの、残り1ファイル(動画生成本体の
GGUF)は上流のbf16重みをこちら(Rootport)でGGUF形式へ量子化変換した派生物です。
どちらも独自に学習したモデルではありません。テキストエンコーダー(Gemma 4のLTX専用
ファインチューン版をGGUF化したもの)は別リポジトリ
Rootport/Nz-Gemma4-12B-LTX25
に分けてあります(基底モデルのライセンスがApache 2.0で異なるため)。
ファイル一覧
| パス | サイズ | 役割 | 由来 |
|---|---|---|---|
Weights/LTX-2.5-22B-distilled-transformer.gguf |
14,738,670,464 B | 動画を生成する本体(蒸留版)。GGUF形式のQ4_K主体の混合量子化 | 量子化変換(下記「変換来歴」参照) |
VAE/ltx-2.5-video-vae-conv-bf16.safetensors |
1,452,269,922 B | 映像用VAE(潜在空間と実際の映像とを相互に変換する部品) | 上流のバイト単位コピー |
VAE/ltx-2.5-audio-vae-bf16.safetensors |
364,866,540 B | 音声用VAE。LTX 2.5は映像と音声を同時に生成します | 上流のバイト単位コピー |
Upscaler/ltx-2.5-latent-spatial-upscaler-x2-bf16-1.0.safetensors |
995,778,752 B | 生成した動画の解像度を縦横2倍へ引き上げるアップスケーラー | 上流のバイト単位コピー |
上流での正確なパス・コミットハッシュ・SHA-256は NOTICE.md にあります。
変換来歴(GGUF量子化)
Weights/LTX-2.5-22B-distilled-transformer.gguf は、上流の bf16 safetensors
(Lightricks/LTX-2.5 の diffusion_models/ltx-2.5-22b-distilled-transformer-bf16.safetensors、
42,018,190,584 バイト、SHA-256 31eb3cad89b9e54e99dd3baf286f70825ac4f6c660a70d9184d895be76d7bff4)を、
Nz-GGUF-Converter-LTX23
(変換ツール1.2.0、commit 905f348)で GGUF 形式へ変換したものです。
全4,349テンソルのうち、1,658テンソルをQ4_K量子化し、残り2,691テンソル (BF16パススルー2,401・F32パススルー290)は数値精度を落とさずそのまま保持しています。 上流の3ファイル(VAE 2点・アップスケーラー 1点)には変換・量子化を一切行っていません。
使い方
AviUtl2用プラグイン Nz-Videomni の models/LTX25/ フォルダへ、リポジトリのディレクトリ
構造をそのまま展開してください。
models/LTX25/
├ Weights/
│ └ LTX-2.5-22B-distilled-transformer.gguf
├ VAE/
│ ├ ltx-2.5-video-vae-conv-bf16.safetensors
│ └ ltx-2.5-audio-vae-bf16.safetensors
└ Upscaler/
└ ltx-2.5-latent-spatial-upscaler-x2-bf16-1.0.safetensors
テキストエンコーダーは別リポジトリ
Rootport/Nz-Gemma4-12B-LTX25
から取得し、models/LTX25/TextEncoder/ へ展開してください。
LTX 2.3用の重み(Rootport/Nz-LTX23-weights)とは非互換です。 両バージョンの重みは
別ディレクトリ(models/LTX23/ と models/LTX25/)に共存できますが、ファイル同士を
混在させて使うことはできません。
動かす先は本体リポジトリ Nz-Videomni です。
テキストエンコーダーGGUF(Rootport/Nz-Gemma4-12B-LTX25)の隣には、初回起動時に
LTX-2.5-gemma4-12b-text-encoder-Q4_K_M.assets.safetensors(約32MB)が自動生成されます。
これは配布物ではなく手動配置も不要です(詳細は同リポジトリのREADMEを参照してください)。
上流の原典と謝辞
- Lightricks Ltd. — LTX-2 / LTX 2.5 の開発元であり原著作者 (Lightricks/LTX-2.5)
本リポジトリは Lightricks Ltd. の公式配布物ではなく、同社の承認や推奨を受けたものでもありません。
ライセンス
LTX-2.x Community License Agreement(2026年8月11日版)に基づいて配布しています
(全文は LICENSE。ダウンロードして使用した時点で同意したものとみなされます)。
使用制限(第4条および Attachment A)に従う必要があり、年間売上高が1,000万米ドル以上の
事業者は別途 Lightricks Ltd. から商用利用ライセンスを取得してください。使用制限の全文・
帰属表示・出自・変更点・派生物の譲渡に関する通知・AI規制関連の義務は
NOTICE.md にまとめてあります。
English summary
Model weights for the LTX 2.5 inference path (engine25) of
Nz-Videomni (formerly Nz-LTX23), a plugin
for the video editor AviUtl2.
Three of the four files (both VAEs, the upscaler) are verbatim byte-for-byte re-hosts of
upstream LTX 2.5 files. The transformer file is a GGUF quantization produced locally by
Rootport from the upstream bf16 weights, using
Nz-GGUF-Converter-LTX23 (tool 1.2.0,
commit 905f348): 1,658 of 4,349 tensors are Q4_K-quantized; the remaining 2,691 tensors
(2,401 BF16 + 290 F32) are passed through unmodified. See NOTICE.md for the full
provenance table.
The text encoder (a GGUF quantization of the LTX-fine-tuned Gemma 4) is hosted separately at
Rootport/Nz-Gemma4-12B-LTX25 because its
base model carries a different license (Apache 2.0).
Not compatible with LTX 2.3 weights (Rootport/Nz-LTX23-weights) — the two versions live in
separate directories (models/LTX23/ and models/LTX25/) but their files cannot be mixed.
License: LTX-2.x Community License Agreement, dated August 11, 2026 (LICENSE);
use restrictions (Section 4 / Attachment A), the transfer-notice obligations of Section 3.5, and the
AI-regulation obligations of Section 6 are reproduced in NOTICE.md. Entities with
annual revenues of at least $10,000,000 must obtain a separate commercial license from Lightricks
Ltd. Not an official Lightricks distribution, and not endorsed by Lightricks Ltd.
- Downloads last month
- 1
We're not able to determine the quantization variants.
Model tree for Rootport/Nz-LTX25-weights
Base model
Lightricks/LTX-2.5