Buckets:

rtrm's picture
download
raw
20.9 kB
import{s as ut,n as pt,o as mt}from"../chunks/scheduler.8c3d61f6.js";import{S as ft,i as gt,g as i,s as n,r as u,A as ht,h as d,f as o,c as s,j as _,u as p,x as v,k as b,y as t,a as c,v as m,d as f,t as g,w as h}from"../chunks/index.da70eac4.js";import{D as $}from"../chunks/Docstring.6b390b9a.js";import{C as _t}from"../chunks/CodeBlock.00a903b3.js";import{H as ke,E as bt}from"../chunks/EditOnGithub.1e64e623.js";function vt(Je){let L,le,ie,ce,X,ue,k,Be='The 3D variational autoencoder (VAE) model with KL loss used in <a href="https://huggingface.co/Lightricks/LTX-Video" rel="nofollow">LTX</a> was introduced by Lightricks.',pe,E,Qe="The model can be loaded with the following code snippet.",me,M,fe,C,ge,a,O,Ee,q,Ye=`A VAE model with KL loss for encoding images into latents and decoding latent representations into images. Used in
<a href="https://huggingface.co/Lightricks/LTX-Video" rel="nofollow">LTX</a>.`,Me,J,et=`This model inherits from <a href="/docs/diffusers/pr_10312/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).`,Ce,B,z,Oe,Q,I,ze,w,P,Ie,Y,tt=`Disable sliced VAE decoding. If <code>enable_slicing</code> was previously enabled, this method will go back to computing
decoding in one step.`,Pe,y,H,He,ee,ot=`Disable tiled VAE decoding. If <code>enable_tiling</code> was previously enabled, this method will go back to computing
decoding in one step.`,We,V,W,je,te,nt=`Enable sliced VAE decoding. When this option is enabled, the VAE will split the input tensor in slices to
compute decoding in several steps. This is useful to save some memory and allow larger batch sizes.`,Re,A,j,Ue,oe,st=`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.`,Ge,K,R,Ne,ne,rt="Decode a batch of images using a tiled decoder.",Ze,D,U,Fe,se,at="Encode a batch of images using a tiled encoder.",he,G,_e,T,N,Se,re,it="Output of AutoencoderKL encoding method.",be,Z,ve,x,F,qe,ae,dt="Output of decoding method.",$e,S,Le,de,Te;return X=new ke({props:{title:"AutoencoderKLLTXVideo",local:"autoencoderklltxvideo",headingTag:"h1"}}),M=new _t({props:{code:"ZnJvbSUyMGRpZmZ1c2VycyUyMGltcG9ydCUyMEF1dG9lbmNvZGVyS0xMVFhWaWRlbyUwQSUwQXZhZSUyMCUzRCUyMEF1dG9lbmNvZGVyS0xMVFhWaWRlby5mcm9tX3ByZXRyYWluZWQoJTIyVE9ETyUyRlRPRE8lMjIlMkMlMjBzdWJmb2xkZXIlM0QlMjJ2YWUlMjIlMkMlMjB0b3JjaF9kdHlwZSUzRHRvcmNoLmZsb2F0MzIpLnRvKCUyMmN1ZGElMjIp",highlighted:`<span class="hljs-keyword">from</span> diffusers <span class="hljs-keyword">import</span> AutoencoderKLLTXVideo
vae = AutoencoderKLLTXVideo.from_pretrained(<span class="hljs-string">&quot;TODO/TODO&quot;</span>, subfolder=<span class="hljs-string">&quot;vae&quot;</span>, torch_dtype=torch.float32).to(<span class="hljs-string">&quot;cuda&quot;</span>)`,wrap:!1}}),C=new ke({props:{title:"AutoencoderKLLTXVideo",local:"diffusers.AutoencoderKLLTXVideo",headingTag:"h2"}}),O=new $({props:{name:"class diffusers.AutoencoderKLLTXVideo",anchor:"diffusers.AutoencoderKLLTXVideo",parameters:[{name:"in_channels",val:": int = 3"},{name:"out_channels",val:": int = 3"},{name:"latent_channels",val:": int = 128"},{name:"block_out_channels",val:": typing.Tuple[int, ...] = (128, 256, 512, 512)"},{name:"spatio_temporal_scaling",val:": typing.Tuple[bool, ...] = (True, True, True, False)"},{name:"layers_per_block",val:": typing.Tuple[int, ...] = (4, 3, 3, 3, 4)"},{name:"patch_size",val:": int = 4"},{name:"patch_size_t",val:": int = 1"},{name:"resnet_norm_eps",val:": float = 1e-06"},{name:"scaling_factor",val:": float = 1.0"},{name:"encoder_causal",val:": bool = True"},{name:"decoder_causal",val:": bool = False"}],parametersDescription:[{anchor:"diffusers.AutoencoderKLLTXVideo.in_channels",description:`<strong>in_channels</strong> (<code>int</code>, defaults to <code>3</code>) &#x2014;
Number of input channels.`,name:"in_channels"},{anchor:"diffusers.AutoencoderKLLTXVideo.out_channels",description:`<strong>out_channels</strong> (<code>int</code>, defaults to <code>3</code>) &#x2014;
Number of output channels.`,name:"out_channels"},{anchor:"diffusers.AutoencoderKLLTXVideo.latent_channels",description:`<strong>latent_channels</strong> (<code>int</code>, defaults to <code>128</code>) &#x2014;
Number of latent channels.`,name:"latent_channels"},{anchor:"diffusers.AutoencoderKLLTXVideo.block_out_channels",description:`<strong>block_out_channels</strong> (<code>Tuple[int, ...]</code>, defaults to <code>(128, 256, 512, 512)</code>) &#x2014;
The number of output channels for each block.`,name:"block_out_channels"},{anchor:"diffusers.AutoencoderKLLTXVideo.spatio_temporal_scaling",description:"<strong>spatio_temporal_scaling</strong> (<code>Tuple[bool, ...], defaults to </code>(True, True, True, False)` &#x2014;\nWhether a block should contain spatio-temporal downscaling or not.",name:"spatio_temporal_scaling"},{anchor:"diffusers.AutoencoderKLLTXVideo.layers_per_block",description:`<strong>layers_per_block</strong> (<code>Tuple[int, ...]</code>, defaults to <code>(4, 3, 3, 3, 4)</code>) &#x2014;
The number of layers per block.`,name:"layers_per_block"},{anchor:"diffusers.AutoencoderKLLTXVideo.patch_size",description:`<strong>patch_size</strong> (<code>int</code>, defaults to <code>4</code>) &#x2014;
The size of spatial patches.`,name:"patch_size"},{anchor:"diffusers.AutoencoderKLLTXVideo.patch_size_t",description:`<strong>patch_size_t</strong> (<code>int</code>, defaults to <code>1</code>) &#x2014;
The size of temporal patches.`,name:"patch_size_t"},{anchor:"diffusers.AutoencoderKLLTXVideo.resnet_norm_eps",description:`<strong>resnet_norm_eps</strong> (<code>float</code>, defaults to <code>1e-6</code>) &#x2014;
Epsilon value for ResNet normalization layers.`,name:"resnet_norm_eps"},{anchor:"diffusers.AutoencoderKLLTXVideo.scaling_factor",description:`<strong>scaling_factor</strong> (<code>float</code>, <em>optional</em>, defaults to <code>1.0</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://arxiv.org/abs/2112.10752" rel="nofollow">High-Resolution Image
Synthesis with Latent Diffusion Models</a> paper.`,name:"scaling_factor"},{anchor:"diffusers.AutoencoderKLLTXVideo.encoder_causal",description:`<strong>encoder_causal</strong> (<code>bool</code>, defaults to <code>True</code>) &#x2014;
Whether the encoder should behave causally (future frames depend only on past frames) or not.`,name:"encoder_causal"},{anchor:"diffusers.AutoencoderKLLTXVideo.decoder_causal",description:`<strong>decoder_causal</strong> (<code>bool</code>, defaults to <code>False</code>) &#x2014;
Whether the decoder should behave causally (future frames depend only on past frames) or not.`,name:"decoder_causal"}],source:"https://github.com/huggingface/diffusers/blob/vr_10312/src/diffusers/models/autoencoders/autoencoder_kl_ltx.py#L720"}}),z=new $({props:{name:"wrapper",anchor:"diffusers.AutoencoderKLLTXVideo.decode",parameters:[{name:"*args",val:""},{name:"**kwargs",val:""}],source:"https://github.com/huggingface/diffusers/blob/vr_10312/src/diffusers/utils/accelerate_utils.py#L43"}}),I=new $({props:{name:"wrapper",anchor:"diffusers.AutoencoderKLLTXVideo.encode",parameters:[{name:"*args",val:""},{name:"**kwargs",val:""}],source:"https://github.com/huggingface/diffusers/blob/vr_10312/src/diffusers/utils/accelerate_utils.py#L43"}}),P=new $({props:{name:"disable_slicing",anchor:"diffusers.AutoencoderKLLTXVideo.disable_slicing",parameters:[],source:"https://github.com/huggingface/diffusers/blob/vr_10312/src/diffusers/models/autoencoders/autoencoder_kl_ltx.py#L887"}}),H=new $({props:{name:"disable_tiling",anchor:"diffusers.AutoencoderKLLTXVideo.disable_tiling",parameters:[],source:"https://github.com/huggingface/diffusers/blob/vr_10312/src/diffusers/models/autoencoders/autoencoder_kl_ltx.py#L873"}}),W=new $({props:{name:"enable_slicing",anchor:"diffusers.AutoencoderKLLTXVideo.enable_slicing",parameters:[],source:"https://github.com/huggingface/diffusers/blob/vr_10312/src/diffusers/models/autoencoders/autoencoder_kl_ltx.py#L880"}}),j=new $({props:{name:"enable_tiling",anchor:"diffusers.AutoencoderKLLTXVideo.enable_tiling",parameters:[{name:"tile_sample_min_height",val:": typing.Optional[int] = None"},{name:"tile_sample_min_width",val:": typing.Optional[int] = None"},{name:"tile_sample_stride_height",val:": typing.Optional[float] = None"},{name:"tile_sample_stride_width",val:": typing.Optional[float] = None"}],parametersDescription:[{anchor:"diffusers.AutoencoderKLLTXVideo.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.AutoencoderKLLTXVideo.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.AutoencoderKLLTXVideo.enable_tiling.tile_sample_stride_height",description:`<strong>tile_sample_stride_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.`,name:"tile_sample_stride_height"},{anchor:"diffusers.AutoencoderKLLTXVideo.enable_tiling.tile_sample_stride_width",description:`<strong>tile_sample_stride_width</strong> (<code>int</code>, <em>optional</em>) &#x2014;
The stride between two consecutive horizontal tiles. This is to ensure that there are no tiling
artifacts produced across the width dimension.`,name:"tile_sample_stride_width"}],source:"https://github.com/huggingface/diffusers/blob/vr_10312/src/diffusers/models/autoencoders/autoencoder_kl_ltx.py#L843"}}),R=new $({props:{name:"tiled_decode",anchor:"diffusers.AutoencoderKLLTXVideo.tiled_decode",parameters:[{name:"z",val:": Tensor"},{name:"return_dict",val:": bool = True"}],parametersDescription:[{anchor:"diffusers.AutoencoderKLLTXVideo.tiled_decode.z",description:"<strong>z</strong> (<code>torch.Tensor</code>) &#x2014; Input batch of latent vectors.",name:"z"},{anchor:"diffusers.AutoencoderKLLTXVideo.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_10312/src/diffusers/models/autoencoders/autoencoder_kl_ltx.py#L1063",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>
`}}),U=new $({props:{name:"tiled_encode",anchor:"diffusers.AutoencoderKLLTXVideo.tiled_encode",parameters:[{name:"x",val:": Tensor"}],parametersDescription:[{anchor:"diffusers.AutoencoderKLLTXVideo.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_10312/src/diffusers/models/autoencoders/autoencoder_kl_ltx.py#L1004",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 ke({props:{title:"AutoencoderKLOutput",local:"diffusers.models.modeling_outputs.AutoencoderKLOutput",headingTag:"h2"}}),N=new $({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_10312/src/diffusers/models/modeling_outputs.py#L6"}}),Z=new ke({props:{title:"DecoderOutput",local:"diffusers.models.autoencoders.vae.DecoderOutput",headingTag:"h2"}}),F=new $({props:{name:"class diffusers.models.autoencoders.vae.DecoderOutput",anchor:"diffusers.models.autoencoders.vae.DecoderOutput",parameters:[{name:"sample",val:": Tensor"},{name:"commit_loss",val:": typing.Optional[torch.FloatTensor] = 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_10312/src/diffusers/models/autoencoders/vae.py#L46"}}),S=new bt({props:{source:"https://github.com/huggingface/diffusers/blob/main/docs/source/en/api/models/autoencoderkl_ltx_video.md"}}),{c(){L=i("meta"),le=n(),ie=i("p"),ce=n(),u(X.$$.fragment),ue=n(),k=i("p"),k.innerHTML=Be,pe=n(),E=i("p"),E.textContent=Qe,me=n(),u(M.$$.fragment),fe=n(),u(C.$$.fragment),ge=n(),a=i("div"),u(O.$$.fragment),Ee=n(),q=i("p"),q.innerHTML=Ye,Me=n(),J=i("p"),J.innerHTML=et,Ce=n(),B=i("div"),u(z.$$.fragment),Oe=n(),Q=i("div"),u(I.$$.fragment),ze=n(),w=i("div"),u(P.$$.fragment),Ie=n(),Y=i("p"),Y.innerHTML=tt,Pe=n(),y=i("div"),u(H.$$.fragment),He=n(),ee=i("p"),ee.innerHTML=ot,We=n(),V=i("div"),u(W.$$.fragment),je=n(),te=i("p"),te.textContent=nt,Re=n(),A=i("div"),u(j.$$.fragment),Ue=n(),oe=i("p"),oe.textContent=st,Ge=n(),K=i("div"),u(R.$$.fragment),Ne=n(),ne=i("p"),ne.textContent=rt,Ze=n(),D=i("div"),u(U.$$.fragment),Fe=n(),se=i("p"),se.textContent=at,he=n(),u(G.$$.fragment),_e=n(),T=i("div"),u(N.$$.fragment),Se=n(),re=i("p"),re.textContent=it,be=n(),u(Z.$$.fragment),ve=n(),x=i("div"),u(F.$$.fragment),qe=n(),ae=i("p"),ae.textContent=dt,$e=n(),u(S.$$.fragment),Le=n(),de=i("p"),this.h()},l(e){const r=ht("svelte-u9bgzb",document.head);L=d(r,"META",{name:!0,content:!0}),r.forEach(o),le=s(e),ie=d(e,"P",{}),_(ie).forEach(o),ce=s(e),p(X.$$.fragment,e),ue=s(e),k=d(e,"P",{"data-svelte-h":!0}),v(k)!=="svelte-p2km9k"&&(k.innerHTML=Be),pe=s(e),E=d(e,"P",{"data-svelte-h":!0}),v(E)!=="svelte-1vuni30"&&(E.textContent=Qe),me=s(e),p(M.$$.fragment,e),fe=s(e),p(C.$$.fragment,e),ge=s(e),a=d(e,"DIV",{class:!0});var l=_(a);p(O.$$.fragment,l),Ee=s(l),q=d(l,"P",{"data-svelte-h":!0}),v(q)!=="svelte-3ppjd9"&&(q.innerHTML=Ye),Me=s(l),J=d(l,"P",{"data-svelte-h":!0}),v(J)!=="svelte-6bld81"&&(J.innerHTML=et),Ce=s(l),B=d(l,"DIV",{class:!0});var lt=_(B);p(z.$$.fragment,lt),lt.forEach(o),Oe=s(l),Q=d(l,"DIV",{class:!0});var ct=_(Q);p(I.$$.fragment,ct),ct.forEach(o),ze=s(l),w=d(l,"DIV",{class:!0});var xe=_(w);p(P.$$.fragment,xe),Ie=s(xe),Y=d(xe,"P",{"data-svelte-h":!0}),v(Y)!=="svelte-189cc7b"&&(Y.innerHTML=tt),xe.forEach(o),Pe=s(l),y=d(l,"DIV",{class:!0});var we=_(y);p(H.$$.fragment,we),He=s(we),ee=d(we,"P",{"data-svelte-h":!0}),v(ee)!=="svelte-1f366pl"&&(ee.innerHTML=ot),we.forEach(o),We=s(l),V=d(l,"DIV",{class:!0});var ye=_(V);p(W.$$.fragment,ye),je=s(ye),te=d(ye,"P",{"data-svelte-h":!0}),v(te)!=="svelte-14bnrb6"&&(te.textContent=nt),ye.forEach(o),Re=s(l),A=d(l,"DIV",{class:!0});var Ve=_(A);p(j.$$.fragment,Ve),Ue=s(Ve),oe=d(Ve,"P",{"data-svelte-h":!0}),v(oe)!=="svelte-1xwrf7t"&&(oe.textContent=st),Ve.forEach(o),Ge=s(l),K=d(l,"DIV",{class:!0});var Ae=_(K);p(R.$$.fragment,Ae),Ne=s(Ae),ne=d(Ae,"P",{"data-svelte-h":!0}),v(ne)!=="svelte-1vrxp2b"&&(ne.textContent=rt),Ae.forEach(o),Ze=s(l),D=d(l,"DIV",{class:!0});var Ke=_(D);p(U.$$.fragment,Ke),Fe=s(Ke),se=d(Ke,"P",{"data-svelte-h":!0}),v(se)!=="svelte-1un5fcn"&&(se.textContent=at),Ke.forEach(o),l.forEach(o),he=s(e),p(G.$$.fragment,e),_e=s(e),T=d(e,"DIV",{class:!0});var De=_(T);p(N.$$.fragment,De),Se=s(De),re=d(De,"P",{"data-svelte-h":!0}),v(re)!=="svelte-1vsc7ag"&&(re.textContent=it),De.forEach(o),be=s(e),p(Z.$$.fragment,e),ve=s(e),x=d(e,"DIV",{class:!0});var Xe=_(x);p(F.$$.fragment,Xe),qe=s(Xe),ae=d(Xe,"P",{"data-svelte-h":!0}),v(ae)!=="svelte-18u8upa"&&(ae.textContent=dt),Xe.forEach(o),$e=s(e),p(S.$$.fragment,e),Le=s(e),de=d(e,"P",{}),_(de).forEach(o),this.h()},h(){b(L,"name","hf:doc:metadata"),b(L,"content",$t),b(B,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),b(Q,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),b(w,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),b(y,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),b(V,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),b(A,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),b(K,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),b(D,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),b(a,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),b(T,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),b(x,"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,r){t(document.head,L),c(e,le,r),c(e,ie,r),c(e,ce,r),m(X,e,r),c(e,ue,r),c(e,k,r),c(e,pe,r),c(e,E,r),c(e,me,r),m(M,e,r),c(e,fe,r),m(C,e,r),c(e,ge,r),c(e,a,r),m(O,a,null),t(a,Ee),t(a,q),t(a,Me),t(a,J),t(a,Ce),t(a,B),m(z,B,null),t(a,Oe),t(a,Q),m(I,Q,null),t(a,ze),t(a,w),m(P,w,null),t(w,Ie),t(w,Y),t(a,Pe),t(a,y),m(H,y,null),t(y,He),t(y,ee),t(a,We),t(a,V),m(W,V,null),t(V,je),t(V,te),t(a,Re),t(a,A),m(j,A,null),t(A,Ue),t(A,oe),t(a,Ge),t(a,K),m(R,K,null),t(K,Ne),t(K,ne),t(a,Ze),t(a,D),m(U,D,null),t(D,Fe),t(D,se),c(e,he,r),m(G,e,r),c(e,_e,r),c(e,T,r),m(N,T,null),t(T,Se),t(T,re),c(e,be,r),m(Z,e,r),c(e,ve,r),c(e,x,r),m(F,x,null),t(x,qe),t(x,ae),c(e,$e,r),m(S,e,r),c(e,Le,r),c(e,de,r),Te=!0},p:pt,i(e){Te||(f(X.$$.fragment,e),f(M.$$.fragment,e),f(C.$$.fragment,e),f(O.$$.fragment,e),f(z.$$.fragment,e),f(I.$$.fragment,e),f(P.$$.fragment,e),f(H.$$.fragment,e),f(W.$$.fragment,e),f(j.$$.fragment,e),f(R.$$.fragment,e),f(U.$$.fragment,e),f(G.$$.fragment,e),f(N.$$.fragment,e),f(Z.$$.fragment,e),f(F.$$.fragment,e),f(S.$$.fragment,e),Te=!0)},o(e){g(X.$$.fragment,e),g(M.$$.fragment,e),g(C.$$.fragment,e),g(O.$$.fragment,e),g(z.$$.fragment,e),g(I.$$.fragment,e),g(P.$$.fragment,e),g(H.$$.fragment,e),g(W.$$.fragment,e),g(j.$$.fragment,e),g(R.$$.fragment,e),g(U.$$.fragment,e),g(G.$$.fragment,e),g(N.$$.fragment,e),g(Z.$$.fragment,e),g(F.$$.fragment,e),g(S.$$.fragment,e),Te=!1},d(e){e&&(o(le),o(ie),o(ce),o(ue),o(k),o(pe),o(E),o(me),o(fe),o(ge),o(a),o(he),o(_e),o(T),o(be),o(ve),o(x),o($e),o(Le),o(de)),o(L),h(X,e),h(M,e),h(C,e),h(O),h(z),h(I),h(P),h(H),h(W),h(j),h(R),h(U),h(G,e),h(N),h(Z,e),h(F),h(S,e)}}}const $t='{"title":"AutoencoderKLLTXVideo","local":"autoencoderklltxvideo","sections":[{"title":"AutoencoderKLLTXVideo","local":"diffusers.AutoencoderKLLTXVideo","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 Lt(Je){return mt(()=>{new URLSearchParams(window.location.search).get("fw")}),[]}class At extends ft{constructor(L){super(),gt(this,L,Lt,vt,ut,{})}}export{At as component};

Xet Storage Details

Size:
20.9 kB
·
Xet hash:
c022ba23a033c535920fb6c502a027a49a2913965333d489fa5e87e879ab5bde

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