Buckets:
| import{s as Ce,n as Le,o as Oe}from"../chunks/scheduler.8c3d61f6.js";import{S as Pe,i as Me,g as a,s as n,r as u,A as ke,h as c,f as t,c as o,j as E,u as p,x as S,k as A,y as r,a as l,v as f,d as h,t as m,w as g}from"../chunks/index.da70eac4.js";import{D as R}from"../chunks/Docstring.9419aa1d.js";import{H as ve,E as He}from"../chunks/getInferenceSnippets.39110341.js";function ze($e){let _,K,W,B,y,J,T,xe='A scheduler that uses ancestral sampling with Euler method steps. This is a fast scheduler which can often generate good outputs in 20-30 steps. The scheduler is based on the original <a href="https://github.com/crowsonkb/k-diffusion/blob/481677d114f6ea445aa009cf5bd7a9cdee909e47/k_diffusion/sampling.py#L72" rel="nofollow">k-diffusion</a> implementation by <a href="https://github.com/crowsonkb/" rel="nofollow">Katherine Crowson</a>.',Q,w,X,i,C,ce,I,De="Ancestral sampling with Euler method steps.",de,q,Ee=`This model inherits from <a href="/docs/diffusers/pr_11340/en/api/schedulers/overview#diffusers.SchedulerMixin">SchedulerMixin</a> and <a href="/docs/diffusers/pr_11340/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.`,le,v,L,ue,N,Se=`Ensures interchangeability with schedulers that need to scale the denoising model input depending on the | |
| current timestep. Scales the denoising model input by <code>(sigma**2 + 1) ** 0.5</code> to match the Euler algorithm.`,pe,$,O,fe,V,Ae="Sets the begin index for the scheduler. This function should be run from pipeline before the inference.",he,x,P,me,U,ye="Sets the discrete timesteps used for the diffusion chain (to be run before inference).",ge,D,M,_e,F,Te=`Predict the sample from the previous timestep by reversing the SDE. This function propagates the diffusion | |
| process from the learned model outputs (most often the predicted noise).`,Y,k,Z,b,H,be,G,we="Output class for the scheduler’s <code>step</code> function output.",ee,z,te,j,re;return y=new ve({props:{title:"EulerAncestralDiscreteScheduler",local:"eulerancestraldiscretescheduler",headingTag:"h1"}}),w=new ve({props:{title:"EulerAncestralDiscreteScheduler",local:"diffusers.EulerAncestralDiscreteScheduler",headingTag:"h2"}}),C=new R({props:{name:"class diffusers.EulerAncestralDiscreteScheduler",anchor:"diffusers.EulerAncestralDiscreteScheduler",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:": typing.Union[numpy.ndarray, typing.List[float], NoneType] = None"},{name:"prediction_type",val:": str = 'epsilon'"},{name:"timestep_spacing",val:": str = 'linspace'"},{name:"steps_offset",val:": int = 0"},{name:"rescale_betas_zero_snr",val:": bool = False"}],parametersDescription:[{anchor:"diffusers.EulerAncestralDiscreteScheduler.num_train_timesteps",description:`<strong>num_train_timesteps</strong> (<code>int</code>, defaults to 1000) — | |
| The number of diffusion steps to train the model.`,name:"num_train_timesteps"},{anchor:"diffusers.EulerAncestralDiscreteScheduler.beta_start",description:`<strong>beta_start</strong> (<code>float</code>, defaults to 0.0001) — | |
| The starting <code>beta</code> value of inference.`,name:"beta_start"},{anchor:"diffusers.EulerAncestralDiscreteScheduler.beta_end",description:`<strong>beta_end</strong> (<code>float</code>, defaults to 0.02) — | |
| The final <code>beta</code> value.`,name:"beta_end"},{anchor:"diffusers.EulerAncestralDiscreteScheduler.beta_schedule",description:`<strong>beta_schedule</strong> (<code>str</code>, defaults to <code>"linear"</code>) — | |
| The beta schedule, a mapping from a beta range to a sequence of betas for stepping the model. Choose from | |
| <code>linear</code> or <code>scaled_linear</code>.`,name:"beta_schedule"},{anchor:"diffusers.EulerAncestralDiscreteScheduler.trained_betas",description:`<strong>trained_betas</strong> (<code>np.ndarray</code>, <em>optional</em>) — | |
| 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.EulerAncestralDiscreteScheduler.prediction_type",description:`<strong>prediction_type</strong> (<code>str</code>, defaults to <code>epsilon</code>, <em>optional</em>) — | |
| 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.EulerAncestralDiscreteScheduler.timestep_spacing",description:`<strong>timestep_spacing</strong> (<code>str</code>, defaults to <code>"linspace"</code>) — | |
| 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.EulerAncestralDiscreteScheduler.steps_offset",description:`<strong>steps_offset</strong> (<code>int</code>, defaults to 0) — | |
| An offset added to the inference steps, as required by some model families.`,name:"steps_offset"},{anchor:"diffusers.EulerAncestralDiscreteScheduler.rescale_betas_zero_snr",description:`<strong>rescale_betas_zero_snr</strong> (<code>bool</code>, defaults to <code>False</code>) — | |
| Whether to rescale the betas to have zero terminal SNR. This enables the model to generate very bright and | |
| dark samples instead of limiting it to samples with medium brightness. Loosely related to | |
| <a href="https://github.com/huggingface/diffusers/blob/74fd735eb073eb1d774b1ab4154a0876eb82f055/examples/dreambooth/train_dreambooth.py#L506" rel="nofollow"><code>--offset_noise</code></a>.`,name:"rescale_betas_zero_snr"}],source:"https://github.com/huggingface/diffusers/blob/vr_11340/src/diffusers/schedulers/scheduling_euler_ancestral_discrete.py#L132"}}),L=new R({props:{name:"scale_model_input",anchor:"diffusers.EulerAncestralDiscreteScheduler.scale_model_input",parameters:[{name:"sample",val:": Tensor"},{name:"timestep",val:": typing.Union[float, torch.Tensor]"}],parametersDescription:[{anchor:"diffusers.EulerAncestralDiscreteScheduler.scale_model_input.sample",description:`<strong>sample</strong> (<code>torch.Tensor</code>) — | |
| The input sample.`,name:"sample"},{anchor:"diffusers.EulerAncestralDiscreteScheduler.scale_model_input.timestep",description:`<strong>timestep</strong> (<code>int</code>, <em>optional</em>) — | |
| The current timestep in the diffusion chain.`,name:"timestep"}],source:"https://github.com/huggingface/diffusers/blob/vr_11340/src/diffusers/schedulers/scheduling_euler_ancestral_discrete.py#L253",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> | |
| `}}),O=new R({props:{name:"set_begin_index",anchor:"diffusers.EulerAncestralDiscreteScheduler.set_begin_index",parameters:[{name:"begin_index",val:": int = 0"}],parametersDescription:[{anchor:"diffusers.EulerAncestralDiscreteScheduler.set_begin_index.begin_index",description:`<strong>begin_index</strong> (<code>int</code>) — | |
| The begin index for the scheduler.`,name:"begin_index"}],source:"https://github.com/huggingface/diffusers/blob/vr_11340/src/diffusers/schedulers/scheduling_euler_ancestral_discrete.py#L243"}}),P=new R({props:{name:"set_timesteps",anchor:"diffusers.EulerAncestralDiscreteScheduler.set_timesteps",parameters:[{name:"num_inference_steps",val:": int"},{name:"device",val:": typing.Union[str, torch.device] = None"}],parametersDescription:[{anchor:"diffusers.EulerAncestralDiscreteScheduler.set_timesteps.num_inference_steps",description:`<strong>num_inference_steps</strong> (<code>int</code>) — | |
| The number of diffusion steps used when generating samples with a pre-trained model.`,name:"num_inference_steps"},{anchor:"diffusers.EulerAncestralDiscreteScheduler.set_timesteps.device",description:`<strong>device</strong> (<code>str</code> or <code>torch.device</code>, <em>optional</em>) — | |
| 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/vr_11340/src/diffusers/schedulers/scheduling_euler_ancestral_discrete.py#L277"}}),M=new R({props:{name:"step",anchor:"diffusers.EulerAncestralDiscreteScheduler.step",parameters:[{name:"model_output",val:": Tensor"},{name:"timestep",val:": typing.Union[float, torch.Tensor]"},{name:"sample",val:": Tensor"},{name:"generator",val:": typing.Optional[torch._C.Generator] = None"},{name:"return_dict",val:": bool = True"}],parametersDescription:[{anchor:"diffusers.EulerAncestralDiscreteScheduler.step.model_output",description:`<strong>model_output</strong> (<code>torch.Tensor</code>) — | |
| The direct output from learned diffusion model.`,name:"model_output"},{anchor:"diffusers.EulerAncestralDiscreteScheduler.step.timestep",description:`<strong>timestep</strong> (<code>float</code>) — | |
| The current discrete timestep in the diffusion chain.`,name:"timestep"},{anchor:"diffusers.EulerAncestralDiscreteScheduler.step.sample",description:`<strong>sample</strong> (<code>torch.Tensor</code>) — | |
| A current instance of a sample created by the diffusion process.`,name:"sample"},{anchor:"diffusers.EulerAncestralDiscreteScheduler.step.generator",description:`<strong>generator</strong> (<code>torch.Generator</code>, <em>optional</em>) — | |
| A random number generator.`,name:"generator"},{anchor:"diffusers.EulerAncestralDiscreteScheduler.step.return_dict",description:`<strong>return_dict</strong> (<code>bool</code>) — | |
| Whether or not to return a | |
| <a href="/docs/diffusers/pr_11340/en/api/schedulers/euler_ancestral#diffusers.schedulers.scheduling_euler_ancestral_discrete.EulerAncestralDiscreteSchedulerOutput">EulerAncestralDiscreteSchedulerOutput</a> or tuple.`,name:"return_dict"}],source:"https://github.com/huggingface/diffusers/blob/vr_11340/src/diffusers/schedulers/scheduling_euler_ancestral_discrete.py#L345",returnDescription:`<script context="module">export const metadata = 'undefined';<\/script> | |
| <p>If return_dict is <code>True</code>, | |
| <a | |
| href="/docs/diffusers/pr_11340/en/api/schedulers/euler_ancestral#diffusers.schedulers.scheduling_euler_ancestral_discrete.EulerAncestralDiscreteSchedulerOutput" | |
| >EulerAncestralDiscreteSchedulerOutput</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/pr_11340/en/api/schedulers/euler_ancestral#diffusers.schedulers.scheduling_euler_ancestral_discrete.EulerAncestralDiscreteSchedulerOutput" | |
| >EulerAncestralDiscreteSchedulerOutput</a> or <code>tuple</code></p> | |
| `}}),k=new ve({props:{title:"EulerAncestralDiscreteSchedulerOutput",local:"diffusers.schedulers.scheduling_euler_ancestral_discrete.EulerAncestralDiscreteSchedulerOutput",headingTag:"h2"}}),H=new R({props:{name:"class diffusers.schedulers.scheduling_euler_ancestral_discrete.EulerAncestralDiscreteSchedulerOutput",anchor:"diffusers.schedulers.scheduling_euler_ancestral_discrete.EulerAncestralDiscreteSchedulerOutput",parameters:[{name:"prev_sample",val:": Tensor"},{name:"pred_original_sample",val:": typing.Optional[torch.Tensor] = None"}],parametersDescription:[{anchor:"diffusers.schedulers.scheduling_euler_ancestral_discrete.EulerAncestralDiscreteSchedulerOutput.prev_sample",description:`<strong>prev_sample</strong> (<code>torch.Tensor</code> of shape <code>(batch_size, num_channels, height, width)</code> for images) — | |
| 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"},{anchor:"diffusers.schedulers.scheduling_euler_ancestral_discrete.EulerAncestralDiscreteSchedulerOutput.pred_original_sample",description:`<strong>pred_original_sample</strong> (<code>torch.Tensor</code> of shape <code>(batch_size, num_channels, height, width)</code> for images) — | |
| The predicted denoised sample <code>(x_{0})</code> based on the model output from the current timestep. | |
| <code>pred_original_sample</code> can be used to preview progress or for guidance.`,name:"pred_original_sample"}],source:"https://github.com/huggingface/diffusers/blob/vr_11340/src/diffusers/schedulers/scheduling_euler_ancestral_discrete.py#L31"}}),z=new He({props:{source:"https://github.com/huggingface/diffusers/blob/main/docs/source/en/api/schedulers/euler_ancestral.md"}}),{c(){_=a("meta"),K=n(),W=a("p"),B=n(),u(y.$$.fragment),J=n(),T=a("p"),T.innerHTML=xe,Q=n(),u(w.$$.fragment),X=n(),i=a("div"),u(C.$$.fragment),ce=n(),I=a("p"),I.textContent=De,de=n(),q=a("p"),q.innerHTML=Ee,le=n(),v=a("div"),u(L.$$.fragment),ue=n(),N=a("p"),N.innerHTML=Se,pe=n(),$=a("div"),u(O.$$.fragment),fe=n(),V=a("p"),V.textContent=Ae,he=n(),x=a("div"),u(P.$$.fragment),me=n(),U=a("p"),U.textContent=ye,ge=n(),D=a("div"),u(M.$$.fragment),_e=n(),F=a("p"),F.textContent=Te,Y=n(),u(k.$$.fragment),Z=n(),b=a("div"),u(H.$$.fragment),be=n(),G=a("p"),G.innerHTML=we,ee=n(),u(z.$$.fragment),te=n(),j=a("p"),this.h()},l(e){const s=ke("svelte-u9bgzb",document.head);_=c(s,"META",{name:!0,content:!0}),s.forEach(t),K=o(e),W=c(e,"P",{}),E(W).forEach(t),B=o(e),p(y.$$.fragment,e),J=o(e),T=c(e,"P",{"data-svelte-h":!0}),S(T)!=="svelte-mxywa3"&&(T.innerHTML=xe),Q=o(e),p(w.$$.fragment,e),X=o(e),i=c(e,"DIV",{class:!0});var d=E(i);p(C.$$.fragment,d),ce=o(d),I=c(d,"P",{"data-svelte-h":!0}),S(I)!=="svelte-15vtfhh"&&(I.textContent=De),de=o(d),q=c(d,"P",{"data-svelte-h":!0}),S(q)!=="svelte-hfi78r"&&(q.innerHTML=Ee),le=o(d),v=c(d,"DIV",{class:!0});var se=E(v);p(L.$$.fragment,se),ue=o(se),N=c(se,"P",{"data-svelte-h":!0}),S(N)!=="svelte-1hew89w"&&(N.innerHTML=Se),se.forEach(t),pe=o(d),$=c(d,"DIV",{class:!0});var ne=E($);p(O.$$.fragment,ne),fe=o(ne),V=c(ne,"P",{"data-svelte-h":!0}),S(V)!=="svelte-1k141rk"&&(V.textContent=Ae),ne.forEach(t),he=o(d),x=c(d,"DIV",{class:!0});var oe=E(x);p(P.$$.fragment,oe),me=o(oe),U=c(oe,"P",{"data-svelte-h":!0}),S(U)!=="svelte-1vzm9q"&&(U.textContent=ye),oe.forEach(t),ge=o(d),D=c(d,"DIV",{class:!0});var ie=E(D);p(M.$$.fragment,ie),_e=o(ie),F=c(ie,"P",{"data-svelte-h":!0}),S(F)!=="svelte-hi84tp"&&(F.textContent=Te),ie.forEach(t),d.forEach(t),Y=o(e),p(k.$$.fragment,e),Z=o(e),b=c(e,"DIV",{class:!0});var ae=E(b);p(H.$$.fragment,ae),be=o(ae),G=c(ae,"P",{"data-svelte-h":!0}),S(G)!=="svelte-id9kic"&&(G.innerHTML=we),ae.forEach(t),ee=o(e),p(z.$$.fragment,e),te=o(e),j=c(e,"P",{}),E(j).forEach(t),this.h()},h(){A(_,"name","hf:doc:metadata"),A(_,"content",Ie),A(v,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),A($,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),A(x,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),A(D,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),A(i,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),A(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,s){r(document.head,_),l(e,K,s),l(e,W,s),l(e,B,s),f(y,e,s),l(e,J,s),l(e,T,s),l(e,Q,s),f(w,e,s),l(e,X,s),l(e,i,s),f(C,i,null),r(i,ce),r(i,I),r(i,de),r(i,q),r(i,le),r(i,v),f(L,v,null),r(v,ue),r(v,N),r(i,pe),r(i,$),f(O,$,null),r($,fe),r($,V),r(i,he),r(i,x),f(P,x,null),r(x,me),r(x,U),r(i,ge),r(i,D),f(M,D,null),r(D,_e),r(D,F),l(e,Y,s),f(k,e,s),l(e,Z,s),l(e,b,s),f(H,b,null),r(b,be),r(b,G),l(e,ee,s),f(z,e,s),l(e,te,s),l(e,j,s),re=!0},p:Le,i(e){re||(h(y.$$.fragment,e),h(w.$$.fragment,e),h(C.$$.fragment,e),h(L.$$.fragment,e),h(O.$$.fragment,e),h(P.$$.fragment,e),h(M.$$.fragment,e),h(k.$$.fragment,e),h(H.$$.fragment,e),h(z.$$.fragment,e),re=!0)},o(e){m(y.$$.fragment,e),m(w.$$.fragment,e),m(C.$$.fragment,e),m(L.$$.fragment,e),m(O.$$.fragment,e),m(P.$$.fragment,e),m(M.$$.fragment,e),m(k.$$.fragment,e),m(H.$$.fragment,e),m(z.$$.fragment,e),re=!1},d(e){e&&(t(K),t(W),t(B),t(J),t(T),t(Q),t(X),t(i),t(Y),t(Z),t(b),t(ee),t(te),t(j)),t(_),g(y,e),g(w,e),g(C),g(L),g(O),g(P),g(M),g(k,e),g(H),g(z,e)}}}const Ie='{"title":"EulerAncestralDiscreteScheduler","local":"eulerancestraldiscretescheduler","sections":[{"title":"EulerAncestralDiscreteScheduler","local":"diffusers.EulerAncestralDiscreteScheduler","sections":[],"depth":2},{"title":"EulerAncestralDiscreteSchedulerOutput","local":"diffusers.schedulers.scheduling_euler_ancestral_discrete.EulerAncestralDiscreteSchedulerOutput","sections":[],"depth":2}],"depth":1}';function qe($e){return Oe(()=>{new URLSearchParams(window.location.search).get("fw")}),[]}class Ge extends Pe{constructor(_){super(),Me(this,_,qe,ze,Ce,{})}}export{Ge as component}; | |
Xet Storage Details
- Size:
- 17.3 kB
- Xet hash:
- 07374310451fb0d0eb2db2c903a5b83abc1d15637ae0f97f43d109de3dad04ed
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.