File tree Expand file tree Collapse file tree 2 files changed +1
-8
lines changed Expand file tree Collapse file tree 2 files changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -108,14 +108,6 @@ def __post_init__(self) -> None:
108
108
"3-dimensional. Its shape is "
109
109
f"{ batch_initial_conditions_shape } ."
110
110
)
111
- # make dim 2 inputs into dim 3 inputs in order to be consistent downstream.
112
- if len (batch_initial_conditions_shape ) == 2 :
113
- # Use object.__setattr__ to bypass immutability and set a value
114
- object .__setattr__ (
115
- self ,
116
- "batch_initial_conditions" ,
117
- self .batch_initial_conditions .unsqueeze (0 ),
118
- )
119
111
120
112
if batch_initial_conditions_shape [- 1 ] != d :
121
113
raise ValueError (
Original file line number Diff line number Diff line change @@ -496,6 +496,7 @@ def continuous_step(
496
496
updated_opt_inputs = dataclasses .replace (
497
497
opt_inputs ,
498
498
q = 1 ,
499
+ raw_samples = None ,
499
500
num_restarts = 1 ,
500
501
batch_initial_conditions = current_x .unsqueeze (0 ),
501
502
fixed_features = {
You can’t perform that action at this time.
0 commit comments