|
6 | 6 | from ..linear_model import lineardiff |
7 | 7 | from ..basis_fit import spectraldiff, rbfdiff |
8 | 8 | from ..polynomial_fit import polydiff, savgoldiff, splinediff |
9 | | -from ..total_variation_regularization import velocity, acceleration, jerk, iterative_velocity, smooth_acceleration, jerk_sliding |
| 9 | +from ..total_variation_regularization import velocity, acceleration, jerk, iterative_velocity, smooth_acceleration |
10 | 10 | from ..kalman_smooth import rtsdiff, constant_velocity, constant_acceleration, constant_jerk, robustdiff |
11 | 11 | from ..smooth_finite_difference import mediandiff, meandiff, gaussiandiff, friedrichsdiff, butterdiff |
12 | 12 | # Function aliases for testing cases where parameters change the behavior in a big way, so error limits can be indexed in dict |
@@ -57,7 +57,6 @@ def spline_irreg_step(*args, **kwargs): return splinediff(*args, **kwargs) |
57 | 57 | (jerk, {'gamma':10}), (jerk, [10]), |
58 | 58 | (iterative_velocity, {'num_iterations':5, 'gamma':0.05}), (iterative_velocity, [5, 0.05]), |
59 | 59 | (smooth_acceleration, {'gamma':2, 'window_size':5}), (smooth_acceleration, [2, 5]), |
60 | | - (jerk_sliding, {'gamma':1, 'window_size':15}), (jerk_sliding, [1], {'window_size':15}), |
61 | 60 | (lineardiff, {'order':3, 'gamma':5, 'window_size':11, 'solver':'CLARABEL'}), (lineardiff, [3, 5, 11], {'solver':'CLARABEL'}) |
62 | 61 | ] |
63 | 62 |
|
@@ -193,12 +192,6 @@ def spline_irreg_step(*args, **kwargs): return splinediff(*args, **kwargs) |
193 | 192 | [(0, 0), (1, 0), (0, -1), (1, 0)], |
194 | 193 | [(1, 1), (2, 2), (1, 1), (2, 2)], |
195 | 194 | [(1, 1), (3, 3), (1, 1), (3, 3)]], |
196 | | - jerk_sliding: [[(-25, -25), (-16, -17), (0, -1), (1, 0)], |
197 | | - [(-14, -14), (-14, -14), (0, -1), (0, 0)], |
198 | | - [(-14, -14), (-14, -14), (0, -1), (0, 0)], |
199 | | - [(-1, -1), (0, 0), (0, -1), (0, 0)], |
200 | | - [(1, 0), (2, 2), (1, 0), (2, 2)], |
201 | | - [(1, 1), (3, 3), (1, 1), (3, 3)]], |
202 | 195 | constant_velocity: [[(-25, -25), (-25, -25), (0, -1), (1, 1)], |
203 | 196 | [(-4, -5), (-3, -3), (0, -1), (1, 1)], |
204 | 197 | [(-3, -3), (0, 0), (0, -1), (1, 1)], |
|
0 commit comments