We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dee7a34 commit a4fa69cCopy full SHA for a4fa69c
1 file changed
tests/parsers/test_android.py
@@ -750,7 +750,13 @@ def test_solve_kaggle_dataset(root_path):
750
solve_gnss_ekf,
751
]:
752
for verbose in [True, False]:
753
- solution = android.solve_kaggle_dataset(folder_path, solver,
+ if solver == solve_gnss_ekf:
754
+ init_dict = {'Q': np.eye(7), 'R': np.eye(1)}
755
+ solution = android.solve_kaggle_dataset(folder_path, solver,
756
+ verbose, init_dict=init_dict)
757
+
758
+ else:
759
760
verbose)
761
762
solution.in_rows(["tripId","UnixTimeMillis",
0 commit comments