File: planning.txt

package info (click to toggle)
ddogleg 0.17%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,688 kB
  • sloc: java: 27,791; makefile: 162; python: 52
file content (20 lines) | stat: -rw-r--r-- 686 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- Improve k-means, see [1]
- Get GMM to work on real-world Example


[1] P. S. Bradley, U. Fayyad, Refining Initial Points for K-Means Clustering, in: Proc. of the 15th Int. Conf. on
    Machine Learning, 1998, pp. 91–99.

# Least-Squares Lack of User Specified Weighting Vector

- Useful for robustified optimization

# Dogleg Methods

If the matrix is not positive definite then it converges very slowly. Potential solutions involve:
- LDL with D being augmented to ensure it can be solved
- Look into Ceres solver and see how it handles this situation
  * Code comments mention solving a dampened system with a regular solver
  * This is a bit like a hybrid of LM and TR

# L-BFGS