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 i,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 G}from"../chunks/Docstring.ee4b6913.js";import{H as ve,E as He}from"../chunks/EditOnGithub.1e64e623.js";function qe($e){let _,K,W,B,T,J,w,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,y,X,a,C,ce,z,De="Ancestral sampling with Euler method steps.",de,I,Ee=`This model inherits from <a href="/docs/diffusers/v0.30.2/en/api/schedulers/overview#diffusers.SchedulerMixin">SchedulerMixin</a> and <a href="/docs/diffusers/v0.30.2/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,Te="Sets the discrete timesteps used for the diffusion chain (to be run before inference).",ge,D,M,_e,F,we=`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,R,ye="Output class for the scheduler’s <code>step</code> function output.",ee,q,te,j,re;return T=new ve({props:{title:"EulerAncestralDiscreteScheduler",local:"eulerancestraldiscretescheduler",headingTag:"h1"}}),y=new ve({props:{title:"EulerAncestralDiscreteScheduler",local:"diffusers.EulerAncestralDiscreteScheduler",headingTag:"h2"}}),C=new G({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:": Union = 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/v0.30.2/src/diffusers/schedulers/scheduling_euler_ancestral_discrete.py#L132"}}),L=new G({props:{name:"scale_model_input",anchor:"diffusers.EulerAncestralDiscreteScheduler.scale_model_input",parameters:[{name:"sample",val:": Tensor"},{name:"timestep",val:": Union"}],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/v0.30.2/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 G({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/v0.30.2/src/diffusers/schedulers/scheduling_euler_ancestral_discrete.py#L243"}}),P=new G({props:{name:"set_timesteps",anchor:"diffusers.EulerAncestralDiscreteScheduler.set_timesteps",parameters:[{name:"num_inference_steps",val:": int"},{name:"device",val:": Union = 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/v0.30.2/src/diffusers/schedulers/scheduling_euler_ancestral_discrete.py#L277"}}),M=new G({props:{name:"step",anchor:"diffusers.EulerAncestralDiscreteScheduler.step",parameters:[{name:"model_output",val:": Tensor"},{name:"timestep",val:": Union"},{name:"sample",val:": Tensor"},{name:"generator",val:": Optional = 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/v0.30.2/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/v0.30.2/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/v0.30.2/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/v0.30.2/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 G({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:": Optional = 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/v0.30.2/src/diffusers/schedulers/scheduling_euler_ancestral_discrete.py#L31"}}),q=new He({props:{source:"https://github.com/huggingface/diffusers/blob/main/docs/source/en/api/schedulers/euler_ancestral.md"}}),{c(){_=i("meta"),K=n(),W=i("p"),B=n(),u(T.$$.fragment),J=n(),w=i("p"),w.innerHTML=xe,Q=n(),u(y.$$.fragment),X=n(),a=i("div"),u(C.$$.fragment),ce=n(),z=i("p"),z.textContent=De,de=n(),I=i("p"),I.innerHTML=Ee,le=n(),v=i("div"),u(L.$$.fragment),ue=n(),N=i("p"),N.innerHTML=Se,pe=n(),$=i("div"),u(O.$$.fragment),fe=n(),V=i("p"),V.textContent=Ae,he=n(),x=i("div"),u(P.$$.fragment),me=n(),U=i("p"),U.textContent=Te,ge=n(),D=i("div"),u(M.$$.fragment),_e=n(),F=i("p"),F.textContent=we,Y=n(),u(k.$$.fragment),Z=n(),b=i("div"),u(H.$$.fragment),be=n(),R=i("p"),R.innerHTML=ye,ee=n(),u(q.$$.fragment),te=n(),j=i("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(T.$$.fragment,e),J=o(e),w=c(e,"P",{"data-svelte-h":!0}),S(w)!=="svelte-mxywa3"&&(w.innerHTML=xe),Q=o(e),p(y.$$.fragment,e),X=o(e),a=c(e,"DIV",{class:!0});var d=E(a);p(C.$$.fragment,d),ce=o(d),z=c(d,"P",{"data-svelte-h":!0}),S(z)!=="svelte-15vtfhh"&&(z.textContent=De),de=o(d),I=c(d,"P",{"data-svelte-h":!0}),S(I)!=="svelte-1k0gvqx"&&(I.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=Te),oe.forEach(t),ge=o(d),D=c(d,"DIV",{class:!0});var ae=E(D);p(M.$$.fragment,ae),_e=o(ae),F=c(ae,"P",{"data-svelte-h":!0}),S(F)!=="svelte-hi84tp"&&(F.textContent=we),ae.forEach(t),d.forEach(t),Y=o(e),p(k.$$.fragment,e),Z=o(e),b=c(e,"DIV",{class:!0});var ie=E(b);p(H.$$.fragment,ie),be=o(ie),R=c(ie,"P",{"data-svelte-h":!0}),S(R)!=="svelte-id9kic"&&(R.innerHTML=ye),ie.forEach(t),ee=o(e),p(q.$$.fragment,e),te=o(e),j=c(e,"P",{}),E(j).forEach(t),this.h()},h(){A(_,"name","hf:doc:metadata"),A(_,"content",ze),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(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(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(T,e,s),l(e,J,s),l(e,w,s),l(e,Q,s),f(y,e,s),l(e,X,s),l(e,a,s),f(C,a,null),r(a,ce),r(a,z),r(a,de),r(a,I),r(a,le),r(a,v),f(L,v,null),r(v,ue),r(v,N),r(a,pe),r(a,$),f(O,$,null),r($,fe),r($,V),r(a,he),r(a,x),f(P,x,null),r(x,me),r(x,U),r(a,ge),r(a,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,R),l(e,ee,s),f(q,e,s),l(e,te,s),l(e,j,s),re=!0},p:Le,i(e){re||(h(T.$$.fragment,e),h(y.$$.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(q.$$.fragment,e),re=!0)},o(e){m(T.$$.fragment,e),m(y.$$.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(q.$$.fragment,e),re=!1},d(e){e&&(t(K),t(W),t(B),t(J),t(w),t(Q),t(X),t(a),t(Y),t(Z),t(b),t(ee),t(te),t(j)),t(_),g(T,e),g(y,e),g(C),g(L),g(O),g(P),g(M),g(k,e),g(H),g(q,e)}}}const ze='{"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 Ie($e){return Oe(()=>{new URLSearchParams(window.location.search).get("fw")}),[]}class Re extends Pe{constructor(_){super(),Me(this,_,Ie,qe,Ce,{})}}export{Re as component}; | |
Xet Storage Details
- Size:
- 17.1 kB
- Xet hash:
- aa38f3d2912ae2a409ead288207c74a8126c25d60562d0987ecb3afd9f6affad
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.