torchebm.samplers.langevin_dynamics ¶
Langevin Dynamics Sampler Module.
LangevinDynamics ¶
Bases: BaseSampler
Langevin Dynamics sampler.
Update rule:
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model | BaseModel | Energy-based model to sample from. | required |
step_size | Union[float, BaseScheduler] | Step size for gradient descent. | 0.001 |
noise_scale | Union[float, BaseScheduler] | Scale of Gaussian noise injection. | 1.0 |
decay | float | Damping coefficient (not supported). | 0.0 |
dtype | dtype | Data type for computations. | float32 |
device | Optional[Union[str, device]] | Device for computations. | None |
Example
Source code in torchebm/samplers/langevin_dynamics.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 | |
sample(x=None, dim=10, n_steps=100, n_samples=1, thin=1, return_trajectory=False, return_diagnostics=False, *args, **kwargs) ¶
Generates samples using Langevin dynamics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
x | Optional[Tensor] | The initial state to start sampling from. If | None |
dim | int | The dimension of the state space (if | 10 |
n_steps | int | The number of MCMC steps to perform. | 100 |
n_samples | int | The number of parallel chains/samples to generate. | 1 |
thin | int | The thinning factor (not currently supported). | 1 |
return_trajectory | bool | Whether to return the full sample trajectory. | False |
return_diagnostics | bool | Whether to return sampling diagnostics. | False |
Returns:
| Type | Description |
|---|---|
Union[Tensor, Tuple[Tensor, List[dict]]] | Union[torch.Tensor, Tuple[torch.Tensor, List[dict]]]: - The final samples. - If |
Source code in torchebm/samplers/langevin_dynamics.py
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | |