Buckets:

rtrm's picture
download
raw
18.7 kB
import{s as we,n as Ce,o as Oe}from"../chunks/scheduler.8c3d61f6.js";import{S as Le,i as qe,g as d,s as n,r as m,A as Ie,h as c,f as t,c as o,j as E,u as f,x as h,k as H,y as r,a as i,v as g,d as _,t as b,w as D}from"../chunks/index.da70eac4.js";import{D as j}from"../chunks/Docstring.ee4b6913.js";import{H as _e,E as Ne}from"../chunks/EditOnGithub.1e64e623.js";function Ee(be){let p,G,U,J,P,B,M,De='<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,y,ve="The abstract from the paper is:",Q,S,xe='<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,a,w,de,A,$e="<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/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.`,le,v,C,pe,V,Me=`Ensures interchangeability with schedulers that need to scale the denoising model input depending on the
current timestep.`,ue,x,O,me,F,ye="Sets the discrete timesteps used for the diffusion chain (to be run before inference).",fe,$,L,he,k,Se=`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,ee,u,I,ge,R,Te="Output class for the scheduler’s <code>step</code> function output.",te,N,se,W,ne;return P=new _e({props:{title:"DDPMScheduler",local:"ddpmscheduler",headingTag:"h1"}}),T=new _e({props:{title:"DDPMScheduler",local:"diffusers.DDPMScheduler",headingTag:"h2"}}),w=new j({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:": bool = False"}],parametersDescription:[{anchor:"diffusers.DDPMScheduler.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.DDPMScheduler.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.DDPMScheduler.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.DDPMScheduler.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.DDPMScheduler.trained_betas",description:`<strong>trained_betas</strong> (<code>np.ndarray</code>, <em>optional</em>) &#x2014;
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>&quot;fixed_small&quot;</code>) &#x2014;
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>) &#x2014;
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) &#x2014;
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>) &#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.DDPMScheduler.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.DDPMScheduler.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.DDPMScheduler.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.DDPMScheduler.timestep_spacing",description:`<strong>timestep_spacing</strong> (<code>str</code>, defaults to <code>&quot;leading&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.DDPMScheduler.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"},{anchor:"diffusers.DDPMScheduler.rescale_betas_zero_snr",description:`<strong>rescale_betas_zero_snr</strong> (<code>bool</code>, defaults to <code>False</code>) &#x2014;
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/main/src/diffusers/schedulers/scheduling_ddpm.py#L129"}}),C=new j({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>) &#x2014;
The input sample.`,name:"sample"},{anchor:"diffusers.DDPMScheduler.scale_model_input.timestep",description:`<strong>timestep</strong> (<code>int</code>, <em>optional</em>) &#x2014;
The current timestep in the diffusion chain.`,name:"timestep"}],source:"https://github.com/huggingface/diffusers/blob/main/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>
`}}),O=new j({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>) &#x2014;
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>) &#x2014;
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>) &#x2014;
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/main/src/diffusers/schedulers/scheduling_ddpm.py#L251"}}),L=new j({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>) &#x2014;
The direct output from learned diffusion model.`,name:"model_output"},{anchor:"diffusers.DDPMScheduler.step.timestep",description:`<strong>timestep</strong> (<code>float</code>) &#x2014;
The current discrete timestep in the diffusion chain.`,name:"timestep"},{anchor:"diffusers.DDPMScheduler.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.DDPMScheduler.step.generator",description:`<strong>generator</strong> (<code>torch.Generator</code>, <em>optional</em>) &#x2014;
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>) &#x2014;
Whether or not to return a <a href="/docs/diffusers/main/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/main/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/main/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/main/en/api/schedulers/ddpm#diffusers.schedulers.scheduling_ddpm.DDPMSchedulerOutput"
>DDPMSchedulerOutput</a> or <code>tuple</code></p>
`}}),q=new _e({props:{title:"DDPMSchedulerOutput",local:"diffusers.schedulers.scheduling_ddpm.DDPMSchedulerOutput",headingTag:"h2"}}),I=new j({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) &#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"},{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) &#x2014;
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/main/src/diffusers/schedulers/scheduling_ddpm.py#L30"}}),N=new Ne({props:{source:"https://github.com/huggingface/diffusers/blob/main/docs/source/en/api/schedulers/ddpm.md"}}),{c(){p=d("meta"),G=n(),U=d("p"),J=n(),m(P.$$.fragment),B=n(),M=d("p"),M.innerHTML=De,K=n(),y=d("p"),y.textContent=ve,Q=n(),S=d("p"),S.innerHTML=xe,X=n(),m(T.$$.fragment),Y=n(),a=d("div"),m(w.$$.fragment),de=n(),A=d("p"),A.innerHTML=$e,ce=n(),z=d("p"),z.innerHTML=Pe,le=n(),v=d("div"),m(C.$$.fragment),pe=n(),V=d("p"),V.textContent=Me,ue=n(),x=d("div"),m(O.$$.fragment),me=n(),F=d("p"),F.textContent=ye,fe=n(),$=d("div"),m(L.$$.fragment),he=n(),k=d("p"),k.textContent=Se,Z=n(),m(q.$$.fragment),ee=n(),u=d("div"),m(I.$$.fragment),ge=n(),R=d("p"),R.innerHTML=Te,te=n(),m(N.$$.fragment),se=n(),W=d("p"),this.h()},l(e){const s=Ie("svelte-u9bgzb",document.head);p=c(s,"META",{name:!0,content:!0}),s.forEach(t),G=o(e),U=c(e,"P",{}),E(U).forEach(t),J=o(e),f(P.$$.fragment,e),B=o(e),M=c(e,"P",{"data-svelte-h":!0}),h(M)!=="svelte-18lgwlw"&&(M.innerHTML=De),K=o(e),y=c(e,"P",{"data-svelte-h":!0}),h(y)!=="svelte-1cwsb16"&&(y.textContent=ve),Q=o(e),S=c(e,"P",{"data-svelte-h":!0}),h(S)!=="svelte-ndelhy"&&(S.innerHTML=xe),X=o(e),f(T.$$.fragment,e),Y=o(e),a=c(e,"DIV",{class:!0});var l=E(a);f(w.$$.fragment,l),de=o(l),A=c(l,"P",{"data-svelte-h":!0}),h(A)!=="svelte-s0ec9y"&&(A.innerHTML=$e),ce=o(l),z=c(l,"P",{"data-svelte-h":!0}),h(z)!=="svelte-linuuh"&&(z.innerHTML=Pe),le=o(l),v=c(l,"DIV",{class:!0});var oe=E(v);f(C.$$.fragment,oe),pe=o(oe),V=c(oe,"P",{"data-svelte-h":!0}),h(V)!=="svelte-1rkfgpx"&&(V.textContent=Me),oe.forEach(t),ue=o(l),x=c(l,"DIV",{class:!0});var re=E(x);f(O.$$.fragment,re),me=o(re),F=c(re,"P",{"data-svelte-h":!0}),h(F)!=="svelte-1vzm9q"&&(F.textContent=ye),re.forEach(t),fe=o(l),$=c(l,"DIV",{class:!0});var ie=E($);f(L.$$.fragment,ie),he=o(ie),k=c(ie,"P",{"data-svelte-h":!0}),h(k)!=="svelte-hi84tp"&&(k.textContent=Se),ie.forEach(t),l.forEach(t),Z=o(e),f(q.$$.fragment,e),ee=o(e),u=c(e,"DIV",{class:!0});var ae=E(u);f(I.$$.fragment,ae),ge=o(ae),R=c(ae,"P",{"data-svelte-h":!0}),h(R)!=="svelte-id9kic"&&(R.innerHTML=Te),ae.forEach(t),te=o(e),f(N.$$.fragment,e),se=o(e),W=c(e,"P",{}),E(W).forEach(t),this.h()},h(){H(p,"name","hf:doc:metadata"),H(p,"content",He),H(v,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),H(x,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),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(a,"class","docstring border-l-2 border-t-2 pl-4 pt-3.5 border-gray-100 rounded-tl-xl mb-6 mt-8"),H(u,"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,p),i(e,G,s),i(e,U,s),i(e,J,s),g(P,e,s),i(e,B,s),i(e,M,s),i(e,K,s),i(e,y,s),i(e,Q,s),i(e,S,s),i(e,X,s),g(T,e,s),i(e,Y,s),i(e,a,s),g(w,a,null),r(a,de),r(a,A),r(a,ce),r(a,z),r(a,le),r(a,v),g(C,v,null),r(v,pe),r(v,V),r(a,ue),r(a,x),g(O,x,null),r(x,me),r(x,F),r(a,fe),r(a,$),g(L,$,null),r($,he),r($,k),i(e,Z,s),g(q,e,s),i(e,ee,s),i(e,u,s),g(I,u,null),r(u,ge),r(u,R),i(e,te,s),g(N,e,s),i(e,se,s),i(e,W,s),ne=!0},p:Ce,i(e){ne||(_(P.$$.fragment,e),_(T.$$.fragment,e),_(w.$$.fragment,e),_(C.$$.fragment,e),_(O.$$.fragment,e),_(L.$$.fragment,e),_(q.$$.fragment,e),_(I.$$.fragment,e),_(N.$$.fragment,e),ne=!0)},o(e){b(P.$$.fragment,e),b(T.$$.fragment,e),b(w.$$.fragment,e),b(C.$$.fragment,e),b(O.$$.fragment,e),b(L.$$.fragment,e),b(q.$$.fragment,e),b(I.$$.fragment,e),b(N.$$.fragment,e),ne=!1},d(e){e&&(t(G),t(U),t(J),t(B),t(M),t(K),t(y),t(Q),t(S),t(X),t(Y),t(a),t(Z),t(ee),t(u),t(te),t(se),t(W)),t(p),D(P,e),D(T,e),D(w),D(C),D(O),D(L),D(q,e),D(I),D(N,e)}}}const He='{"title":"DDPMScheduler","local":"ddpmscheduler","sections":[{"title":"DDPMScheduler","local":"diffusers.DDPMScheduler","sections":[],"depth":2},{"title":"DDPMSchedulerOutput","local":"diffusers.schedulers.scheduling_ddpm.DDPMSchedulerOutput","sections":[],"depth":2}],"depth":1}';function Ae(be){return Oe(()=>{new URLSearchParams(window.location.search).get("fw")}),[]}class Re extends Le{constructor(p){super(),qe(this,p,Ae,Ee,we,{})}}export{Re as component};

Xet Storage Details

Size:
18.7 kB
·
Xet hash:
b4713dc172966137bbbd4582d3ddfa7f62d2563b97bc33f0a9c3daa57ec8d904

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