@@ -139,7 +139,6 @@ def __init__(
139
139
str ,
140
140
MaskedVectorFieldEstimatorBuilder ,
141
141
] = "simformer" ,
142
- sde_type : Literal ["vp" , "ve" , "subvp" ] = "ve" ,
143
142
posterior_latent_idx : Optional [list | Tensor ] = None ,
144
143
posterior_observed_idx : Optional [list | Tensor ] = None ,
145
144
device : str = "cpu" ,
@@ -159,7 +158,6 @@ def __init__(
159
158
or a callable that implements the `MaskedVectorFieldEstimatorBuilder`
160
159
protocol. If a callable, `__call__` must accept `inputs`, and return
161
160
a `MaskedConditionalVectorFieldEstimator`.
162
- sde_type: Type of SDE to use. Must be one of ['vp', 've', 'subvp'].
163
161
posterior_latent_idx: List or Tensor of indexes identifying which
164
162
variables are latent (to be infered),
165
163
i.e, which variables identify $\theta$.
@@ -182,7 +180,6 @@ def __init__(
182
180
logging_level = logging_level ,
183
181
summary_writer = summary_writer ,
184
182
show_progress_bars = show_progress_bars ,
185
- sde_type = sde_type ,
186
183
** kwargs ,
187
184
)
188
185
0 commit comments