I've done some modifications in a dimension reduction method and now i wanna report its results. Is there a standard dataset for this reason? both ([m*n]*k) and (m*n) sizes datasets are needed.
There are quite a few datasets that can give you a good visual representation of how well your reduction worked. The "swiss roll" is one example. Is this what you were looking for?
I'm not aware of a standard, but it's easy to generate a k-dimensional sphere or ball or a mixture of Gaussians. I have used the values of features computed on a real image before. In one instance, PCA reduced a geometric feature set from about 1000 features down to 18 but the discriminating feature for my task was then found to be feature 15 of the 18. Basically, the data formed a solid sphere in most dimension combinations but was split in feature 15. There is good stuff in this research area.
Thank you for your answer. In my research interest, cardiac signal processing, there may be both k * n (k feature vector that each has 1 * n size that should be reduced down to 1 * L) and [ k * ( m * n)] (k feature vector that each has m * n size that should be reduced to m * L) size datasets. I'm looking for such size datasets. Also, i mean the standard dataset, reference datasets that its results be referrable and publishable.