We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eae37c0 commit d306cb0Copy full SHA for d306cb0
README.md
@@ -111,6 +111,8 @@ from tiny_solver import Problem, GaussNewtonOptimizer
111
from tiny_solver.factors import PriorFactor, PyFactor
112
113
# define custom cost function in python
114
+# the trade off is the jacobian for the problem cannot be done in parallel
115
+# because of gil
116
def cost(x: np.ndarray, yz: np.ndarray) -> np.ndarray:
117
r0 = x[0] + 2 * yz[0] + 4 * yz[1]
118
r1 = yz[0] * yz[0]
0 commit comments