Buckets:

download
raw
22.1 kB
import{s as Qe,n as et,o as tt}from"../chunks/scheduler.53228c21.js";import{S as ot,i as nt,e as i,s as r,c as u,h as rt,a as d,d as t,b as s,f as _,g as p,j as $,k as v,l as n,m as l,n as m,t as f,o as g,p as h}from"../chunks/index.cac5d66a.js";import{C as st}from"../chunks/CopyLLMTxtMenu.0ef49226.js";import{D as y}from"../chunks/Docstring.9de32ff4.js";import{C as at}from"../chunks/CodeBlock.606cbaf4.js";import{H as ye,E as it}from"../chunks/MermaidChart.svelte_svelte_type_style_lang.48d5cb47.js";function dt(qe){let x,se,ne,ae,L,ie,T,de,A,Ge='The 3D variational autoencoder (VAE) model with KL loss used in <a href="https://github.com/THUDM/CogVideo" rel="nofollow">CogVideoX</a> was introduced in <a href="https://github.com/THUDM/CogVideo/blob/main/resources/CogVideoX.pdf" rel="nofollow">CogVideoX: Text-to-Video Diffusion Models with An Expert Transformer</a> by Tsinghua University &amp; ZhipuAI.',le,X,Ie="The model can be loaded with the following code snippet.",ce,k,ue,K,pe,a,M,Ve,S,He=`A VAE model with KL loss for encoding images into latents and decoding latent representations into images. Used in
<a href="https://github.com/THUDM/CogVideo" rel="nofollow">CogVideoX</a>.`,De,B,Pe=`This model inherits from <a href="/docs/diffusers/pr_13921/en/api/models/overview#diffusers.ModelMixin">ModelMixin</a>. Check the superclass documentation for it’s generic methods implemented
for all models (such as downloading or saving).`,Le,W,E,Te,j,U,Ae,V,N,Xe,F,Ze=`Enable tiled VAE decoding. When this option is enabled, the VAE will split the input tensor into tiles to
compute decoding and encoding in several steps. This is useful for saving a large amount of memory and to allow
processing larger images.`,ke,R,O,Ke,D,z,Me,Y,Se="Decode a batch of images using a tiled decoder.",Ee,b,q,Ue,J,Be="Encode a batch of images using a tiled encoder.",Ne,Q,We=`When this option is enabled, the VAE will split the input tensor into tiles to compute encoding in several
steps. This is useful to keep memory use constant regardless of image size. The end result of tiled encoding is
different from non-tiled encoding because each tile uses a different encoder. To avoid tiling artifacts, the
tiles overlap and are blended together to form a smooth output. You may still see tile-sized changes in the
output, but they should be much less noticeable.`,me,G,fe,w,I,Oe,ee,je="Output of AutoencoderKL encoding method.",ge,H,he,C,P,ze,te,Fe="Output of decoding method.",_e,Z,ve,re,be;return L=new st({props:{containerStyle:"float: right; margin-left: 10px; display: inline-flex; position: relative; z-index: 10;"}}),T=new ye({props:{title:"AutoencoderKLCogVideoX",local:"autoencoderklcogvideox",headingTag:"h1"}}),k=new at({props:{code:"ZnJvbSUyMGRpZmZ1c2VycyUyMGltcG9ydCUyMEF1dG9lbmNvZGVyS0xDb2dWaWRlb1glMEElMEF2YWUlMjAlM0QlMjBBdXRvZW5jb2RlcktMQ29nVmlkZW9YLmZyb21fcHJldHJhaW5lZCglMjJUSFVETSUyRkNvZ1ZpZGVvWC0yYiUyMiUyQyUyMHN1YmZvbGRlciUzRCUyMnZhZSUyMiUyQyUyMHRvcmNoX2R0eXBlJTNEdG9yY2guZmxvYXQxNikudG8oJTIyY3VkYSUyMik=",highlighted:`<span class="hljs-keyword">from</span> diffusers <span class="hljs-keyword">import</span> AutoencoderKLCogVideoX
vae = AutoencoderKLCogVideoX.from_pretrained(<span class="hljs-string">&quot;THUDM/CogVideoX-2b&quot;</span>, subfolder=<span class="hljs-string">&quot;vae&quot;</span>, torch_dtype=torch.float16).to(<span class="hljs-string">&quot;cuda&quot;</span>)`,lang:"python",wrap:!1}}),K=new ye({props:{title:"AutoencoderKLCogVideoX",local:"diffusers.AutoencoderKLCogVideoX",headingTag:"h2"}}),M=new y({props:{name:"class diffusers.AutoencoderKLCogVideoX",anchor:"diffusers.AutoencoderKLCogVideoX",parameters:[{name:"in_channels",val:": int = 3"},{name:"out_channels",val:": int = 3"},{name:"down_block_types",val:": tuple = ('CogVideoXDownBlock3D', 'CogVideoXDownBlock3D', 'CogVideoXDownBlock3D', 'CogVideoXDownBlock3D')"},{name:"up_block_types",val:": tuple = ('CogVideoXUpBlock3D', 'CogVideoXUpBlock3D', 'CogVideoXUpBlock3D', 'CogVideoXUpBlock3D')"},{name:"block_out_channels",val:": tuple = (128, 256, 256, 512)"},{name:"latent_channels",val:": int = 16"},{name:"layers_per_block",val:": int = 3"},{name:"act_fn",val:": str = 'silu'"},{name:"norm_eps",val:": float = 1e-06"},{name:"norm_num_groups",val:": int = 32"},{name:"temporal_compression_ratio",val:": float = 4"},{name:"sample_height",val:": int = 480"},{name:"sample_width",val:": int = 720"},{name:"scaling_factor",val:": float = 1.15258426"},{name:"shift_factor",val:": float | None = None"},{name:"latents_mean",val:": tuple[float] | None = None"},{name:"latents_std",val:": tuple[float] | None = None"},{name:"force_upcast",val:": float = True"},{name:"use_quant_conv",val:": bool = False"},{name:"use_post_quant_conv",val:": bool = False"},{name:"invert_scale_latents",val:": bool = False"}],parametersDescription:[{anchor:"diffusers.AutoencoderKLCogVideoX.in_channels",description:"<strong>in_channels</strong> (int, <em>optional</em>, defaults to 3) &#x2014; Number of channels in the input image.",name:"in_channels"},{anchor:"diffusers.AutoencoderKLCogVideoX.out_channels",description:"<strong>out_channels</strong> (int, <em>optional</em>, defaults to 3) &#x2014; Number of channels in the output.",name:"out_channels"},{anchor:"diffusers.AutoencoderKLCogVideoX.down_block_types",description:`<strong>down_block_types</strong> (<code>tuple[str]</code>, <em>optional</em>, defaults to <code>(&quot;DownEncoderBlock2D&quot;,)</code>) &#x2014;
tuple of downsample block types.`,name:"down_block_types"},{anchor:"diffusers.AutoencoderKLCogVideoX.up_block_types",description:`<strong>up_block_types</strong> (<code>tuple[str]</code>, <em>optional</em>, defaults to <code>(&quot;UpDecoderBlock2D&quot;,)</code>) &#x2014;
tuple of upsample block types.`,name:"up_block_types"},{anchor:"diffusers.AutoencoderKLCogVideoX.block_out_channels",description:`<strong>block_out_channels</strong> (<code>tuple[int]</code>, <em>optional</em>, defaults to <code>(64,)</code>) &#x2014;
tuple of block output channels.`,name:"block_out_channels"},{anchor:"diffusers.AutoencoderKLCogVideoX.act_fn",description:"<strong>act_fn</strong> (<code>str</code>, <em>optional</em>, defaults to <code>&quot;silu&quot;</code>) &#x2014; The activation function to use.",name:"act_fn"},{anchor:"diffusers.AutoencoderKLCogVideoX.sample_size",description:"<strong>sample_size</strong> (<code>int</code>, <em>optional</em>, defaults to <code>32</code>) &#x2014; Sample input size.",name:"sample_size"},{anchor:"diffusers.AutoencoderKLCogVideoX.scaling_factor",description:`<strong>scaling_factor</strong> (<code>float</code>, <em>optional</em>, defaults to <code>1.15258426</code>) &#x2014;
The component-wise standard deviation of the trained latent space computed using the first batch of the
training set. This is used to scale the latent space to have unit variance when training the diffusion
model. The latents are scaled with the formula <code>z = z * scaling_factor</code> before being passed to the
diffusion model. When decoding, the latents are scaled back to the original scale with the formula: <code>z = 1 / scaling_factor * z</code>. For more details, refer to sections 4.3.2 and D.1 of the <a href="https://huggingface.co/papers/2112.10752" rel="nofollow">High-Resolution Image
Synthesis with Latent Diffusion Models</a> paper.`,name:"scaling_factor"},{anchor:"diffusers.AutoencoderKLCogVideoX.force_upcast",description:`<strong>force_upcast</strong> (<code>bool</code>, <em>optional</em>, default to <code>True</code>) &#x2014;
If enabled it will force the VAE to run in float32 for high image resolution pipelines, such as SD-XL. VAE
can be fine-tuned / trained to a lower range without losing too much precision in which case <code>force_upcast</code>
can be set to <code>False</code> - see: <a href="https://huggingface.co/madebyollin/sdxl-vae-fp16-fix" rel="nofollow">https://huggingface.co/madebyollin/sdxl-vae-fp16-fix</a>`,name:"force_upcast"}],source:"https://github.com/huggingface/diffusers/blob/vr_13921/src/diffusers/models/autoencoders/autoencoder_kl_cogvideox.py#L956"}}),E=new y({props:{name:"wrapper",anchor:"diffusers.AutoencoderKLCogVideoX.decode",parameters:[{name:"*args",val:""},{name:"**kwargs",val:""}],source:"https://github.com/huggingface/diffusers/blob/vr_13921/src/diffusers/utils/accelerate_utils.py#L43"}}),U=new y({props:{name:"wrapper",anchor:"diffusers.AutoencoderKLCogVideoX.encode",parameters:[{name:"*args",val:""},{name:"**kwargs",val:""}],source:"https://github.com/huggingface/diffusers/blob/vr_13921/src/diffusers/utils/accelerate_utils.py#L43"}}),N=new y({props:{name:"enable_tiling",anchor:"diffusers.AutoencoderKLCogVideoX.enable_tiling",parameters:[{name:"tile_sample_min_height",val:": int | None = None"},{name:"tile_sample_min_width",val:": int | None = None"},{name:"tile_overlap_factor_height",val:": float | None = None"},{name:"tile_overlap_factor_width",val:": float | None = None"}],parametersDescription:[{anchor:"diffusers.AutoencoderKLCogVideoX.enable_tiling.tile_sample_min_height",description:`<strong>tile_sample_min_height</strong> (<code>int</code>, <em>optional</em>) &#x2014;
The minimum height required for a sample to be separated into tiles across the height dimension.`,name:"tile_sample_min_height"},{anchor:"diffusers.AutoencoderKLCogVideoX.enable_tiling.tile_sample_min_width",description:`<strong>tile_sample_min_width</strong> (<code>int</code>, <em>optional</em>) &#x2014;
The minimum width required for a sample to be separated into tiles across the width dimension.`,name:"tile_sample_min_width"},{anchor:"diffusers.AutoencoderKLCogVideoX.enable_tiling.tile_overlap_factor_height",description:`<strong>tile_overlap_factor_height</strong> (<code>int</code>, <em>optional</em>) &#x2014;
The minimum amount of overlap between two consecutive vertical tiles. This is to ensure that there are
no tiling artifacts produced across the height dimension. Must be between 0 and 1. Setting a higher
value might cause more tiles to be processed leading to slow down of the decoding process.`,name:"tile_overlap_factor_height"},{anchor:"diffusers.AutoencoderKLCogVideoX.enable_tiling.tile_overlap_factor_width",description:`<strong>tile_overlap_factor_width</strong> (<code>int</code>, <em>optional</em>) &#x2014;
The minimum amount of overlap between two consecutive horizontal tiles. This is to ensure that there
are no tiling artifacts produced across the width dimension. Must be between 0 and 1. Setting a higher
value might cause more tiles to be processed leading to slow down of the decoding process.`,name:"tile_overlap_factor_width"}],source:"https://github.com/huggingface/diffusers/blob/vr_13921/src/diffusers/models/autoencoders/autoencoder_kl_cogvideox.py#L1089"}}),O=new y({props:{name:"forward",anchor:"diffusers.AutoencoderKLCogVideoX.forward",parameters:[{name:"sample",val:": Tensor"},{name:"sample_posterior",val:": bool = False"},{name:"return_dict",val:": bool = True"},{name:"generator",val:": torch._C.Generator | None = None"}],parametersDescription:[{anchor:"diffusers.AutoencoderKLCogVideoX.forward.sample",description:"<strong>sample</strong> (<code>torch.Tensor</code>) &#x2014; Input sample.",name:"sample"},{anchor:"diffusers.AutoencoderKLCogVideoX.forward.sample_posterior",description:`<strong>sample_posterior</strong> (<code>bool</code>, <em>optional</em>, defaults to <code>False</code>) &#x2014;
Whether to sample from the posterior.`,name:"sample_posterior"},{anchor:"diffusers.AutoencoderKLCogVideoX.forward.return_dict",description:`<strong>return_dict</strong> (<code>bool</code>, <em>optional</em>, defaults to <code>True</code>) &#x2014;
Whether or not to return a <code>DecoderOutput</code> instead of a plain tuple.`,name:"return_dict"},{anchor:"diffusers.AutoencoderKLCogVideoX.forward.generator",description:`<strong>generator</strong> (<code>torch.Generator</code>, <em>optional</em>) &#x2014;
A <a href="https://pytorch.org/docs/stable/generated/torch.Generator.html" rel="nofollow"><code>torch.Generator</code></a> to make sampling
deterministic.`,name:"generator"}],source:"https://github.com/huggingface/diffusers/blob/vr_13921/src/diffusers/models/autoencoders/autoencoder_kl_cogvideox.py#L1405",returnDescription:`<script context="module">export const metadata = 'undefined';<\/script>
<p>If <code>return_dict</code> is True, a <code>~models.vae.DecoderOutput</code> is returned, otherwise a plain <code>tuple</code> is
returned.</p>
`,returnType:`<script context="module">export const metadata = 'undefined';<\/script>
<p><code>~models.vae.DecoderOutput</code> or <code>tuple</code></p>
`}}),z=new y({props:{name:"tiled_decode",anchor:"diffusers.AutoencoderKLCogVideoX.tiled_decode",parameters:[{name:"z",val:": Tensor"},{name:"return_dict",val:": bool = True"}],parametersDescription:[{anchor:"diffusers.AutoencoderKLCogVideoX.tiled_decode.z",description:"<strong>z</strong> (<code>torch.Tensor</code>) &#x2014; Input batch of latent vectors.",name:"z"},{anchor:"diffusers.AutoencoderKLCogVideoX.tiled_decode.return_dict",description:`<strong>return_dict</strong> (<code>bool</code>, <em>optional</em>, defaults to <code>True</code>) &#x2014;
Whether or not to return a <code>~models.vae.DecoderOutput</code> instead of a plain tuple.`,name:"return_dict"}],source:"https://github.com/huggingface/diffusers/blob/vr_13921/src/diffusers/models/autoencoders/autoencoder_kl_cogvideox.py#L1322",returnDescription:`<script context="module">export const metadata = 'undefined';<\/script>
<p>If return_dict is True, a <code>~models.vae.DecoderOutput</code> is returned, otherwise a plain <code>tuple</code> is
returned.</p>
`,returnType:`<script context="module">export const metadata = 'undefined';<\/script>
<p><code>~models.vae.DecoderOutput</code> or <code>tuple</code></p>
`}}),q=new y({props:{name:"tiled_encode",anchor:"diffusers.AutoencoderKLCogVideoX.tiled_encode",parameters:[{name:"x",val:": Tensor"}],parametersDescription:[{anchor:"diffusers.AutoencoderKLCogVideoX.tiled_encode.x",description:"<strong>x</strong> (<code>torch.Tensor</code>) &#x2014; Input batch of videos.",name:"x"}],source:"https://github.com/huggingface/diffusers/blob/vr_13921/src/diffusers/models/autoencoders/autoencoder_kl_cogvideox.py#L1248",returnDescription:`<script context="module">export const metadata = 'undefined';<\/script>
<p>The latent representation of the encoded videos.</p>
`,returnType:`<script context="module">export const metadata = 'undefined';<\/script>
<p><code>torch.Tensor</code></p>
`}}),G=new ye({props:{title:"AutoencoderKLOutput",local:"diffusers.models.modeling_outputs.AutoencoderKLOutput",headingTag:"h2"}}),I=new y({props:{name:"class diffusers.models.modeling_outputs.AutoencoderKLOutput",anchor:"diffusers.models.modeling_outputs.AutoencoderKLOutput",parameters:[{name:"latent_dist",val:": DiagonalGaussianDistribution"}],parametersDescription:[{anchor:"diffusers.models.modeling_outputs.AutoencoderKLOutput.latent_dist",description:`<strong>latent_dist</strong> (<code>DiagonalGaussianDistribution</code>) &#x2014;
Encoded outputs of <code>Encoder</code> represented as the mean and logvar of <code>DiagonalGaussianDistribution</code>.
<code>DiagonalGaussianDistribution</code> allows for sampling latents from the distribution.`,name:"latent_dist"}],source:"https://github.com/huggingface/diffusers/blob/vr_13921/src/diffusers/models/modeling_outputs.py#L7"}}),H=new ye({props:{title:"DecoderOutput",local:"diffusers.models.autoencoders.vae.DecoderOutput",headingTag:"h2"}}),P=new y({props:{name:"class diffusers.models.autoencoders.vae.DecoderOutput",anchor:"diffusers.models.autoencoders.vae.DecoderOutput",parameters:[{name:"sample",val:": Tensor"},{name:"commit_loss",val:": torch.FloatTensor | None = None"}],parametersDescription:[{anchor:"diffusers.models.autoencoders.vae.DecoderOutput.sample",description:`<strong>sample</strong> (<code>torch.Tensor</code> of shape <code>(batch_size, num_channels, height, width)</code>) &#x2014;
The decoded output sample from the last layer of the model.`,name:"sample"}],source:"https://github.com/huggingface/diffusers/blob/vr_13921/src/diffusers/models/autoencoders/vae.py#L46"}}),Z=new it({props:{source:"https://github.com/huggingface/diffusers/blob/main/docs/source/en/api/models/autoencoderkl_cogvideox.md"}}),{c(){x=i("meta"),se=r(),ne=i("p"),ae=r(),u(L.$$.fragment),ie=r(),u(T.$$.fragment),de=r(),A=i("p"),A.innerHTML=Ge,le=r(),X=i("p"),X.textContent=Ie,ce=r(),u(k.$$.fragment),ue=r(),u(K.$$.fragment),pe=r(),a=i("div"),u(M.$$.fragment),Ve=r(),S=i("p"),S.innerHTML=He,De=r(),B=i("p"),B.innerHTML=Pe,Le=r(),W=i("div"),u(E.$$.fragment),Te=r(),j=i("div"),u(U.$$.fragment),Ae=r(),V=i("div"),u(N.$$.fragment),Xe=r(),F=i("p"),F.textContent=Ze,ke=r(),R=i("div"),u(O.$$.fragment),Ke=r(),D=i("div"),u(z.$$.fragment),Me=r(),Y=i("p"),Y.textContent=Se,Ee=r(),b=i("div"),u(q.$$.fragment),Ue=r(),J=i("p"),J.textContent=Be,Ne=r(),Q=i("p"),Q.textContent=We,me=r(),u(G.$$.fragment),fe=r(),w=i("div"),u(I.$$.fragment),Oe=r(),ee=i("p"),ee.textContent=je,ge=r(),u(H.$$.fragment),he=r(),C=i("div"),u(P.$$.fragment),ze=r(),te=i("p"),te.textContent=Fe,_e=r(),u(Z.$$.fragment),ve=r(),re=i("p"),this.h()},l(e){const o=rt("svelte-u9bgzb",document.head);x=d(o,"META",{name:!0,content:!0}),o.forEach(t),se=s(e),ne=d(e,"P",{}),_(ne).forEach(t),ae=s(e),p(L.$$.fragment,e),ie=s(e),p(T.$$.fragment,e),de=s(e),A=d(e,"P",{"data-svelte-h":!0}),$(A)!=="svelte-1996cgd"&&(A.innerHTML=Ge),le=s(e),X=d(e,"P",{"data-svelte-h":!0}),$(X)!=="svelte-1vuni30"&&(X.textContent=Ie),ce=s(e),p(k.$$.fragment,e),ue=s(e),p(K.$$.fragment,e),pe=s(e),a=d(e,"DIV",{class:!0});var c=_(a);p(M.$$.fragment,c),Ve=s(c),S=d(c,"P",{"data-svelte-h":!0}),$(S)!=="svelte-1rg6lrb"&&(S.innerHTML=He),De=s(c),B=d(c,"P",{"data-svelte-h":!0}),$(B)!=="svelte-j24tt4"&&(B.innerHTML=Pe),Le=s(c),W=d(c,"DIV",{class:!0});var Re=_(W);p(E.$$.fragment,Re),Re.forEach(t),Te=s(c),j=d(c,"DIV",{class:!0});var Ye=_(j);p(U.$$.fragment,Ye),Ye.forEach(t),Ae=s(c),V=d(c,"DIV",{class:!0});var $e=_(V);p(N.$$.fragment,$e),Xe=s($e),F=d($e,"P",{"data-svelte-h":!0}),$(F)!=="svelte-1xwrf7t"&&(F.textContent=Ze),$e.forEach(t),ke=s(c),R=d(c,"DIV",{class:!0});var Je=_(R);p(O.$$.fragment,Je),Je.forEach(t),Ke=s(c),D=d(c,"DIV",{class:!0});var xe=_(D);p(z.$$.fragment,xe),Me=s(xe),Y=d(xe,"P",{"data-svelte-h":!0}),$(Y)!=="svelte-1vrxp2b"&&(Y.textContent=Se),xe.forEach(t),Ee=s(c),b=d(c,"DIV",{class:!0});var oe=_(b);p(q.$$.fragment,oe),Ue=s(oe),J=d(oe,"P",{"data-svelte-h":!0}),$(J)!=="svelte-1un5fcn"&&(J.textContent=Be),Ne=s(oe),Q=d(oe,"P",{"data-svelte-h":!0}),$(Q)!=="svelte-lbfkqr"&&(Q.textContent=We),oe.forEach(t),c.forEach(t),me=s(e),p(G.$$.fragment,e),fe=s(e),w=d(e,"DIV",{class:!0});var we=_(w);p(I.$$.fragment,we),Oe=s(we),ee=d(we,"P",{"data-svelte-h":!0}),$(ee)!=="svelte-1vsc7ag"&&(ee.textContent=je),we.forEach(t),ge=s(e),p(H.$$.fragment,e),he=s(e),C=d(e,"DIV",{class:!0});var Ce=_(C);p(P.$$.fragment,Ce),ze=s(Ce),te=d(Ce,"P",{"data-svelte-h":!0}),$(te)!=="svelte-18u8upa"&&(te.textContent=Fe),Ce.forEach(t),_e=s(e),p(Z.$$.fragment,e),ve=s(e),re=d(e,"P",{}),_(re).forEach(t),this.h()},h(){v(x,"name","hf:doc:metadata"),v(x,"content",lt),v(W,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),v(j,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),v(V,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),v(R,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),v(D,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),v(b,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),v(a,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),v(w,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),v(C,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8")},m(e,o){n(document.head,x),l(e,se,o),l(e,ne,o),l(e,ae,o),m(L,e,o),l(e,ie,o),m(T,e,o),l(e,de,o),l(e,A,o),l(e,le,o),l(e,X,o),l(e,ce,o),m(k,e,o),l(e,ue,o),m(K,e,o),l(e,pe,o),l(e,a,o),m(M,a,null),n(a,Ve),n(a,S),n(a,De),n(a,B),n(a,Le),n(a,W),m(E,W,null),n(a,Te),n(a,j),m(U,j,null),n(a,Ae),n(a,V),m(N,V,null),n(V,Xe),n(V,F),n(a,ke),n(a,R),m(O,R,null),n(a,Ke),n(a,D),m(z,D,null),n(D,Me),n(D,Y),n(a,Ee),n(a,b),m(q,b,null),n(b,Ue),n(b,J),n(b,Ne),n(b,Q),l(e,me,o),m(G,e,o),l(e,fe,o),l(e,w,o),m(I,w,null),n(w,Oe),n(w,ee),l(e,ge,o),m(H,e,o),l(e,he,o),l(e,C,o),m(P,C,null),n(C,ze),n(C,te),l(e,_e,o),m(Z,e,o),l(e,ve,o),l(e,re,o),be=!0},p:et,i(e){be||(f(L.$$.fragment,e),f(T.$$.fragment,e),f(k.$$.fragment,e),f(K.$$.fragment,e),f(M.$$.fragment,e),f(E.$$.fragment,e),f(U.$$.fragment,e),f(N.$$.fragment,e),f(O.$$.fragment,e),f(z.$$.fragment,e),f(q.$$.fragment,e),f(G.$$.fragment,e),f(I.$$.fragment,e),f(H.$$.fragment,e),f(P.$$.fragment,e),f(Z.$$.fragment,e),be=!0)},o(e){g(L.$$.fragment,e),g(T.$$.fragment,e),g(k.$$.fragment,e),g(K.$$.fragment,e),g(M.$$.fragment,e),g(E.$$.fragment,e),g(U.$$.fragment,e),g(N.$$.fragment,e),g(O.$$.fragment,e),g(z.$$.fragment,e),g(q.$$.fragment,e),g(G.$$.fragment,e),g(I.$$.fragment,e),g(H.$$.fragment,e),g(P.$$.fragment,e),g(Z.$$.fragment,e),be=!1},d(e){e&&(t(se),t(ne),t(ae),t(ie),t(de),t(A),t(le),t(X),t(ce),t(ue),t(pe),t(a),t(me),t(fe),t(w),t(ge),t(he),t(C),t(_e),t(ve),t(re)),t(x),h(L,e),h(T,e),h(k,e),h(K,e),h(M),h(E),h(U),h(N),h(O),h(z),h(q),h(G,e),h(I),h(H,e),h(P),h(Z,e)}}}const lt='{"title":"AutoencoderKLCogVideoX","local":"autoencoderklcogvideox","sections":[{"title":"AutoencoderKLCogVideoX","local":"diffusers.AutoencoderKLCogVideoX","sections":[],"depth":2},{"title":"AutoencoderKLOutput","local":"diffusers.models.modeling_outputs.AutoencoderKLOutput","sections":[],"depth":2},{"title":"DecoderOutput","local":"diffusers.models.autoencoders.vae.DecoderOutput","sections":[],"depth":2}],"depth":1}';function ct(qe){return tt(()=>{new URLSearchParams(window.location.search).get("fw")}),[]}class _t extends ot{constructor(x){super(),nt(this,x,ct,dt,Qe,{})}}export{_t as component};

Xet Storage Details

Size:
22.1 kB
·
Xet hash:
2aeb4d013f5d5887db770b1ff7e022e6a5c5cbce1f6fa099cdd1274623789438

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.