Buckets:

rtrm's picture
download
raw
27.7 kB
import{s as St,n as xt,o as $t}from"../chunks/scheduler.8c3d61f6.js";import{S as Dt,i as Tt,g as i,s as r,r as p,A as yt,h as d,f as t,c as n,j as v,u as m,x as u,k as b,y as s,a as l,v as f,d as h,t as g,w as _}from"../chunks/index.da70eac4.js";import{D as S}from"../chunks/Docstring.ee4b6913.js";import{H as He,E as It}from"../chunks/EditOnGithub.1e64e623.js";function Et(st){let x,ue,le,pe,L,me,P,rt='Diffusion Exponential Integrator Sampler (DEIS) is proposed in <a href="https://huggingface.co/papers/2204.13902" rel="nofollow">Fast Sampling of Diffusion Models with Exponential Integrator</a> by Qinsheng Zhang and Yongxin Chen. <code>DEISMultistepScheduler</code> is a fast high order solver for diffusion ordinary differential equations (ODEs).',fe,O,nt="This implementation modifies the polynomial fitting formula in log-rho space instead of the original linear <code>t</code> space in the DEIS paper. The modification enjoys closed-form coefficients for exponential multistep update instead of replying on the numerical solver.",he,k,ot="The abstract from the paper is:",ge,q,it='<em>The past few years have witnessed the great success of Diffusion models~(DMs) in generating high-fidelity samples in generative modeling tasks. A major limitation of the DM is its notoriously slow sampling procedure which normally requires hundreds to thousands of time discretization steps of the learned diffusion process to reach the desired accuracy. Our goal is to develop a fast sampling method for DMs with a much less number of steps while retaining high sample quality. To this end, we systematically analyze the sampling procedure in DMs and identify key factors that affect the sample quality, among which the method of discretization is most crucial. By carefully examining the learned diffusion process, we propose Diffusion Exponential Integrator Sampler~(DEIS). It is based on the Exponential Integrator designed for discretizing ordinary differential equations (ODEs) and leverages a semilinear structure of the learned diffusion process to reduce the discretization error. The proposed method can be applied to any DMs and can generate high-fidelity samples in as few as 10 steps. In our experiments, it takes about 3 minutes on one A6000 GPU to generate 50k images from CIFAR10. Moreover, by directly using pre-trained DMs, we achieve the state-of-art sampling performance when the number of score function evaluation~(NFE) is limited, e.g., 4.17 FID with 10 NFEs, 3.37 FID, and 9.74 IS with only 15 NFEs on CIFAR10. Code is available at <a href="https://github.com/qsh-zh/deis" rel="nofollow">this https URL</a>.</em>',_e,H,ve,z,dt='It is recommended to set <code>solver_order</code> to 2 or 3, while <code>solver_order=1</code> is equivalent to <a href="/docs/diffusers/main/en/api/schedulers/ddim#diffusers.DDIMScheduler">DDIMScheduler</a>.',be,A,at=`Dynamic thresholding from <a href="https://huggingface.co/papers/2205.11487" rel="nofollow">Imagen</a> is supported, and for pixel-space
diffusion models, you can set <code>thresholding=True</code> to use the dynamic thresholding.`,Se,F,xe,a,V,ze,J,lt="<code>DEISMultistepScheduler</code> is a fast high order solver for diffusion ordinary differential equations (ODEs).",Ae,X,ct=`This model inherits from <a href="/docs/diffusers/main/en/api/schedulers/overview#diffusers.SchedulerMixin">SchedulerMixin</a> and <a href="/docs/diffusers/main/en/api/configuration#diffusers.ConfigMixin">ConfigMixin</a>. Check the superclass documentation for the generic
methods the library implements for all schedulers such as loading and saving.`,Fe,D,N,Ve,ee,ut="Convert the model output to the corresponding type the DEIS algorithm needs.",Ne,T,j,je,te,pt="One step for the first-order DEIS (equivalent to DDIM).",Re,y,R,Ue,se,mt="One step for the second-order multistep DEIS.",We,I,U,Be,re,ft="One step for the third-order multistep DEIS.",Ge,E,W,Ke,ne,ht=`Ensures interchangeability with schedulers that need to scale the denoising model input depending on the
current timestep.`,Qe,M,B,Ye,oe,gt="Sets the begin index for the scheduler. This function should be run from pipeline before the inference.",Ze,w,G,Je,ie,_t="Sets the discrete timesteps used for the diffusion chain (to be run before inference).",Xe,C,K,et,de,vt=`Predict the sample from the previous timestep by reversing the SDE. This function propagates the sample with
the multistep DEIS.`,$e,Q,De,$,Y,tt,ae,bt="Base class for the output of a scheduler’s <code>step</code> function.",Te,Z,ye,ce,Ie;return L=new He({props:{title:"DEISMultistepScheduler",local:"deismultistepscheduler",headingTag:"h1"}}),H=new He({props:{title:"Tips",local:"tips",headingTag:"h2"}}),F=new He({props:{title:"DEISMultistepScheduler",local:"diffusers.DEISMultistepScheduler",headingTag:"h2"}}),V=new S({props:{name:"class diffusers.DEISMultistepScheduler",anchor:"diffusers.DEISMultistepScheduler",parameters:[{name:"num_train_timesteps",val:": int = 1000"},{name:"beta_start",val:": float = 0.0001"},{name:"beta_end",val:": float = 0.02"},{name:"beta_schedule",val:": str = 'linear'"},{name:"trained_betas",val:": Optional = None"},{name:"solver_order",val:": int = 2"},{name:"prediction_type",val:": str = 'epsilon'"},{name:"thresholding",val:": bool = False"},{name:"dynamic_thresholding_ratio",val:": float = 0.995"},{name:"sample_max_value",val:": float = 1.0"},{name:"algorithm_type",val:": str = 'deis'"},{name:"solver_type",val:": str = 'logrho'"},{name:"lower_order_final",val:": bool = True"},{name:"use_karras_sigmas",val:": Optional = False"},{name:"timestep_spacing",val:": str = 'linspace'"},{name:"steps_offset",val:": int = 0"}],parametersDescription:[{anchor:"diffusers.DEISMultistepScheduler.num_train_timesteps",description:`<strong>num_train_timesteps</strong> (<code>int</code>, defaults to 1000) &#x2014;
The number of diffusion steps to train the model.`,name:"num_train_timesteps"},{anchor:"diffusers.DEISMultistepScheduler.beta_start",description:`<strong>beta_start</strong> (<code>float</code>, defaults to 0.0001) &#x2014;
The starting <code>beta</code> value of inference.`,name:"beta_start"},{anchor:"diffusers.DEISMultistepScheduler.beta_end",description:`<strong>beta_end</strong> (<code>float</code>, defaults to 0.02) &#x2014;
The final <code>beta</code> value.`,name:"beta_end"},{anchor:"diffusers.DEISMultistepScheduler.beta_schedule",description:`<strong>beta_schedule</strong> (<code>str</code>, defaults to <code>&quot;linear&quot;</code>) &#x2014;
The beta schedule, a mapping from a beta range to a sequence of betas for stepping the model. Choose from
<code>linear</code>, <code>scaled_linear</code>, or <code>squaredcos_cap_v2</code>.`,name:"beta_schedule"},{anchor:"diffusers.DEISMultistepScheduler.trained_betas",description:`<strong>trained_betas</strong> (<code>np.ndarray</code>, <em>optional</em>) &#x2014;
Pass an array of betas directly to the constructor to bypass <code>beta_start</code> and <code>beta_end</code>.`,name:"trained_betas"},{anchor:"diffusers.DEISMultistepScheduler.solver_order",description:`<strong>solver_order</strong> (<code>int</code>, defaults to 2) &#x2014;
The DEIS order which can be <code>1</code> or <code>2</code> or <code>3</code>. It is recommended to use <code>solver_order=2</code> for guided
sampling, and <code>solver_order=3</code> for unconditional sampling.`,name:"solver_order"},{anchor:"diffusers.DEISMultistepScheduler.prediction_type",description:`<strong>prediction_type</strong> (<code>str</code>, defaults to <code>epsilon</code>) &#x2014;
Prediction type of the scheduler function; can be <code>epsilon</code> (predicts the noise of the diffusion process),
<code>sample</code> (directly predicts the noisy sample<code>) or </code>v_prediction\` (see section 2.4 of <a href="https://imagen.research.google/video/paper.pdf" rel="nofollow">Imagen
Video</a> paper).`,name:"prediction_type"},{anchor:"diffusers.DEISMultistepScheduler.thresholding",description:`<strong>thresholding</strong> (<code>bool</code>, defaults to <code>False</code>) &#x2014;
Whether to use the &#x201C;dynamic thresholding&#x201D; method. This is unsuitable for latent-space diffusion models such
as Stable Diffusion.`,name:"thresholding"},{anchor:"diffusers.DEISMultistepScheduler.dynamic_thresholding_ratio",description:`<strong>dynamic_thresholding_ratio</strong> (<code>float</code>, defaults to 0.995) &#x2014;
The ratio for the dynamic thresholding method. Valid only when <code>thresholding=True</code>.`,name:"dynamic_thresholding_ratio"},{anchor:"diffusers.DEISMultistepScheduler.sample_max_value",description:`<strong>sample_max_value</strong> (<code>float</code>, defaults to 1.0) &#x2014;
The threshold value for dynamic thresholding. Valid only when <code>thresholding=True</code>.`,name:"sample_max_value"},{anchor:"diffusers.DEISMultistepScheduler.algorithm_type",description:`<strong>algorithm_type</strong> (<code>str</code>, defaults to <code>deis</code>) &#x2014;
The algorithm type for the solver.`,name:"algorithm_type"},{anchor:"diffusers.DEISMultistepScheduler.lower_order_final",description:`<strong>lower_order_final</strong> (<code>bool</code>, defaults to <code>True</code>) &#x2014;
Whether to use lower-order solvers in the final steps. Only valid for &lt; 15 inference steps.`,name:"lower_order_final"},{anchor:"diffusers.DEISMultistepScheduler.use_karras_sigmas",description:`<strong>use_karras_sigmas</strong> (<code>bool</code>, <em>optional</em>, defaults to <code>False</code>) &#x2014;
Whether to use Karras sigmas for step sizes in the noise schedule during the sampling process. If <code>True</code>,
the sigmas are determined according to a sequence of noise levels {&#x3C3;i}.`,name:"use_karras_sigmas"},{anchor:"diffusers.DEISMultistepScheduler.timestep_spacing",description:`<strong>timestep_spacing</strong> (<code>str</code>, defaults to <code>&quot;linspace&quot;</code>) &#x2014;
The way the timesteps should be scaled. Refer to Table 2 of the <a href="https://huggingface.co/papers/2305.08891" rel="nofollow">Common Diffusion Noise Schedules and
Sample Steps are Flawed</a> for more information.`,name:"timestep_spacing"},{anchor:"diffusers.DEISMultistepScheduler.steps_offset",description:`<strong>steps_offset</strong> (<code>int</code>, defaults to 0) &#x2014;
An offset added to the inference steps, as required by some model families.`,name:"steps_offset"}],source:"https://github.com/huggingface/diffusers/blob/main/src/diffusers/schedulers/scheduling_deis_multistep.py#L74"}}),N=new S({props:{name:"convert_model_output",anchor:"diffusers.DEISMultistepScheduler.convert_model_output",parameters:[{name:"model_output",val:": Tensor"},{name:"*args",val:""},{name:"sample",val:": Tensor = None"},{name:"**kwargs",val:""}],parametersDescription:[{anchor:"diffusers.DEISMultistepScheduler.convert_model_output.model_output",description:`<strong>model_output</strong> (<code>torch.Tensor</code>) &#x2014;
The direct output from the learned diffusion model.`,name:"model_output"},{anchor:"diffusers.DEISMultistepScheduler.convert_model_output.timestep",description:`<strong>timestep</strong> (<code>int</code>) &#x2014;
The current discrete timestep in the diffusion chain.`,name:"timestep"},{anchor:"diffusers.DEISMultistepScheduler.convert_model_output.sample",description:`<strong>sample</strong> (<code>torch.Tensor</code>) &#x2014;
A current instance of a sample created by the diffusion process.`,name:"sample"}],source:"https://github.com/huggingface/diffusers/blob/main/src/diffusers/schedulers/scheduling_deis_multistep.py#L369",returnDescription:`<script context="module">export const metadata = 'undefined';<\/script>
<p>The converted model output.</p>
`,returnType:`<script context="module">export const metadata = 'undefined';<\/script>
<p><code>torch.Tensor</code></p>
`}}),j=new S({props:{name:"deis_first_order_update",anchor:"diffusers.DEISMultistepScheduler.deis_first_order_update",parameters:[{name:"model_output",val:": Tensor"},{name:"*args",val:""},{name:"sample",val:": Tensor = None"},{name:"**kwargs",val:""}],parametersDescription:[{anchor:"diffusers.DEISMultistepScheduler.deis_first_order_update.model_output",description:`<strong>model_output</strong> (<code>torch.Tensor</code>) &#x2014;
The direct output from the learned diffusion model.`,name:"model_output"},{anchor:"diffusers.DEISMultistepScheduler.deis_first_order_update.timestep",description:`<strong>timestep</strong> (<code>int</code>) &#x2014;
The current discrete timestep in the diffusion chain.`,name:"timestep"},{anchor:"diffusers.DEISMultistepScheduler.deis_first_order_update.prev_timestep",description:`<strong>prev_timestep</strong> (<code>int</code>) &#x2014;
The previous discrete timestep in the diffusion chain.`,name:"prev_timestep"},{anchor:"diffusers.DEISMultistepScheduler.deis_first_order_update.sample",description:`<strong>sample</strong> (<code>torch.Tensor</code>) &#x2014;
A current instance of a sample created by the diffusion process.`,name:"sample"}],source:"https://github.com/huggingface/diffusers/blob/main/src/diffusers/schedulers/scheduling_deis_multistep.py#L426",returnDescription:`<script context="module">export const metadata = 'undefined';<\/script>
<p>The sample tensor at the previous timestep.</p>
`,returnType:`<script context="module">export const metadata = 'undefined';<\/script>
<p><code>torch.Tensor</code></p>
`}}),R=new S({props:{name:"multistep_deis_second_order_update",anchor:"diffusers.DEISMultistepScheduler.multistep_deis_second_order_update",parameters:[{name:"model_output_list",val:": List"},{name:"*args",val:""},{name:"sample",val:": Tensor = None"},{name:"**kwargs",val:""}],parametersDescription:[{anchor:"diffusers.DEISMultistepScheduler.multistep_deis_second_order_update.model_output_list",description:`<strong>model_output_list</strong> (<code>List[torch.Tensor]</code>) &#x2014;
The direct outputs from learned diffusion model at current and latter timesteps.`,name:"model_output_list"},{anchor:"diffusers.DEISMultistepScheduler.multistep_deis_second_order_update.sample",description:`<strong>sample</strong> (<code>torch.Tensor</code>) &#x2014;
A current instance of a sample created by the diffusion process.`,name:"sample"}],source:"https://github.com/huggingface/diffusers/blob/main/src/diffusers/schedulers/scheduling_deis_multistep.py#L484",returnDescription:`<script context="module">export const metadata = 'undefined';<\/script>
<p>The sample tensor at the previous timestep.</p>
`,returnType:`<script context="module">export const metadata = 'undefined';<\/script>
<p><code>torch.Tensor</code></p>
`}}),U=new S({props:{name:"multistep_deis_third_order_update",anchor:"diffusers.DEISMultistepScheduler.multistep_deis_third_order_update",parameters:[{name:"model_output_list",val:": List"},{name:"*args",val:""},{name:"sample",val:": Tensor = None"},{name:"**kwargs",val:""}],parametersDescription:[{anchor:"diffusers.DEISMultistepScheduler.multistep_deis_third_order_update.model_output_list",description:`<strong>model_output_list</strong> (<code>List[torch.Tensor]</code>) &#x2014;
The direct outputs from learned diffusion model at current and latter timesteps.`,name:"model_output_list"},{anchor:"diffusers.DEISMultistepScheduler.multistep_deis_third_order_update.sample",description:`<strong>sample</strong> (<code>torch.Tensor</code>) &#x2014;
A current instance of a sample created by diffusion process.`,name:"sample"}],source:"https://github.com/huggingface/diffusers/blob/main/src/diffusers/schedulers/scheduling_deis_multistep.py#L553",returnDescription:`<script context="module">export const metadata = 'undefined';<\/script>
<p>The sample tensor at the previous timestep.</p>
`,returnType:`<script context="module">export const metadata = 'undefined';<\/script>
<p><code>torch.Tensor</code></p>
`}}),W=new S({props:{name:"scale_model_input",anchor:"diffusers.DEISMultistepScheduler.scale_model_input",parameters:[{name:"sample",val:": Tensor"},{name:"*args",val:""},{name:"**kwargs",val:""}],parametersDescription:[{anchor:"diffusers.DEISMultistepScheduler.scale_model_input.sample",description:`<strong>sample</strong> (<code>torch.Tensor</code>) &#x2014;
The input sample.`,name:"sample"}],source:"https://github.com/huggingface/diffusers/blob/main/src/diffusers/schedulers/scheduling_deis_multistep.py#L739",returnDescription:`<script context="module">export const metadata = 'undefined';<\/script>
<p>A scaled input sample.</p>
`,returnType:`<script context="module">export const metadata = 'undefined';<\/script>
<p><code>torch.Tensor</code></p>
`}}),B=new S({props:{name:"set_begin_index",anchor:"diffusers.DEISMultistepScheduler.set_begin_index",parameters:[{name:"begin_index",val:": int = 0"}],parametersDescription:[{anchor:"diffusers.DEISMultistepScheduler.set_begin_index.begin_index",description:`<strong>begin_index</strong> (<code>int</code>) &#x2014;
The begin index for the scheduler.`,name:"begin_index"}],source:"https://github.com/huggingface/diffusers/blob/main/src/diffusers/schedulers/scheduling_deis_multistep.py#L206"}}),G=new S({props:{name:"set_timesteps",anchor:"diffusers.DEISMultistepScheduler.set_timesteps",parameters:[{name:"num_inference_steps",val:": int"},{name:"device",val:": Union = None"}],parametersDescription:[{anchor:"diffusers.DEISMultistepScheduler.set_timesteps.num_inference_steps",description:`<strong>num_inference_steps</strong> (<code>int</code>) &#x2014;
The number of diffusion steps used when generating samples with a pre-trained model.`,name:"num_inference_steps"},{anchor:"diffusers.DEISMultistepScheduler.set_timesteps.device",description:`<strong>device</strong> (<code>str</code> or <code>torch.device</code>, <em>optional</em>) &#x2014;
The device to which the timesteps should be moved to. If <code>None</code>, the timesteps are not moved.`,name:"device"}],source:"https://github.com/huggingface/diffusers/blob/main/src/diffusers/schedulers/scheduling_deis_multistep.py#L216"}}),K=new S({props:{name:"step",anchor:"diffusers.DEISMultistepScheduler.step",parameters:[{name:"model_output",val:": Tensor"},{name:"timestep",val:": Union"},{name:"sample",val:": Tensor"},{name:"return_dict",val:": bool = True"}],parametersDescription:[{anchor:"diffusers.DEISMultistepScheduler.step.model_output",description:`<strong>model_output</strong> (<code>torch.Tensor</code>) &#x2014;
The direct output from learned diffusion model.`,name:"model_output"},{anchor:"diffusers.DEISMultistepScheduler.step.timestep",description:`<strong>timestep</strong> (<code>int</code>) &#x2014;
The current discrete timestep in the diffusion chain.`,name:"timestep"},{anchor:"diffusers.DEISMultistepScheduler.step.sample",description:`<strong>sample</strong> (<code>torch.Tensor</code>) &#x2014;
A current instance of a sample created by the diffusion process.`,name:"sample"},{anchor:"diffusers.DEISMultistepScheduler.step.return_dict",description:`<strong>return_dict</strong> (<code>bool</code>) &#x2014;
Whether or not to return a <a href="/docs/diffusers/main/en/api/schedulers/dpm_discrete_ancestral#diffusers.schedulers.scheduling_utils.SchedulerOutput">SchedulerOutput</a> or <code>tuple</code>.`,name:"return_dict"}],source:"https://github.com/huggingface/diffusers/blob/main/src/diffusers/schedulers/scheduling_deis_multistep.py#L674",returnDescription:`<script context="module">export const metadata = 'undefined';<\/script>
<p>If return_dict is <code>True</code>, <a
href="/docs/diffusers/main/en/api/schedulers/dpm_discrete_ancestral#diffusers.schedulers.scheduling_utils.SchedulerOutput"
>SchedulerOutput</a> is returned, otherwise a
tuple is returned where the first element is the sample tensor.</p>
`,returnType:`<script context="module">export const metadata = 'undefined';<\/script>
<p><a
href="/docs/diffusers/main/en/api/schedulers/dpm_discrete_ancestral#diffusers.schedulers.scheduling_utils.SchedulerOutput"
>SchedulerOutput</a> or <code>tuple</code></p>
`}}),Q=new He({props:{title:"SchedulerOutput",local:"diffusers.schedulers.scheduling_utils.SchedulerOutput",headingTag:"h2"}}),Y=new S({props:{name:"class diffusers.schedulers.scheduling_utils.SchedulerOutput",anchor:"diffusers.schedulers.scheduling_utils.SchedulerOutput",parameters:[{name:"prev_sample",val:": Tensor"}],parametersDescription:[{anchor:"diffusers.schedulers.scheduling_utils.SchedulerOutput.prev_sample",description:`<strong>prev_sample</strong> (<code>torch.Tensor</code> of shape <code>(batch_size, num_channels, height, width)</code> for images) &#x2014;
Computed sample <code>(x_{t-1})</code> of previous timestep. <code>prev_sample</code> should be used as next model input in the
denoising loop.`,name:"prev_sample"}],source:"https://github.com/huggingface/diffusers/blob/main/src/diffusers/schedulers/scheduling_utils.py#L60"}}),Z=new It({props:{source:"https://github.com/huggingface/diffusers/blob/main/docs/source/en/api/schedulers/deis.md"}}),{c(){x=i("meta"),ue=r(),le=i("p"),pe=r(),p(L.$$.fragment),me=r(),P=i("p"),P.innerHTML=rt,fe=r(),O=i("p"),O.innerHTML=nt,he=r(),k=i("p"),k.textContent=ot,ge=r(),q=i("p"),q.innerHTML=it,_e=r(),p(H.$$.fragment),ve=r(),z=i("p"),z.innerHTML=dt,be=r(),A=i("p"),A.innerHTML=at,Se=r(),p(F.$$.fragment),xe=r(),a=i("div"),p(V.$$.fragment),ze=r(),J=i("p"),J.innerHTML=lt,Ae=r(),X=i("p"),X.innerHTML=ct,Fe=r(),D=i("div"),p(N.$$.fragment),Ve=r(),ee=i("p"),ee.textContent=ut,Ne=r(),T=i("div"),p(j.$$.fragment),je=r(),te=i("p"),te.textContent=pt,Re=r(),y=i("div"),p(R.$$.fragment),Ue=r(),se=i("p"),se.textContent=mt,We=r(),I=i("div"),p(U.$$.fragment),Be=r(),re=i("p"),re.textContent=ft,Ge=r(),E=i("div"),p(W.$$.fragment),Ke=r(),ne=i("p"),ne.textContent=ht,Qe=r(),M=i("div"),p(B.$$.fragment),Ye=r(),oe=i("p"),oe.textContent=gt,Ze=r(),w=i("div"),p(G.$$.fragment),Je=r(),ie=i("p"),ie.textContent=_t,Xe=r(),C=i("div"),p(K.$$.fragment),et=r(),de=i("p"),de.textContent=vt,$e=r(),p(Q.$$.fragment),De=r(),$=i("div"),p(Y.$$.fragment),tt=r(),ae=i("p"),ae.innerHTML=bt,Te=r(),p(Z.$$.fragment),ye=r(),ce=i("p"),this.h()},l(e){const o=yt("svelte-u9bgzb",document.head);x=d(o,"META",{name:!0,content:!0}),o.forEach(t),ue=n(e),le=d(e,"P",{}),v(le).forEach(t),pe=n(e),m(L.$$.fragment,e),me=n(e),P=d(e,"P",{"data-svelte-h":!0}),u(P)!=="svelte-dg2wky"&&(P.innerHTML=rt),fe=n(e),O=d(e,"P",{"data-svelte-h":!0}),u(O)!=="svelte-2kur53"&&(O.innerHTML=nt),he=n(e),k=d(e,"P",{"data-svelte-h":!0}),u(k)!=="svelte-1cwsb16"&&(k.textContent=ot),ge=n(e),q=d(e,"P",{"data-svelte-h":!0}),u(q)!=="svelte-1qgxh8f"&&(q.innerHTML=it),_e=n(e),m(H.$$.fragment,e),ve=n(e),z=d(e,"P",{"data-svelte-h":!0}),u(z)!=="svelte-1wcaqyo"&&(z.innerHTML=dt),be=n(e),A=d(e,"P",{"data-svelte-h":!0}),u(A)!=="svelte-jfe2b1"&&(A.innerHTML=at),Se=n(e),m(F.$$.fragment,e),xe=n(e),a=d(e,"DIV",{class:!0});var c=v(a);m(V.$$.fragment,c),ze=n(c),J=d(c,"P",{"data-svelte-h":!0}),u(J)!=="svelte-1maiz98"&&(J.innerHTML=lt),Ae=n(c),X=d(c,"P",{"data-svelte-h":!0}),u(X)!=="svelte-linuuh"&&(X.innerHTML=ct),Fe=n(c),D=d(c,"DIV",{class:!0});var Ee=v(D);m(N.$$.fragment,Ee),Ve=n(Ee),ee=d(Ee,"P",{"data-svelte-h":!0}),u(ee)!=="svelte-10z04zf"&&(ee.textContent=ut),Ee.forEach(t),Ne=n(c),T=d(c,"DIV",{class:!0});var Me=v(T);m(j.$$.fragment,Me),je=n(Me),te=d(Me,"P",{"data-svelte-h":!0}),u(te)!=="svelte-9410ii"&&(te.textContent=pt),Me.forEach(t),Re=n(c),y=d(c,"DIV",{class:!0});var we=v(y);m(R.$$.fragment,we),Ue=n(we),se=d(we,"P",{"data-svelte-h":!0}),u(se)!=="svelte-4wni6b"&&(se.textContent=mt),we.forEach(t),We=n(c),I=d(c,"DIV",{class:!0});var Ce=v(I);m(U.$$.fragment,Ce),Be=n(Ce),re=d(Ce,"P",{"data-svelte-h":!0}),u(re)!=="svelte-cktso6"&&(re.textContent=ft),Ce.forEach(t),Ge=n(c),E=d(c,"DIV",{class:!0});var Le=v(E);m(W.$$.fragment,Le),Ke=n(Le),ne=d(Le,"P",{"data-svelte-h":!0}),u(ne)!=="svelte-1rkfgpx"&&(ne.textContent=ht),Le.forEach(t),Qe=n(c),M=d(c,"DIV",{class:!0});var Pe=v(M);m(B.$$.fragment,Pe),Ye=n(Pe),oe=d(Pe,"P",{"data-svelte-h":!0}),u(oe)!=="svelte-1k141rk"&&(oe.textContent=gt),Pe.forEach(t),Ze=n(c),w=d(c,"DIV",{class:!0});var Oe=v(w);m(G.$$.fragment,Oe),Je=n(Oe),ie=d(Oe,"P",{"data-svelte-h":!0}),u(ie)!=="svelte-1vzm9q"&&(ie.textContent=_t),Oe.forEach(t),Xe=n(c),C=d(c,"DIV",{class:!0});var ke=v(C);m(K.$$.fragment,ke),et=n(ke),de=d(ke,"P",{"data-svelte-h":!0}),u(de)!=="svelte-vbpl4u"&&(de.textContent=vt),ke.forEach(t),c.forEach(t),$e=n(e),m(Q.$$.fragment,e),De=n(e),$=d(e,"DIV",{class:!0});var qe=v($);m(Y.$$.fragment,qe),tt=n(qe),ae=d(qe,"P",{"data-svelte-h":!0}),u(ae)!=="svelte-6ojmkw"&&(ae.innerHTML=bt),qe.forEach(t),Te=n(e),m(Z.$$.fragment,e),ye=n(e),ce=d(e,"P",{}),v(ce).forEach(t),this.h()},h(){b(x,"name","hf:doc:metadata"),b(x,"content",Mt),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(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(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(I,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),b(E,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),b(M,"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(C,"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($,"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){s(document.head,x),l(e,ue,o),l(e,le,o),l(e,pe,o),f(L,e,o),l(e,me,o),l(e,P,o),l(e,fe,o),l(e,O,o),l(e,he,o),l(e,k,o),l(e,ge,o),l(e,q,o),l(e,_e,o),f(H,e,o),l(e,ve,o),l(e,z,o),l(e,be,o),l(e,A,o),l(e,Se,o),f(F,e,o),l(e,xe,o),l(e,a,o),f(V,a,null),s(a,ze),s(a,J),s(a,Ae),s(a,X),s(a,Fe),s(a,D),f(N,D,null),s(D,Ve),s(D,ee),s(a,Ne),s(a,T),f(j,T,null),s(T,je),s(T,te),s(a,Re),s(a,y),f(R,y,null),s(y,Ue),s(y,se),s(a,We),s(a,I),f(U,I,null),s(I,Be),s(I,re),s(a,Ge),s(a,E),f(W,E,null),s(E,Ke),s(E,ne),s(a,Qe),s(a,M),f(B,M,null),s(M,Ye),s(M,oe),s(a,Ze),s(a,w),f(G,w,null),s(w,Je),s(w,ie),s(a,Xe),s(a,C),f(K,C,null),s(C,et),s(C,de),l(e,$e,o),f(Q,e,o),l(e,De,o),l(e,$,o),f(Y,$,null),s($,tt),s($,ae),l(e,Te,o),f(Z,e,o),l(e,ye,o),l(e,ce,o),Ie=!0},p:xt,i(e){Ie||(h(L.$$.fragment,e),h(H.$$.fragment,e),h(F.$$.fragment,e),h(V.$$.fragment,e),h(N.$$.fragment,e),h(j.$$.fragment,e),h(R.$$.fragment,e),h(U.$$.fragment,e),h(W.$$.fragment,e),h(B.$$.fragment,e),h(G.$$.fragment,e),h(K.$$.fragment,e),h(Q.$$.fragment,e),h(Y.$$.fragment,e),h(Z.$$.fragment,e),Ie=!0)},o(e){g(L.$$.fragment,e),g(H.$$.fragment,e),g(F.$$.fragment,e),g(V.$$.fragment,e),g(N.$$.fragment,e),g(j.$$.fragment,e),g(R.$$.fragment,e),g(U.$$.fragment,e),g(W.$$.fragment,e),g(B.$$.fragment,e),g(G.$$.fragment,e),g(K.$$.fragment,e),g(Q.$$.fragment,e),g(Y.$$.fragment,e),g(Z.$$.fragment,e),Ie=!1},d(e){e&&(t(ue),t(le),t(pe),t(me),t(P),t(fe),t(O),t(he),t(k),t(ge),t(q),t(_e),t(ve),t(z),t(be),t(A),t(Se),t(xe),t(a),t($e),t(De),t($),t(Te),t(ye),t(ce)),t(x),_(L,e),_(H,e),_(F,e),_(V),_(N),_(j),_(R),_(U),_(W),_(B),_(G),_(K),_(Q,e),_(Y),_(Z,e)}}}const Mt='{"title":"DEISMultistepScheduler","local":"deismultistepscheduler","sections":[{"title":"Tips","local":"tips","sections":[],"depth":2},{"title":"DEISMultistepScheduler","local":"diffusers.DEISMultistepScheduler","sections":[],"depth":2},{"title":"SchedulerOutput","local":"diffusers.schedulers.scheduling_utils.SchedulerOutput","sections":[],"depth":2}],"depth":1}';function wt(st){return $t(()=>{new URLSearchParams(window.location.search).get("fw")}),[]}class kt extends Dt{constructor(x){super(),Tt(this,x,wt,Et,St,{})}}export{kt as component};

Xet Storage Details

Size:
27.7 kB
·
Xet hash:
81366dea23b7fe7c6fbad64788dc9e0854f6afb260181a3e53f9d6172137579f

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