Buckets:
| import{s as Ce,n as Le,o as Oe}from"../chunks/scheduler.182ea377.js";import{S as qe,i as Ie,g as a,s as n,r as _,A as Ne,h as i,f as t,c as o,j as E,u as b,x as p,k as H,y as r,a as d,v,d as D,t as x,w as P}from"../chunks/index.abf12888.js";import{D as W}from"../chunks/Docstring.b0ac41bc.js";import{H as we,E as Ee}from"../chunks/EditOnGithub.9b8e78e4.js";function He(_e){let u,G,U,J,M,B,y,be='<a href="https://huggingface.co/papers/2006.11239" rel="nofollow">Denoising Diffusion Probabilistic Models</a> (DDPM) by Jonathan Ho, Ajay Jain and Pieter Abbeel proposes a diffusion based model of the same name. In the context of the 🤗 Diffusers library, DDPM refers to the discrete denoising scheduler from the paper as well as the pipeline.',K,$,ve="The abstract from the paper is:",Q,S,De='<em>We present high quality image synthesis results using diffusion probabilistic models, a class of latent variable models inspired by considerations from nonequilibrium thermodynamics. Our best results are obtained by training on a weighted variational bound designed according to a novel connection between diffusion probabilistic models and denoising score matching with Langevin dynamics, and our models naturally admit a progressive lossy decompression scheme that can be interpreted as a generalization of autoregressive decoding. On the unconditional CIFAR10 dataset, we obtain an Inception score of 9.46 and a state-of-the-art FID score of 3.17. On 256x256 LSUN, we obtain sample quality similar to ProgressiveGAN. Our implementation is available at <a href="https://github.com/hojonathanho/diffusion" rel="nofollow">this https URL</a>.</em>',X,T,Y,c,w,ie,A,xe="<code>DDPMScheduler</code> explores the connections between denoising score matching and Langevin dynamics sampling.",ce,z,Pe=`This model inherits from <a href="/docs/diffusers/v0.28.0/en/api/schedulers/overview#diffusers.SchedulerMixin">SchedulerMixin</a> and <a href="/docs/diffusers/v0.28.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.`,le,f,C,pe,V,Me=`Ensures interchangeability with schedulers that need to scale the denoising model input depending on the | |
| current timestep.`,ue,h,L,me,F,ye="Sets the discrete timesteps used for the diffusion chain (to be run before inference).",fe,g,O,he,k,$e=`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).`,Z,q,Se="## DDPMSchedulerOutput[[diffusers.schedulers.scheduling_ddpm.DDPMSchedulerOutput]]",ee,m,I,ge,R,Te="Output class for the scheduler’s <code>step</code> function output.",te,N,se,j,ne;return M=new we({props:{title:"DDPMScheduler",local:"ddpmscheduler",headingTag:"h1"}}),T=new we({props:{title:"DDPMScheduler",local:"diffusers.DDPMScheduler",headingTag:"h2"}}),w=new W({props:{name:"class diffusers.DDPMScheduler",anchor:"diffusers.DDPMScheduler",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:"variance_type",val:": str = 'fixed_small'"},{name:"clip_sample",val:": bool = True"},{name:"prediction_type",val:": str = 'epsilon'"},{name:"thresholding",val:": bool = False"},{name:"dynamic_thresholding_ratio",val:": float = 0.995"},{name:"clip_sample_range",val:": float = 1.0"},{name:"sample_max_value",val:": float = 1.0"},{name:"timestep_spacing",val:": str = 'leading'"},{name:"steps_offset",val:": int = 0"},{name:"rescale_betas_zero_snr",val:": int = False"}],parametersDescription:[{anchor:"diffusers.DDPMScheduler.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.DDPMScheduler.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.DDPMScheduler.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.DDPMScheduler.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>, <code>scaled_linear</code>, or <code>squaredcos_cap_v2</code>.`,name:"beta_schedule"},{anchor:"diffusers.DDPMScheduler.trained_betas",description:`<strong>trained_betas</strong> (<code>np.ndarray</code>, <em>optional</em>) — | |
| An array of betas to pass directly to the constructor without using <code>beta_start</code> and <code>beta_end</code>.`,name:"trained_betas"},{anchor:"diffusers.DDPMScheduler.variance_type",description:`<strong>variance_type</strong> (<code>str</code>, defaults to <code>"fixed_small"</code>) — | |
| Clip the variance when adding noise to the denoised sample. Choose from <code>fixed_small</code>, <code>fixed_small_log</code>, | |
| <code>fixed_large</code>, <code>fixed_large_log</code>, <code>learned</code> or <code>learned_range</code>.`,name:"variance_type"},{anchor:"diffusers.DDPMScheduler.clip_sample",description:`<strong>clip_sample</strong> (<code>bool</code>, defaults to <code>True</code>) — | |
| Clip the predicted sample for numerical stability.`,name:"clip_sample"},{anchor:"diffusers.DDPMScheduler.clip_sample_range",description:`<strong>clip_sample_range</strong> (<code>float</code>, defaults to 1.0) — | |
| The maximum magnitude for sample clipping. Valid only when <code>clip_sample=True</code>.`,name:"clip_sample_range"},{anchor:"diffusers.DDPMScheduler.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.DDPMScheduler.thresholding",description:`<strong>thresholding</strong> (<code>bool</code>, defaults to <code>False</code>) — | |
| Whether to use the “dynamic thresholding” method. This is unsuitable for latent-space diffusion models such | |
| as Stable Diffusion.`,name:"thresholding"},{anchor:"diffusers.DDPMScheduler.dynamic_thresholding_ratio",description:`<strong>dynamic_thresholding_ratio</strong> (<code>float</code>, defaults to 0.995) — | |
| The ratio for the dynamic thresholding method. Valid only when <code>thresholding=True</code>.`,name:"dynamic_thresholding_ratio"},{anchor:"diffusers.DDPMScheduler.sample_max_value",description:`<strong>sample_max_value</strong> (<code>float</code>, defaults to 1.0) — | |
| The threshold value for dynamic thresholding. Valid only when <code>thresholding=True</code>.`,name:"sample_max_value"},{anchor:"diffusers.DDPMScheduler.timestep_spacing",description:`<strong>timestep_spacing</strong> (<code>str</code>, defaults to <code>"leading"</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.DDPMScheduler.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.DDPMScheduler.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.28.0/src/diffusers/schedulers/scheduling_ddpm.py#L129"}}),C=new W({props:{name:"scale_model_input",anchor:"diffusers.DDPMScheduler.scale_model_input",parameters:[{name:"sample",val:": Tensor"},{name:"timestep",val:": Optional = None"}],parametersDescription:[{anchor:"diffusers.DDPMScheduler.scale_model_input.sample",description:`<strong>sample</strong> (<code>torch.Tensor</code>) — | |
| The input sample.`,name:"sample"},{anchor:"diffusers.DDPMScheduler.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.28.0/src/diffusers/schedulers/scheduling_ddpm.py#L234",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> | |
| `}}),L=new W({props:{name:"set_timesteps",anchor:"diffusers.DDPMScheduler.set_timesteps",parameters:[{name:"num_inference_steps",val:": Optional = None"},{name:"device",val:": Union = None"},{name:"timesteps",val:": Optional = None"}],parametersDescription:[{anchor:"diffusers.DDPMScheduler.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. If used, | |
| <code>timesteps</code> must be <code>None</code>.`,name:"num_inference_steps"},{anchor:"diffusers.DDPMScheduler.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"},{anchor:"diffusers.DDPMScheduler.set_timesteps.timesteps",description:`<strong>timesteps</strong> (<code>List[int]</code>, <em>optional</em>) — | |
| Custom timesteps used to support arbitrary spacing between timesteps. If <code>None</code>, then the default | |
| timestep spacing strategy of equal spacing between timesteps is used. If <code>timesteps</code> is passed, | |
| <code>num_inference_steps</code> must be <code>None</code>.`,name:"timesteps"}],source:"https://github.com/huggingface/diffusers/blob/v0.28.0/src/diffusers/schedulers/scheduling_ddpm.py#L251"}}),O=new W({props:{name:"step",anchor:"diffusers.DDPMScheduler.step",parameters:[{name:"model_output",val:": Tensor"},{name:"timestep",val:": int"},{name:"sample",val:": Tensor"},{name:"generator",val:" = None"},{name:"return_dict",val:": bool = True"}],parametersDescription:[{anchor:"diffusers.DDPMScheduler.step.model_output",description:`<strong>model_output</strong> (<code>torch.Tensor</code>) — | |
| The direct output from learned diffusion model.`,name:"model_output"},{anchor:"diffusers.DDPMScheduler.step.timestep",description:`<strong>timestep</strong> (<code>float</code>) — | |
| The current discrete timestep in the diffusion chain.`,name:"timestep"},{anchor:"diffusers.DDPMScheduler.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.DDPMScheduler.step.generator",description:`<strong>generator</strong> (<code>torch.Generator</code>, <em>optional</em>) — | |
| A random number generator.`,name:"generator"},{anchor:"diffusers.DDPMScheduler.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.28.0/en/api/schedulers/ddpm#diffusers.schedulers.scheduling_ddpm.DDPMSchedulerOutput">DDPMSchedulerOutput</a> or <code>tuple</code>.`,name:"return_dict"}],source:"https://github.com/huggingface/diffusers/blob/v0.28.0/src/diffusers/schedulers/scheduling_ddpm.py#L399",returnDescription:`<script context="module">export const metadata = 'undefined';<\/script> | |
| <p>If return_dict is <code>True</code>, <a | |
| href="/docs/diffusers/v0.28.0/en/api/schedulers/ddpm#diffusers.schedulers.scheduling_ddpm.DDPMSchedulerOutput" | |
| >DDPMSchedulerOutput</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.28.0/en/api/schedulers/ddpm#diffusers.schedulers.scheduling_ddpm.DDPMSchedulerOutput" | |
| >DDPMSchedulerOutput</a> or <code>tuple</code></p> | |
| `}}),I=new W({props:{name:"class diffusers.schedulers.scheduling_ddpm.DDPMSchedulerOutput",anchor:"diffusers.schedulers.scheduling_ddpm.DDPMSchedulerOutput",parameters:[{name:"prev_sample",val:": Tensor"},{name:"pred_original_sample",val:": Optional = None"}],parametersDescription:[{anchor:"diffusers.schedulers.scheduling_ddpm.DDPMSchedulerOutput.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_ddpm.DDPMSchedulerOutput.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.28.0/src/diffusers/schedulers/scheduling_ddpm.py#L30"}}),N=new Ee({props:{source:"https://github.com/huggingface/diffusers/blob/main/docs/source/en/api/schedulers/ddpm.md"}}),{c(){u=a("meta"),G=n(),U=a("p"),J=n(),_(M.$$.fragment),B=n(),y=a("p"),y.innerHTML=be,K=n(),$=a("p"),$.textContent=ve,Q=n(),S=a("p"),S.innerHTML=De,X=n(),_(T.$$.fragment),Y=n(),c=a("div"),_(w.$$.fragment),ie=n(),A=a("p"),A.innerHTML=xe,ce=n(),z=a("p"),z.innerHTML=Pe,le=n(),f=a("div"),_(C.$$.fragment),pe=n(),V=a("p"),V.textContent=Me,ue=n(),h=a("div"),_(L.$$.fragment),me=n(),F=a("p"),F.textContent=ye,fe=n(),g=a("div"),_(O.$$.fragment),he=n(),k=a("p"),k.textContent=$e,Z=n(),q=a("p"),q.textContent=Se,ee=n(),m=a("div"),_(I.$$.fragment),ge=n(),R=a("p"),R.innerHTML=Te,te=n(),_(N.$$.fragment),se=n(),j=a("p"),this.h()},l(e){const s=Ne("svelte-u9bgzb",document.head);u=i(s,"META",{name:!0,content:!0}),s.forEach(t),G=o(e),U=i(e,"P",{}),E(U).forEach(t),J=o(e),b(M.$$.fragment,e),B=o(e),y=i(e,"P",{"data-svelte-h":!0}),p(y)!=="svelte-18lgwlw"&&(y.innerHTML=be),K=o(e),$=i(e,"P",{"data-svelte-h":!0}),p($)!=="svelte-1cwsb16"&&($.textContent=ve),Q=o(e),S=i(e,"P",{"data-svelte-h":!0}),p(S)!=="svelte-ndelhy"&&(S.innerHTML=De),X=o(e),b(T.$$.fragment,e),Y=o(e),c=i(e,"DIV",{class:!0});var l=E(c);b(w.$$.fragment,l),ie=o(l),A=i(l,"P",{"data-svelte-h":!0}),p(A)!=="svelte-s0ec9y"&&(A.innerHTML=xe),ce=o(l),z=i(l,"P",{"data-svelte-h":!0}),p(z)!=="svelte-sxopj1"&&(z.innerHTML=Pe),le=o(l),f=i(l,"DIV",{class:!0});var oe=E(f);b(C.$$.fragment,oe),pe=o(oe),V=i(oe,"P",{"data-svelte-h":!0}),p(V)!=="svelte-1rkfgpx"&&(V.textContent=Me),oe.forEach(t),ue=o(l),h=i(l,"DIV",{class:!0});var re=E(h);b(L.$$.fragment,re),me=o(re),F=i(re,"P",{"data-svelte-h":!0}),p(F)!=="svelte-1vzm9q"&&(F.textContent=ye),re.forEach(t),fe=o(l),g=i(l,"DIV",{class:!0});var de=E(g);b(O.$$.fragment,de),he=o(de),k=i(de,"P",{"data-svelte-h":!0}),p(k)!=="svelte-hi84tp"&&(k.textContent=$e),de.forEach(t),l.forEach(t),Z=o(e),q=i(e,"P",{"data-svelte-h":!0}),p(q)!=="svelte-p62dav"&&(q.textContent=Se),ee=o(e),m=i(e,"DIV",{class:!0});var ae=E(m);b(I.$$.fragment,ae),ge=o(ae),R=i(ae,"P",{"data-svelte-h":!0}),p(R)!=="svelte-id9kic"&&(R.innerHTML=Te),ae.forEach(t),te=o(e),b(N.$$.fragment,e),se=o(e),j=i(e,"P",{}),E(j).forEach(t),this.h()},h(){H(u,"name","hf:doc:metadata"),H(u,"content",Ae),H(f,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),H(h,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),H(g,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),H(c,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),H(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(e,s){r(document.head,u),d(e,G,s),d(e,U,s),d(e,J,s),v(M,e,s),d(e,B,s),d(e,y,s),d(e,K,s),d(e,$,s),d(e,Q,s),d(e,S,s),d(e,X,s),v(T,e,s),d(e,Y,s),d(e,c,s),v(w,c,null),r(c,ie),r(c,A),r(c,ce),r(c,z),r(c,le),r(c,f),v(C,f,null),r(f,pe),r(f,V),r(c,ue),r(c,h),v(L,h,null),r(h,me),r(h,F),r(c,fe),r(c,g),v(O,g,null),r(g,he),r(g,k),d(e,Z,s),d(e,q,s),d(e,ee,s),d(e,m,s),v(I,m,null),r(m,ge),r(m,R),d(e,te,s),v(N,e,s),d(e,se,s),d(e,j,s),ne=!0},p:Le,i(e){ne||(D(M.$$.fragment,e),D(T.$$.fragment,e),D(w.$$.fragment,e),D(C.$$.fragment,e),D(L.$$.fragment,e),D(O.$$.fragment,e),D(I.$$.fragment,e),D(N.$$.fragment,e),ne=!0)},o(e){x(M.$$.fragment,e),x(T.$$.fragment,e),x(w.$$.fragment,e),x(C.$$.fragment,e),x(L.$$.fragment,e),x(O.$$.fragment,e),x(I.$$.fragment,e),x(N.$$.fragment,e),ne=!1},d(e){e&&(t(G),t(U),t(J),t(B),t(y),t(K),t($),t(Q),t(S),t(X),t(Y),t(c),t(Z),t(q),t(ee),t(m),t(te),t(se),t(j)),t(u),P(M,e),P(T,e),P(w),P(C),P(L),P(O),P(I),P(N,e)}}}const Ae='{"title":"DDPMScheduler","local":"ddpmscheduler","sections":[{"title":"DDPMScheduler","local":"diffusers.DDPMScheduler","sections":[],"depth":2}],"depth":1}';function ze(_e){return Oe(()=>{new URLSearchParams(window.location.search).get("fw")}),[]}class Ue extends qe{constructor(u){super(),Ie(this,u,ze,He,Ce,{})}}export{Ue as component}; | |
Xet Storage Details
- Size:
- 18.6 kB
- Xet hash:
- a22352801b8a1bafed2b6072c80594310d6c04055ac1d5900317669fdbf205e1
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.