Buckets:
| import{s as ye,n as we,o as Ce}from"../chunks/scheduler.182ea377.js";import{S as Fe,i as ke,g as d,s as o,r as f,A as Oe,h as a,f as t,c as i,j as D,u as m,x as L,k as M,y as s,a as l,v as h,d as g,t as _,w as v}from"../chunks/index.abf12888.js";import{D as j}from"../chunks/Docstring.93f6f462.js";import{H as _e}from"../chunks/Heading.16916d63.js";function Pe(ve){let u,W,K,Y,T,B,y,be='<code>LMSDiscreteScheduler</code> is a linear multistep scheduler for discrete beta schedules. The scheduler is ported from and created by <a href="https://github.com/crowsonkb/" rel="nofollow">Katherine Crowson</a>, and the original implementation can be found at <a href="https://github.com/crowsonkb/k-diffusion/blob/481677d114f6ea445aa009cf5bd7a9cdee909e47/k_diffusion/sampling.py#L181" rel="nofollow">crowsonkb/k-diffusion</a>.',G,w,J,r,C,ie,q,Se="A linear multistep scheduler for discrete beta schedules.",de,H,$e=`This model inherits from <a href="/docs/diffusers/v0.22.0/en/api/schedulers/overview#diffusers.SchedulerMixin">SchedulerMixin</a> and <a href="/docs/diffusers/v0.22.0/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.`,ae,b,F,ce,V,xe="Compute the linear multistep coefficient.",le,S,k,ue,A,De=`Ensures interchangeability with schedulers that need to scale the denoising model input depending on the | |
| current timestep.`,pe,$,O,fe,N,Le="Sets the discrete timesteps used for the diffusion chain (to be run before inference).",me,x,P,he,z,Me=`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).`,Q,E,X,p,I,ge,U,Te="Output class for the scheduler’s <code>step</code> function output.",Z,R,ee;return T=new _e({props:{title:"LMSDiscreteScheduler",local:"lmsdiscretescheduler",headingTag:"h1"}}),w=new _e({props:{title:"LMSDiscreteScheduler",local:"diffusers.LMSDiscreteScheduler",headingTag:"h2"}}),C=new j({props:{name:"class diffusers.LMSDiscreteScheduler",anchor:"diffusers.LMSDiscreteScheduler",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:"use_karras_sigmas",val:": typing.Optional[bool] = False"},{name:"prediction_type",val:": str = 'epsilon'"},{name:"timestep_spacing",val:": str = 'linspace'"},{name:"steps_offset",val:": int = 0"}],parametersDescription:[{anchor:"diffusers.LMSDiscreteScheduler.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.LMSDiscreteScheduler.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.LMSDiscreteScheduler.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.LMSDiscreteScheduler.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.LMSDiscreteScheduler.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.LMSDiscreteScheduler.use_karras_sigmas",description:`<strong>use_karras_sigmas</strong> (<code>bool</code>, <em>optional</em>, defaults to <code>False</code>) — | |
| 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 {σi}.`,name:"use_karras_sigmas"},{anchor:"diffusers.LMSDiscreteScheduler.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.LMSDiscreteScheduler.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.LMSDiscreteScheduler.steps_offset",description:`<strong>steps_offset</strong> (<code>int</code>, defaults to 0) — | |
| An offset added to the inference steps. You can use a combination of <code>offset=1</code> and | |
| <code>set_alpha_to_one=False</code> to make the last step use step 0 for the previous alpha product like in Stable | |
| Diffusion.`,name:"steps_offset"}],source:"https://github.com/huggingface/diffusers/blob/v0.22.0/src/diffusers/schedulers/scheduling_lms_discrete.py#L92"}}),F=new j({props:{name:"get_lms_coefficient",anchor:"diffusers.LMSDiscreteScheduler.get_lms_coefficient",parameters:[{name:"order",val:""},{name:"t",val:""},{name:"current_order",val:""}],parametersDescription:[{anchor:"diffusers.LMSDiscreteScheduler.get_lms_coefficient.order",description:"<strong>order</strong> () —",name:"order"},{anchor:"diffusers.LMSDiscreteScheduler.get_lms_coefficient.t",description:"<strong>t</strong> () —",name:"t"},{anchor:"diffusers.LMSDiscreteScheduler.get_lms_coefficient.current_order",description:"<strong>current_order</strong> () —",name:"current_order"}],source:"https://github.com/huggingface/diffusers/blob/v0.22.0/src/diffusers/schedulers/scheduling_lms_discrete.py#L215"}}),k=new j({props:{name:"scale_model_input",anchor:"diffusers.LMSDiscreteScheduler.scale_model_input",parameters:[{name:"sample",val:": FloatTensor"},{name:"timestep",val:": typing.Union[float, torch.FloatTensor]"}],parametersDescription:[{anchor:"diffusers.LMSDiscreteScheduler.scale_model_input.sample",description:`<strong>sample</strong> (<code>torch.FloatTensor</code>) — | |
| The input sample.`,name:"sample"},{anchor:"diffusers.LMSDiscreteScheduler.scale_model_input.timestep",description:`<strong>timestep</strong> (<code>float</code> or <code>torch.FloatTensor</code>) — | |
| The current timestep in the diffusion chain.`,name:"timestep"}],source:"https://github.com/huggingface/diffusers/blob/v0.22.0/src/diffusers/schedulers/scheduling_lms_discrete.py#L189",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.FloatTensor</code></p> | |
| `}}),O=new j({props:{name:"set_timesteps",anchor:"diffusers.LMSDiscreteScheduler.set_timesteps",parameters:[{name:"num_inference_steps",val:": int"},{name:"device",val:": typing.Union[str, torch.device] = None"}],parametersDescription:[{anchor:"diffusers.LMSDiscreteScheduler.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.LMSDiscreteScheduler.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.22.0/src/diffusers/schedulers/scheduling_lms_discrete.py#L237"}}),P=new j({props:{name:"step",anchor:"diffusers.LMSDiscreteScheduler.step",parameters:[{name:"model_output",val:": FloatTensor"},{name:"timestep",val:": typing.Union[float, torch.FloatTensor]"},{name:"sample",val:": FloatTensor"},{name:"order",val:": int = 4"},{name:"return_dict",val:": bool = True"}],parametersDescription:[{anchor:"diffusers.LMSDiscreteScheduler.step.model_output",description:`<strong>model_output</strong> (<code>torch.FloatTensor</code>) — | |
| The direct output from learned diffusion model.`,name:"model_output"},{anchor:"diffusers.LMSDiscreteScheduler.step.timestep",description:`<strong>timestep</strong> (<code>float</code> or <code>torch.FloatTensor</code>) — | |
| The current discrete timestep in the diffusion chain.`,name:"timestep"},{anchor:"diffusers.LMSDiscreteScheduler.step.sample",description:`<strong>sample</strong> (<code>torch.FloatTensor</code>) — | |
| A current instance of a sample created by the diffusion process.`,name:"sample"},{anchor:"diffusers.LMSDiscreteScheduler.step.order",description:`<strong>order</strong> (<code>int</code>, defaults to 4) — | |
| The order of the linear multistep method.`,name:"order"},{anchor:"diffusers.LMSDiscreteScheduler.step.return_dict",description:`<strong>return_dict</strong> (<code>bool</code>, <em>optional</em>, defaults to <code>True</code>) — | |
| Whether or not to return a <a href="/docs/diffusers/v0.22.0/en/api/schedulers/dpm_discrete_ancestral#diffusers.schedulers.scheduling_utils.SchedulerOutput">SchedulerOutput</a> or tuple.`,name:"return_dict"}],source:"https://github.com/huggingface/diffusers/blob/v0.22.0/src/diffusers/schedulers/scheduling_lms_discrete.py#L343",returnDescription:`<script context="module">export const metadata = 'undefined';<\/script> | |
| <p>If return_dict is <code>True</code>, <a | |
| href="/docs/diffusers/v0.22.0/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/v0.22.0/en/api/schedulers/dpm_discrete_ancestral#diffusers.schedulers.scheduling_utils.SchedulerOutput" | |
| >SchedulerOutput</a> or <code>tuple</code></p> | |
| `}}),E=new _e({props:{title:"LMSDiscreteSchedulerOutput",local:"diffusers.schedulers.scheduling_lms_discrete.LMSDiscreteSchedulerOutput",headingTag:"h2"}}),I=new j({props:{name:"class diffusers.schedulers.scheduling_lms_discrete.LMSDiscreteSchedulerOutput",anchor:"diffusers.schedulers.scheduling_lms_discrete.LMSDiscreteSchedulerOutput",parameters:[{name:"prev_sample",val:": FloatTensor"},{name:"pred_original_sample",val:": typing.Optional[torch.FloatTensor] = None"}],parametersDescription:[{anchor:"diffusers.schedulers.scheduling_lms_discrete.LMSDiscreteSchedulerOutput.prev_sample",description:`<strong>prev_sample</strong> (<code>torch.FloatTensor</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_lms_discrete.LMSDiscreteSchedulerOutput.pred_original_sample",description:`<strong>pred_original_sample</strong> (<code>torch.FloatTensor</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.22.0/src/diffusers/schedulers/scheduling_lms_discrete.py#L30"}}),{c(){u=d("meta"),W=o(),K=d("p"),Y=o(),f(T.$$.fragment),B=o(),y=d("p"),y.innerHTML=be,G=o(),f(w.$$.fragment),J=o(),r=d("div"),f(C.$$.fragment),ie=o(),q=d("p"),q.textContent=Se,de=o(),H=d("p"),H.innerHTML=$e,ae=o(),b=d("div"),f(F.$$.fragment),ce=o(),V=d("p"),V.textContent=xe,le=o(),S=d("div"),f(k.$$.fragment),ue=o(),A=d("p"),A.textContent=De,pe=o(),$=d("div"),f(O.$$.fragment),fe=o(),N=d("p"),N.textContent=Le,me=o(),x=d("div"),f(P.$$.fragment),he=o(),z=d("p"),z.textContent=Me,Q=o(),f(E.$$.fragment),X=o(),p=d("div"),f(I.$$.fragment),ge=o(),U=d("p"),U.innerHTML=Te,Z=o(),R=d("p"),this.h()},l(e){const n=Oe("svelte-u9bgzb",document.head);u=a(n,"META",{name:!0,content:!0}),n.forEach(t),W=i(e),K=a(e,"P",{}),D(K).forEach(t),Y=i(e),m(T.$$.fragment,e),B=i(e),y=a(e,"P",{"data-svelte-h":!0}),L(y)!=="svelte-1otp9cb"&&(y.innerHTML=be),G=i(e),m(w.$$.fragment,e),J=i(e),r=a(e,"DIV",{class:!0});var c=D(r);m(C.$$.fragment,c),ie=i(c),q=a(c,"P",{"data-svelte-h":!0}),L(q)!=="svelte-1s0vl92"&&(q.textContent=Se),de=i(c),H=a(c,"P",{"data-svelte-h":!0}),L(H)!=="svelte-6ikkut"&&(H.innerHTML=$e),ae=i(c),b=a(c,"DIV",{class:!0});var te=D(b);m(F.$$.fragment,te),ce=i(te),V=a(te,"P",{"data-svelte-h":!0}),L(V)!=="svelte-l6j38t"&&(V.textContent=xe),te.forEach(t),le=i(c),S=a(c,"DIV",{class:!0});var se=D(S);m(k.$$.fragment,se),ue=i(se),A=a(se,"P",{"data-svelte-h":!0}),L(A)!=="svelte-1rkfgpx"&&(A.textContent=De),se.forEach(t),pe=i(c),$=a(c,"DIV",{class:!0});var re=D($);m(O.$$.fragment,re),fe=i(re),N=a(re,"P",{"data-svelte-h":!0}),L(N)!=="svelte-1vzm9q"&&(N.textContent=Le),re.forEach(t),me=i(c),x=a(c,"DIV",{class:!0});var ne=D(x);m(P.$$.fragment,ne),he=i(ne),z=a(ne,"P",{"data-svelte-h":!0}),L(z)!=="svelte-hi84tp"&&(z.textContent=Me),ne.forEach(t),c.forEach(t),Q=i(e),m(E.$$.fragment,e),X=i(e),p=a(e,"DIV",{class:!0});var oe=D(p);m(I.$$.fragment,oe),ge=i(oe),U=a(oe,"P",{"data-svelte-h":!0}),L(U)!=="svelte-id9kic"&&(U.innerHTML=Te),oe.forEach(t),Z=i(e),R=a(e,"P",{}),D(R).forEach(t),this.h()},h(){M(u,"name","hf:doc:metadata"),M(u,"content",Ee),M(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(S,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),M($,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),M(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(r,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),M(p,"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,n){s(document.head,u),l(e,W,n),l(e,K,n),l(e,Y,n),h(T,e,n),l(e,B,n),l(e,y,n),l(e,G,n),h(w,e,n),l(e,J,n),l(e,r,n),h(C,r,null),s(r,ie),s(r,q),s(r,de),s(r,H),s(r,ae),s(r,b),h(F,b,null),s(b,ce),s(b,V),s(r,le),s(r,S),h(k,S,null),s(S,ue),s(S,A),s(r,pe),s(r,$),h(O,$,null),s($,fe),s($,N),s(r,me),s(r,x),h(P,x,null),s(x,he),s(x,z),l(e,Q,n),h(E,e,n),l(e,X,n),l(e,p,n),h(I,p,null),s(p,ge),s(p,U),l(e,Z,n),l(e,R,n),ee=!0},p:we,i(e){ee||(g(T.$$.fragment,e),g(w.$$.fragment,e),g(C.$$.fragment,e),g(F.$$.fragment,e),g(k.$$.fragment,e),g(O.$$.fragment,e),g(P.$$.fragment,e),g(E.$$.fragment,e),g(I.$$.fragment,e),ee=!0)},o(e){_(T.$$.fragment,e),_(w.$$.fragment,e),_(C.$$.fragment,e),_(F.$$.fragment,e),_(k.$$.fragment,e),_(O.$$.fragment,e),_(P.$$.fragment,e),_(E.$$.fragment,e),_(I.$$.fragment,e),ee=!1},d(e){e&&(t(W),t(K),t(Y),t(B),t(y),t(G),t(J),t(r),t(Q),t(X),t(p),t(Z),t(R)),t(u),v(T,e),v(w,e),v(C),v(F),v(k),v(O),v(P),v(E,e),v(I)}}}const Ee='{"title":"LMSDiscreteScheduler","local":"lmsdiscretescheduler","sections":[{"title":"LMSDiscreteScheduler","local":"diffusers.LMSDiscreteScheduler","sections":[],"depth":2},{"title":"LMSDiscreteSchedulerOutput","local":"diffusers.schedulers.scheduling_lms_discrete.LMSDiscreteSchedulerOutput","sections":[],"depth":2}],"depth":1}';function Ie(ve){return Ce(()=>{new URLSearchParams(window.location.search).get("fw")}),[]}class Ne extends Fe{constructor(u){super(),ke(this,u,Ie,Pe,ye,{})}}export{Ne as component}; | |
Xet Storage Details
- Size:
- 16.4 kB
- Xet hash:
- 8280ab0ae7d0c4eec60d6fb9e19a9a64b8bfaa9295e6051b850509ba6c9b703c
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.