⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 notes.txt

📁 高斯滤波器 matlab toolbox For GMMs and Gaussian kernels
💻 TXT
字号:
GMM Utilities
-------------

For GMMs and Gaussian kernels, we want the following operations:

1. Evaluate at a point.
2. Draw samples from.
3. Linear Transform.
4. Multiply.
5. Divide.
6. Kalman update (projective multiply).
7. Convolve.

Reduction:

1. Truncate.
2. Join.
3. Cluster.

Distance measures:

1. Mahalanobis.
2. Bhattacharyya.
3. Kullback-Leibler divergence (relative entropy).
4. Renyi divergence.

Improvements
------------
- Remove loops
- implement as log-likelihoods where possible to increase numerical stability. For example, gmm_evaluate could take log-weights, normalise them so their mean is 0, convert to normal weights, add them, convert to log-weights and subtract normaliser.
- perhaps make logflag an optional member of each GMM
- incorporate checking for numerical errors
- check everything works for 1-D single Gaussians, N-D single Gaussians and 1-D N Gaussians

Alternatives
------------

Kernel join-merge:
 1 - Keep original kernel.
 2 - Adjust kernel at end: P = P + P1 - P2; where P1 and P2 are the original and final ensemble variances, respectively.
 3 - Adjust kernel at each iteration (Matt Ridley): P = P + ...?
	- + P_k+1 - P_k; where these are the ensemble variances between iterations
	- + w.*xerr*xerr'; where xerr is as per gmm_to_gaussian() for the two merged points

Questions
---------

- Can we do non-linear transform of PDF if transform is approximated
by, say, a GMM?

Demos
-----

- Approximate Bracewell's functions with gmms and test the convolution routines give the anticipated shapes.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -