├── LE ├── AMTrain.m ├── InitGroup.m ├── InitW.m ├── L2_distance.m ├── LEbfgsProcess.m ├── UpdateS.m ├── UpdateW.m ├── fminlbfgsGLLE.m ├── kernelmatrix.m ├── mystopfun.m └── object.m ├── PL-LEAF └── PL-LEAF │ ├── Kernelmatrix.m │ ├── PL_LEAF_predict.m │ ├── PL_LEAF_train.m │ └── plmsvr.m ├── README.md ├── arts_param.mat ├── lib └── manopt │ ├── CLA.txt │ ├── COPYING.txt │ ├── CREDITS.txt │ ├── LICENSE.txt │ ├── checkinstall │ └── basicexample.m │ ├── examples │ ├── dominant_invariant_subspace.m │ ├── generalized_procrustes.m │ ├── low_rank_matrix_completion.m │ ├── maxcut.m │ ├── maxcut_octave.m │ ├── packing_on_the_sphere.m │ ├── positive_definite_karcher_mean.m │ ├── sparse_pca.m │ └── truncated_svd.m │ ├── importmanopt.m │ └── manopt │ ├── manifolds │ ├── complexcircle │ │ └── complexcirclefactory.m │ ├── euclidean │ │ ├── euclideanfactory.m │ │ └── symmetricfactory.m │ ├── fixedrank │ │ ├── fixedrankMNquotientfactory.m │ │ ├── fixedrankembeddedfactory.m │ │ ├── fixedrankfactory_2factors.m │ │ ├── fixedrankfactory_2factors_preconditioned.m │ │ ├── fixedrankfactory_2factors_subspace_projection.m │ │ ├── fixedrankfactory_3factors.m │ │ └── fixedrankfactory_3factors_preconditioned.m │ ├── grassmann │ │ └── grassmannfactory.m │ ├── oblique │ │ └── obliquefactory.m │ ├── rotations │ │ ├── randrot.m │ │ ├── randskew.m │ │ └── rotationsfactory.m │ ├── sphere │ │ ├── spherecomplexfactory.m │ │ └── spherefactory.m │ ├── stiefel │ │ └── stiefelfactory.m │ └── symfixedrank │ │ ├── elliptopefactory.m │ │ ├── spectrahedronfactory.m │ │ ├── symfixedrankYYfactory.m │ │ └── sympositivedefinitefactory.m │ ├── privatetools │ ├── applyStatsfun.m │ ├── canGetCost.m │ ├── canGetDirectionalDerivative.m │ ├── canGetEuclideanGradient.m │ ├── canGetGradient.m │ ├── canGetHessian.m │ ├── canGetLinesearch.m │ ├── canGetPrecon.m │ ├── getApproxHessian.m │ ├── getCost.m │ ├── getCostGrad.m │ ├── getDirectionalDerivative.m │ ├── getEuclideanGradient.m │ ├── getGlobalDefaults.m │ ├── getGradient.m │ ├── getHessian.m │ ├── getHessianFD.m │ ├── getLinesearch.m │ ├── getPrecon.m │ ├── getStore.m │ ├── hashmd5.m │ ├── mergeOptions.m │ ├── purgeStoredb.m │ ├── setStore.m │ └── stoppingcriterion.m │ ├── solvers │ ├── conjugategradient │ │ └── conjugategradient.m │ ├── linesearch │ │ ├── linesearch.m │ │ ├── linesearch_adaptive.m │ │ └── linesearch_hint.m │ ├── neldermead │ │ ├── centroid.m │ │ └── neldermead.m │ ├── pso │ │ └── pso.m │ ├── steepestdescent │ │ └── steepestdescent.m │ └── trustregions │ │ ├── license for original GenRTR code.txt │ │ ├── tCG.m │ │ └── trustregions.m │ └── tools │ ├── checkdiff.m │ ├── checkgradient.m │ ├── checkhessian.m │ └── diagsum.m ├── main.m └── measures ├── Average_precision.m ├── Hamming_loss.m ├── One_error.m ├── Ranking_loss.m ├── binaryzation.m └── coverage.m /LE/AMTrain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/LE/AMTrain.m -------------------------------------------------------------------------------- /LE/InitGroup.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/LE/InitGroup.m -------------------------------------------------------------------------------- /LE/InitW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/LE/InitW.m -------------------------------------------------------------------------------- /LE/L2_distance.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/LE/L2_distance.m -------------------------------------------------------------------------------- /LE/LEbfgsProcess.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/LE/LEbfgsProcess.m -------------------------------------------------------------------------------- /LE/UpdateS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/LE/UpdateS.m -------------------------------------------------------------------------------- /LE/UpdateW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/LE/UpdateW.m -------------------------------------------------------------------------------- /LE/fminlbfgsGLLE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/LE/fminlbfgsGLLE.m -------------------------------------------------------------------------------- /LE/kernelmatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/LE/kernelmatrix.m -------------------------------------------------------------------------------- /LE/mystopfun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/LE/mystopfun.m -------------------------------------------------------------------------------- /LE/object.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/LE/object.m -------------------------------------------------------------------------------- /PL-LEAF/PL-LEAF/Kernelmatrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/PL-LEAF/PL-LEAF/Kernelmatrix.m -------------------------------------------------------------------------------- /PL-LEAF/PL-LEAF/PL_LEAF_predict.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/PL-LEAF/PL-LEAF/PL_LEAF_predict.m -------------------------------------------------------------------------------- /PL-LEAF/PL-LEAF/PL_LEAF_train.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/PL-LEAF/PL-LEAF/PL_LEAF_train.m -------------------------------------------------------------------------------- /PL-LEAF/PL-LEAF/plmsvr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/PL-LEAF/PL-LEAF/plmsvr.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/README.md -------------------------------------------------------------------------------- /arts_param.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/arts_param.mat -------------------------------------------------------------------------------- /lib/manopt/CLA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/CLA.txt -------------------------------------------------------------------------------- /lib/manopt/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/COPYING.txt -------------------------------------------------------------------------------- /lib/manopt/CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/CREDITS.txt -------------------------------------------------------------------------------- /lib/manopt/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/LICENSE.txt -------------------------------------------------------------------------------- /lib/manopt/checkinstall/basicexample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/checkinstall/basicexample.m -------------------------------------------------------------------------------- /lib/manopt/examples/dominant_invariant_subspace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/examples/dominant_invariant_subspace.m -------------------------------------------------------------------------------- /lib/manopt/examples/generalized_procrustes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/examples/generalized_procrustes.m -------------------------------------------------------------------------------- /lib/manopt/examples/low_rank_matrix_completion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/examples/low_rank_matrix_completion.m -------------------------------------------------------------------------------- /lib/manopt/examples/maxcut.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/examples/maxcut.m -------------------------------------------------------------------------------- /lib/manopt/examples/maxcut_octave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/examples/maxcut_octave.m -------------------------------------------------------------------------------- /lib/manopt/examples/packing_on_the_sphere.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/examples/packing_on_the_sphere.m -------------------------------------------------------------------------------- /lib/manopt/examples/positive_definite_karcher_mean.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/examples/positive_definite_karcher_mean.m -------------------------------------------------------------------------------- /lib/manopt/examples/sparse_pca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/examples/sparse_pca.m -------------------------------------------------------------------------------- /lib/manopt/examples/truncated_svd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/examples/truncated_svd.m -------------------------------------------------------------------------------- /lib/manopt/importmanopt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/importmanopt.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/complexcircle/complexcirclefactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/complexcircle/complexcirclefactory.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/euclidean/euclideanfactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/euclidean/euclideanfactory.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/euclidean/symmetricfactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/euclidean/symmetricfactory.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/fixedrank/fixedrankMNquotientfactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/fixedrank/fixedrankMNquotientfactory.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/fixedrank/fixedrankembeddedfactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/fixedrank/fixedrankembeddedfactory.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/fixedrank/fixedrankfactory_2factors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/fixedrank/fixedrankfactory_2factors.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/fixedrank/fixedrankfactory_2factors_preconditioned.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/fixedrank/fixedrankfactory_2factors_preconditioned.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/fixedrank/fixedrankfactory_2factors_subspace_projection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/fixedrank/fixedrankfactory_2factors_subspace_projection.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/fixedrank/fixedrankfactory_3factors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/fixedrank/fixedrankfactory_3factors.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/fixedrank/fixedrankfactory_3factors_preconditioned.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/fixedrank/fixedrankfactory_3factors_preconditioned.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/grassmann/grassmannfactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/grassmann/grassmannfactory.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/oblique/obliquefactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/oblique/obliquefactory.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/rotations/randrot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/rotations/randrot.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/rotations/randskew.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/rotations/randskew.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/rotations/rotationsfactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/rotations/rotationsfactory.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/sphere/spherecomplexfactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/sphere/spherecomplexfactory.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/sphere/spherefactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/sphere/spherefactory.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/stiefel/stiefelfactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/stiefel/stiefelfactory.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/symfixedrank/elliptopefactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/symfixedrank/elliptopefactory.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/symfixedrank/spectrahedronfactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/symfixedrank/spectrahedronfactory.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/symfixedrank/symfixedrankYYfactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/symfixedrank/symfixedrankYYfactory.m -------------------------------------------------------------------------------- /lib/manopt/manopt/manifolds/symfixedrank/sympositivedefinitefactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/manifolds/symfixedrank/sympositivedefinitefactory.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/applyStatsfun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/applyStatsfun.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/canGetCost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/canGetCost.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/canGetDirectionalDerivative.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/canGetDirectionalDerivative.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/canGetEuclideanGradient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/canGetEuclideanGradient.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/canGetGradient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/canGetGradient.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/canGetHessian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/canGetHessian.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/canGetLinesearch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/canGetLinesearch.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/canGetPrecon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/canGetPrecon.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/getApproxHessian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/getApproxHessian.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/getCost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/getCost.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/getCostGrad.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/getCostGrad.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/getDirectionalDerivative.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/getDirectionalDerivative.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/getEuclideanGradient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/getEuclideanGradient.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/getGlobalDefaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/getGlobalDefaults.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/getGradient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/getGradient.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/getHessian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/getHessian.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/getHessianFD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/getHessianFD.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/getLinesearch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/getLinesearch.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/getPrecon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/getPrecon.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/getStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/getStore.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/hashmd5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/hashmd5.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/mergeOptions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/mergeOptions.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/purgeStoredb.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/purgeStoredb.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/setStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/setStore.m -------------------------------------------------------------------------------- /lib/manopt/manopt/privatetools/stoppingcriterion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/privatetools/stoppingcriterion.m -------------------------------------------------------------------------------- /lib/manopt/manopt/solvers/conjugategradient/conjugategradient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/solvers/conjugategradient/conjugategradient.m -------------------------------------------------------------------------------- /lib/manopt/manopt/solvers/linesearch/linesearch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/solvers/linesearch/linesearch.m -------------------------------------------------------------------------------- /lib/manopt/manopt/solvers/linesearch/linesearch_adaptive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/solvers/linesearch/linesearch_adaptive.m -------------------------------------------------------------------------------- /lib/manopt/manopt/solvers/linesearch/linesearch_hint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/solvers/linesearch/linesearch_hint.m -------------------------------------------------------------------------------- /lib/manopt/manopt/solvers/neldermead/centroid.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/solvers/neldermead/centroid.m -------------------------------------------------------------------------------- /lib/manopt/manopt/solvers/neldermead/neldermead.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/solvers/neldermead/neldermead.m -------------------------------------------------------------------------------- /lib/manopt/manopt/solvers/pso/pso.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/solvers/pso/pso.m -------------------------------------------------------------------------------- /lib/manopt/manopt/solvers/steepestdescent/steepestdescent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/solvers/steepestdescent/steepestdescent.m -------------------------------------------------------------------------------- /lib/manopt/manopt/solvers/trustregions/license for original GenRTR code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/solvers/trustregions/license for original GenRTR code.txt -------------------------------------------------------------------------------- /lib/manopt/manopt/solvers/trustregions/tCG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/solvers/trustregions/tCG.m -------------------------------------------------------------------------------- /lib/manopt/manopt/solvers/trustregions/trustregions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/solvers/trustregions/trustregions.m -------------------------------------------------------------------------------- /lib/manopt/manopt/tools/checkdiff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/tools/checkdiff.m -------------------------------------------------------------------------------- /lib/manopt/manopt/tools/checkgradient.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/tools/checkgradient.m -------------------------------------------------------------------------------- /lib/manopt/manopt/tools/checkhessian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/tools/checkhessian.m -------------------------------------------------------------------------------- /lib/manopt/manopt/tools/diagsum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/lib/manopt/manopt/tools/diagsum.m -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/main.m -------------------------------------------------------------------------------- /measures/Average_precision.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/measures/Average_precision.m -------------------------------------------------------------------------------- /measures/Hamming_loss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/measures/Hamming_loss.m -------------------------------------------------------------------------------- /measures/One_error.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/measures/One_error.m -------------------------------------------------------------------------------- /measures/Ranking_loss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/measures/Ranking_loss.m -------------------------------------------------------------------------------- /measures/binaryzation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/measures/binaryzation.m -------------------------------------------------------------------------------- /measures/coverage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palm-ml/PML_LD/HEAD/measures/coverage.m --------------------------------------------------------------------------------