gionuno / local_tangent_space_alignment

LTSA, in MATLAB. Zhang and Zha's paper.
6 stars 4 forks source link

parameters select #1

Closed codeseeking closed 5 years ago

codeseeking commented 6 years ago

hello, thanks your effort, I want to know how to select the d of parameters in the ltsa?

gionuno commented 5 years ago

Sorry, I haven't logged in for a while. The d is selected based on what you need. Check out main.m for examples.

codeseeking commented 5 years ago

I see, but if the performance is not good. How can I select it? Whether it is determinded by cross validation?

gionuno commented 5 years ago

it really depends on what you want to do... yes, i guess you could try cross-validation to find an appropriate d. I didn't try it, the examples given are better seen visually.

codeseeking commented 5 years ago

Thank you for your answer, what my task is to classificate, so the parameter d is critical for my classification performance.

杨定康

邮箱:18381303772@163.com |

签名由 网易邮箱大师 定制

On 12/19/2018 08:57, Giovanni Nuño wrote:

it really depends on what you want to do... yes, i guess you could try cross-validation to find an appropriate d. I didn't try it, the examples given are better seen visually.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.

gionuno commented 5 years ago

cross validation seems like a reasonable choice to find an a good d. Once you use LTSA on your points of interest, you plug in the t-vectors (the result) into a classifier.

codeseeking commented 5 years ago

I can't understand the last statement, would you like to describe it more details, thanks very much.

杨定康

邮箱:18381303772@163.com |

签名由 网易邮箱大师 定制

On 12/20/2018 01:54, Giovanni Nuño wrote:

cross validation seems like a reasonable choice to find an a good d. Once you use LTSA on your points of interest, you plug in the t-vectors (the result) into a classifier.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.

gionuno commented 5 years ago

Have you read the paper? LTSA is a nonlinear dimensional reduction that uses k-nearest neighbours to create a special sort of graph... onto which an eigenvector solver is then applied to find d vectors, let's say T is the matrix, each row of T (T(i,:)) is a t-vector.

codeseeking commented 5 years ago

Yes, I have watched this paper, the parameter d is difficult to be chosen, so I think cross validation is a good idea.

杨定康

邮箱:18381303772@163.com |

签名由 网易邮箱大师 定制

On 12/21/2018 01:50, Giovanni Nuño wrote:

Have you read the paper? LTSA is a nonlinear dimensional reduction that uses k-nearest neighbours to create a special sort of graph... onto which an eigenvector solver is then applied to find d vectors, let's say T is the matrix, each row of T (T(i,:)) is a t-vector.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.