在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:wildart/ManifoldLearning.jl开源软件地址:https://github.com/wildart/ManifoldLearning.jl开源编程语言:Julia 100.0%开源软件介绍:ManifoldLearningA Julia package for manifold learning and nonlinear dimensionality reduction.
Methods
InstallationThe package can be installed with the Julia package manager.
From the Julia REPL, type
ExamplesA simple example of using the Isomap reduction method. julia> X, _ = ManifoldLearning.swiss_roll();
julia> X
3×1000 Array{Float64,2}:
-3.19512 3.51939 -0.0390153 … -9.46166 3.44159
29.1222 9.99283 2.25296 25.1417 28.8007
-10.1861 6.59074 -11.037 -1.04484 13.4034
julia> M = fit(Isomap, X)
Isomap(outdim = 2, neighbors = 12)
julia> Y = transform(M)
2×1000 Array{Float64,2}:
11.0033 -13.069 16.7116 … -3.26095 25.7771
18.4133 -6.2693 10.6698 20.0646 -24.8973 PerformanceMost of the methods use k-nearest neighbors method for constructing local subspace representation. By default, neighbors are computed from a distance matrix of a dataset. This is not an efficient method, especially, for large datasets. Consider using a custom k-nearest neighbors function, e.g. from NearestNeighbors.jl or FLANN.jl. See example of custom |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论