├── LICENSE ├── README.md ├── SPGAN ├── Datasets │ └── market2duke │ │ ├── bounding_box_train-Duke │ │ └── data.txt │ │ └── bounding_box_train-Market │ │ └── data.txt ├── LICENSE ├── LICENSE-SPGAN ├── README.md ├── Utils │ ├── __init__.py │ ├── data.py │ ├── image_utils.py │ ├── logging.py │ ├── ops.py │ └── utils.py ├── models │ ├── __init__.py │ ├── models_cyclegan.py │ └── models_spgan.py ├── pics │ ├── fig1.PNG │ └── fig2.PNG ├── test_spgan.py └── train_spgan_demo.py ├── data └── imagenet_models │ └── README.md ├── duke_evaluation ├── KISSME │ └── toolbox │ │ ├── COPYRIGHT │ │ ├── CrossValidatePairs.m │ │ ├── KISSME.m │ │ ├── TrainValidateMarket.m │ │ ├── evalData.m │ │ ├── helper │ │ ├── PairMetricLearning.m │ │ ├── SOPD.cpp │ │ ├── SOPD.mexw64 │ │ ├── ToyCarPairsToLabels.m │ │ ├── calcMCMC.m │ │ ├── calcmAP.m │ │ ├── cdistM.m │ │ ├── col_sum.m │ │ ├── exportAndCropFigure.m │ │ ├── icg_plotroc.m │ │ ├── icg_roc.m │ │ ├── pairsToLabels.m │ │ ├── sqdist.m │ │ └── validateCovMatrix.m │ │ ├── init.m │ │ ├── install3dpartylibs.m │ │ ├── learnAlgos │ │ ├── LearnAlgo.m │ │ ├── LearnAlgoITML.m │ │ ├── LearnAlgoKISSME.m │ │ ├── LearnAlgoLDML.m │ │ ├── LearnAlgoLMNN.m │ │ ├── LearnAlgoMLEuclidean.m │ │ ├── LearnAlgoMahal.m │ │ └── LearnAlgoSVM.m │ │ └── lib │ │ ├── LMNN │ │ ├── .DS_Store │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── dir-prop-base │ │ │ ├── entries │ │ │ ├── format │ │ │ ├── prop-base │ │ │ │ ├── applypca.m.svn-base │ │ │ │ ├── demo.m.svn-base │ │ │ │ ├── energyclassify.m.svn-base │ │ │ │ ├── install.m.svn-base │ │ │ │ ├── knnclassify.m.svn-base │ │ │ │ ├── lmnn.m.svn-base │ │ │ │ ├── pca.m.svn-base │ │ │ │ ├── runlmnn.m.svn-base │ │ │ │ └── setpaths.m.svn-base │ │ │ └── text-base │ │ │ │ ├── applypca.m.svn-base │ │ │ │ ├── demo.m.svn-base │ │ │ │ ├── energyclassify.m.svn-base │ │ │ │ ├── install.m.svn-base │ │ │ │ ├── knnclassify.m.svn-base │ │ │ │ ├── lmnn.m.svn-base │ │ │ │ ├── pca.m.svn-base │ │ │ │ ├── runlmnn.m.svn-base │ │ │ │ └── setpaths.m.svn-base │ │ ├── applypca.m │ │ ├── data │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── dir-prop-base │ │ │ │ ├── entries │ │ │ │ ├── format │ │ │ │ ├── prop-base │ │ │ │ │ ├── bal2.mat.svn-base │ │ │ │ │ └── iris2.mat.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── bal2.mat.svn-base │ │ │ │ │ └── iris2.mat.svn-base │ │ │ ├── bal2.mat │ │ │ └── iris2.mat │ │ ├── demo.m │ │ ├── energyclassify.m │ │ ├── helperfunctions │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── dir-prop-base │ │ │ │ ├── entries │ │ │ │ ├── format │ │ │ │ ├── prop-base │ │ │ │ │ ├── extractpars.m.svn-base │ │ │ │ │ ├── mat.m.svn-base │ │ │ │ │ ├── mexall.m.svn-base │ │ │ │ │ └── vec.m.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── extractpars.m.svn-base │ │ │ │ │ ├── mat.m.svn-base │ │ │ │ │ ├── mexall.m.svn-base │ │ │ │ │ └── vec.m.svn-base │ │ │ ├── distance.m │ │ │ ├── extractpars.m │ │ │ ├── mat.m │ │ │ ├── mexall.m │ │ │ ├── mexallwindows.m │ │ │ └── vec.m │ │ ├── install.m │ │ ├── installWINDOWS.m │ │ ├── knnclassify.m │ │ ├── lmnn.m │ │ ├── mexfunctions │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── dir-prop-base │ │ │ │ ├── entries │ │ │ │ ├── format │ │ │ │ ├── prop-base │ │ │ │ │ ├── SOD.c.svn-base │ │ │ │ │ ├── SOD.m.svn-base │ │ │ │ │ ├── SODW.c.svn-base │ │ │ │ │ ├── SODW.m.svn-base │ │ │ │ │ ├── addchv.c.svn-base │ │ │ │ │ ├── addh.c.svn-base │ │ │ │ │ ├── addv.c.svn-base │ │ │ │ │ ├── cdist.c.svn-base │ │ │ │ │ ├── cdist.m.svn-base │ │ │ │ │ ├── count.c.svn-base │ │ │ │ │ ├── count.m.svn-base │ │ │ │ │ ├── distance.c.svn-base │ │ │ │ │ ├── distance.m.svn-base │ │ │ │ │ ├── findimps3Dac.c.svn-base │ │ │ │ │ ├── findimps3Dac.m.svn-base │ │ │ │ │ ├── findlessh.c.svn-base │ │ │ │ │ ├── findlessh.m.svn-base │ │ │ │ │ ├── mink.c.svn-base │ │ │ │ │ ├── mink.m.svn-base │ │ │ │ │ ├── mulh.c.svn-base │ │ │ │ │ ├── mulh.m.svn-base │ │ │ │ │ ├── mulv.m.svn-base │ │ │ │ │ ├── sd.c.svn-base │ │ │ │ │ ├── sd.m.svn-base │ │ │ │ │ ├── sumiflessh2.c.svn-base │ │ │ │ │ └── sumiflessv2.c.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── SOD.c.svn-base │ │ │ │ │ ├── SOD.m.svn-base │ │ │ │ │ ├── SODW.c.svn-base │ │ │ │ │ ├── SODW.m.svn-base │ │ │ │ │ ├── addchv.c.svn-base │ │ │ │ │ ├── addh.c.svn-base │ │ │ │ │ ├── addv.c.svn-base │ │ │ │ │ ├── cdist.c.svn-base │ │ │ │ │ ├── cdist.m.svn-base │ │ │ │ │ ├── count.c.svn-base │ │ │ │ │ ├── count.m.svn-base │ │ │ │ │ ├── distance.c.svn-base │ │ │ │ │ ├── distance.m.svn-base │ │ │ │ │ ├── findimps3Dac.c.svn-base │ │ │ │ │ ├── findimps3Dac.m.svn-base │ │ │ │ │ ├── findlessh.c.svn-base │ │ │ │ │ ├── findlessh.m.svn-base │ │ │ │ │ ├── mink.c.svn-base │ │ │ │ │ ├── mink.m.svn-base │ │ │ │ │ ├── mulh.c.svn-base │ │ │ │ │ ├── mulh.m.svn-base │ │ │ │ │ ├── mulv.m.svn-base │ │ │ │ │ ├── sd.c.svn-base │ │ │ │ │ ├── sd.m.svn-base │ │ │ │ │ ├── sumiflessh2.c.svn-base │ │ │ │ │ └── sumiflessv2.c.svn-base │ │ │ ├── SOD.c │ │ │ ├── SOD.m │ │ │ ├── SOD.mexmaci │ │ │ ├── SOD.mexmaci64 │ │ │ ├── SOD.mexw64 │ │ │ ├── SODW.c │ │ │ ├── SODW.m │ │ │ ├── SODW.mexmaci │ │ │ ├── SODW.mexmaci64 │ │ │ ├── SODW.mexw64 │ │ │ ├── addchv.c │ │ │ ├── addchv.mexmaci │ │ │ ├── addchv.mexmaci64 │ │ │ ├── addchv.mexw64 │ │ │ ├── addh.c │ │ │ ├── addh.mexmaci │ │ │ ├── addh.mexmaci64 │ │ │ ├── addh.mexw64 │ │ │ ├── addv.c │ │ │ ├── addv.mexmaci │ │ │ ├── addv.mexmaci64 │ │ │ ├── addv.mexw64 │ │ │ ├── cdist.c │ │ │ ├── cdist.m │ │ │ ├── cdist.mexmaci │ │ │ ├── cdist.mexmaci64 │ │ │ ├── cdist.mexw64 │ │ │ ├── count.c │ │ │ ├── count.m │ │ │ ├── count.mexmaci │ │ │ ├── count.mexmaci64 │ │ │ ├── count.mexw64 │ │ │ ├── findimps3Dac.c │ │ │ ├── findimps3Dac.m │ │ │ ├── findimps3Dac.mexmaci │ │ │ ├── findimps3Dac.mexmaci64 │ │ │ ├── findimps3Dac.mexw64 │ │ │ ├── findlessh.c │ │ │ ├── findlessh.m │ │ │ ├── findlessh.mexmaci │ │ │ ├── findlessh.mexmaci64 │ │ │ ├── findlessh.mexw64 │ │ │ ├── mink.c │ │ │ ├── mink.m │ │ │ ├── mink.mexmaci │ │ │ ├── mink.mexmaci64 │ │ │ ├── mink.mexw64 │ │ │ ├── mulh.c │ │ │ ├── mulh.m │ │ │ ├── mulh.mexmaci │ │ │ ├── mulh.mexmaci64 │ │ │ ├── mulh.mexw64 │ │ │ ├── mulv.m │ │ │ ├── sd.c │ │ │ ├── sd.m │ │ │ ├── sd.mexmaci │ │ │ ├── sd.mexmaci64 │ │ │ ├── sd.mexw64 │ │ │ ├── sumiflessh2.c │ │ │ ├── sumiflessh2.mexmaci │ │ │ ├── sumiflessh2.mexmaci64 │ │ │ ├── sumiflessh2.mexw64 │ │ │ ├── sumiflessv2.c │ │ │ ├── sumiflessv2.mexmaci │ │ │ ├── sumiflessv2.mexmaci64 │ │ │ └── sumiflessv2.mexw64 │ │ ├── pca.m │ │ ├── runlmnn.m │ │ └── setpaths.m │ │ ├── MildML_0.1 │ │ ├── README │ │ ├── compute_tasks.c │ │ ├── hist_count.m │ │ ├── ldml_learn.m │ │ ├── mexall.m │ │ ├── mildml_evalg_sparse.c │ │ ├── mildml_evalg_sparse.mexa64 │ │ ├── mildml_fg.m │ │ ├── mildml_learn.m │ │ ├── minimize.m │ │ └── vec.m │ │ ├── __MACOSX │ │ └── LMNN │ │ │ ├── ._.DS_Store │ │ │ ├── ._.svn │ │ │ ├── ._applypca.m │ │ │ ├── ._data │ │ │ ├── ._demo.m │ │ │ ├── ._energyclassify.m │ │ │ ├── ._install.m │ │ │ ├── ._installWINDOWS.m │ │ │ ├── ._knnclassify.m │ │ │ ├── ._lmnn.m │ │ │ ├── ._pca.m │ │ │ ├── ._runlmnn.m │ │ │ ├── ._setpaths.m │ │ │ ├── .svn │ │ │ ├── ._all-wcprops │ │ │ ├── ._dir-prop-base │ │ │ ├── ._entries │ │ │ ├── ._format │ │ │ ├── ._prop-base │ │ │ ├── ._props │ │ │ ├── ._text-base │ │ │ ├── ._tmp │ │ │ ├── prop-base │ │ │ │ ├── ._applypca.m.svn-base │ │ │ │ ├── ._demo.m.svn-base │ │ │ │ ├── ._energyclassify.m.svn-base │ │ │ │ ├── ._install.m.svn-base │ │ │ │ ├── ._knnclassify.m.svn-base │ │ │ │ ├── ._lmnn.m.svn-base │ │ │ │ ├── ._pca.m.svn-base │ │ │ │ ├── ._runlmnn.m.svn-base │ │ │ │ └── ._setpaths.m.svn-base │ │ │ ├── text-base │ │ │ │ ├── ._applypca.m.svn-base │ │ │ │ ├── ._demo.m.svn-base │ │ │ │ ├── ._energyclassify.m.svn-base │ │ │ │ ├── ._install.m.svn-base │ │ │ │ ├── ._knnclassify.m.svn-base │ │ │ │ ├── ._lmnn.m.svn-base │ │ │ │ ├── ._pca.m.svn-base │ │ │ │ ├── ._runlmnn.m.svn-base │ │ │ │ └── ._setpaths.m.svn-base │ │ │ └── tmp │ │ │ │ ├── ._prop-base │ │ │ │ ├── ._props │ │ │ │ └── ._text-base │ │ │ ├── data │ │ │ ├── ._.svn │ │ │ ├── ._bal2.mat │ │ │ ├── ._iris2.mat │ │ │ └── .svn │ │ │ │ ├── ._all-wcprops │ │ │ │ ├── ._dir-prop-base │ │ │ │ ├── ._entries │ │ │ │ ├── ._format │ │ │ │ ├── ._prop-base │ │ │ │ ├── ._props │ │ │ │ ├── ._text-base │ │ │ │ ├── ._tmp │ │ │ │ ├── prop-base │ │ │ │ ├── ._bal2.mat.svn-base │ │ │ │ └── ._iris2.mat.svn-base │ │ │ │ ├── text-base │ │ │ │ ├── ._bal2.mat.svn-base │ │ │ │ └── ._iris2.mat.svn-base │ │ │ │ └── tmp │ │ │ │ ├── ._prop-base │ │ │ │ ├── ._props │ │ │ │ └── ._text-base │ │ │ ├── helperfunctions │ │ │ ├── ._.svn │ │ │ ├── ._extractpars.m │ │ │ ├── ._mat.m │ │ │ ├── ._mexall.m │ │ │ ├── ._mexallwindows.m │ │ │ ├── ._vec.m │ │ │ └── .svn │ │ │ │ ├── ._all-wcprops │ │ │ │ ├── ._dir-prop-base │ │ │ │ ├── ._entries │ │ │ │ ├── ._format │ │ │ │ ├── ._prop-base │ │ │ │ ├── ._props │ │ │ │ ├── ._text-base │ │ │ │ ├── ._tmp │ │ │ │ ├── prop-base │ │ │ │ ├── ._extractpars.m.svn-base │ │ │ │ ├── ._mat.m.svn-base │ │ │ │ ├── ._mexall.m.svn-base │ │ │ │ └── ._vec.m.svn-base │ │ │ │ ├── text-base │ │ │ │ ├── ._extractpars.m.svn-base │ │ │ │ ├── ._mat.m.svn-base │ │ │ │ ├── ._mexall.m.svn-base │ │ │ │ └── ._vec.m.svn-base │ │ │ │ └── tmp │ │ │ │ ├── ._prop-base │ │ │ │ ├── ._props │ │ │ │ └── ._text-base │ │ │ └── mexfunctions │ │ │ ├── ._.svn │ │ │ ├── ._SOD.c │ │ │ ├── ._SOD.m │ │ │ ├── ._SODW.c │ │ │ ├── ._SODW.m │ │ │ ├── ._addchv.c │ │ │ ├── ._addh.c │ │ │ ├── ._addv.c │ │ │ ├── ._cdist.c │ │ │ ├── ._cdist.m │ │ │ ├── ._count.c │ │ │ ├── ._count.m │ │ │ ├── ._findimps3Dac.c │ │ │ ├── ._findimps3Dac.m │ │ │ ├── ._findlessh.c │ │ │ ├── ._findlessh.m │ │ │ ├── ._mink.c │ │ │ ├── ._mink.m │ │ │ ├── ._mulh.c │ │ │ ├── ._mulh.m │ │ │ ├── ._mulv.m │ │ │ ├── ._sd.c │ │ │ ├── ._sd.m │ │ │ ├── ._sumiflessh2.c │ │ │ ├── ._sumiflessv2.c │ │ │ └── .svn │ │ │ ├── ._all-wcprops │ │ │ ├── ._dir-prop-base │ │ │ ├── ._entries │ │ │ ├── ._format │ │ │ ├── ._prop-base │ │ │ ├── ._props │ │ │ ├── ._text-base │ │ │ ├── ._tmp │ │ │ ├── prop-base │ │ │ ├── ._SOD.c.svn-base │ │ │ ├── ._SOD.m.svn-base │ │ │ ├── ._SODW.c.svn-base │ │ │ ├── ._SODW.m.svn-base │ │ │ ├── ._addchv.c.svn-base │ │ │ ├── ._addh.c.svn-base │ │ │ ├── ._addv.c.svn-base │ │ │ ├── ._cdist.c.svn-base │ │ │ ├── ._cdist.m.svn-base │ │ │ ├── ._count.c.svn-base │ │ │ ├── ._count.m.svn-base │ │ │ ├── ._distance.c.svn-base │ │ │ ├── ._distance.m.svn-base │ │ │ ├── ._findimps3Dac.c.svn-base │ │ │ ├── ._findimps3Dac.m.svn-base │ │ │ ├── ._findlessh.c.svn-base │ │ │ ├── ._findlessh.m.svn-base │ │ │ ├── ._mink.c.svn-base │ │ │ ├── ._mink.m.svn-base │ │ │ ├── ._mulh.c.svn-base │ │ │ ├── ._mulh.m.svn-base │ │ │ ├── ._mulv.m.svn-base │ │ │ ├── ._sd.c.svn-base │ │ │ ├── ._sd.m.svn-base │ │ │ ├── ._sumiflessh2.c.svn-base │ │ │ └── ._sumiflessv2.c.svn-base │ │ │ ├── text-base │ │ │ ├── ._SOD.c.svn-base │ │ │ ├── ._SOD.m.svn-base │ │ │ ├── ._SODW.c.svn-base │ │ │ ├── ._SODW.m.svn-base │ │ │ ├── ._addchv.c.svn-base │ │ │ ├── ._addh.c.svn-base │ │ │ ├── ._addv.c.svn-base │ │ │ ├── ._cdist.c.svn-base │ │ │ ├── ._cdist.m.svn-base │ │ │ ├── ._count.c.svn-base │ │ │ ├── ._count.m.svn-base │ │ │ ├── ._distance.c.svn-base │ │ │ ├── ._distance.m.svn-base │ │ │ ├── ._findimps3Dac.c.svn-base │ │ │ ├── ._findimps3Dac.m.svn-base │ │ │ ├── ._findlessh.c.svn-base │ │ │ ├── ._findlessh.m.svn-base │ │ │ ├── ._mink.c.svn-base │ │ │ ├── ._mink.m.svn-base │ │ │ ├── ._mulh.c.svn-base │ │ │ ├── ._mulh.m.svn-base │ │ │ ├── ._mulv.m.svn-base │ │ │ ├── ._sd.c.svn-base │ │ │ ├── ._sd.m.svn-base │ │ │ ├── ._sumiflessh2.c.svn-base │ │ │ └── ._sumiflessv2.c.svn-base │ │ │ └── tmp │ │ │ ├── ._prop-base │ │ │ ├── ._props │ │ │ └── ._text-base │ │ └── itml │ │ ├── ComputeDistanceExtremes.m │ │ ├── CrossValidateKNN.m │ │ ├── CrossValidateKNN.m~ │ │ ├── EuclideanDistance.m │ │ ├── GetConstraints.m │ │ ├── ItmlAlg.m │ │ ├── KNN.m │ │ ├── MetricLearning.m │ │ ├── MetricLearningAutotuneKnn.m │ │ ├── README │ │ ├── SetDefaultParams.m │ │ ├── Test.m │ │ └── data │ │ ├── iris.mtx │ │ └── iris.truth ├── LOMO_XQDA │ ├── LICENSE │ ├── README.txt │ ├── bin │ │ ├── Retinex.mexa64 │ │ ├── Retinex.mexglx │ │ ├── Retinex.mexw32 │ │ └── Retinex.mexw64 │ ├── code │ │ ├── Demo_LOMO.m │ │ ├── Demo_XQDA.m │ │ ├── EvalCMC.m │ │ ├── LOMO.m │ │ ├── MahDist.m │ │ ├── SILTP.m │ │ └── XQDA.m │ ├── images │ │ ├── 000_45_a.bmp │ │ └── 000_45_b.bmp │ └── results │ │ ├── cuhk01_lomo_xqda.mat │ │ ├── cuhk03_detected_lomo_xqda.mat │ │ ├── cuhk03_labeled_lomo_xqda.mat │ │ ├── qmul_grid_lomo_xqda.mat │ │ ├── qmul_grid_lomo_xqda_camera-network.mat │ │ └── viper_lomo_xqda.mat ├── data │ ├── queryCAM_duke.mat │ ├── queryID_duke.mat │ ├── testCAM_duke.mat │ ├── testID_duke.mat │ ├── trainCAM_duke.mat │ └── trainID_duke.mat ├── dataset │ ├── readme.txt │ ├── train.txt │ └── train_duke2market.txt ├── evaluation_res_duke_fast.m ├── extract_feature.m ├── feat │ └── README.md └── utils │ ├── MahDist.m │ ├── applypca2.m │ ├── col_sum.m │ ├── compute_AP.m │ ├── compute_AP_multiCam.m │ ├── compute_AP_multiCam_multi.m │ ├── compute_AP_rerank.m │ ├── compute_r1_multiCam.m │ ├── compute_r1_multiCam_multi.m │ ├── draw_confusion_matrix.m │ ├── evaluation.m │ ├── gen_train_sample_kissme.m │ ├── gen_train_sample_xqda.m │ ├── info_mars.m │ ├── prepare_img.m │ ├── prepare_img_deng.m │ ├── prepare_img_gray.m │ ├── process_box_feat.m │ ├── process_box_feat_prune.m │ ├── re_ranking.m │ └── sqdist.m ├── experiments ├── duke │ ├── train_IDE_ResNet_50_baseline.sh │ └── train_IDE_ResNet_50_domain.sh └── market │ ├── train_IDE_ResNet_50_baseline.sh │ └── train_IDE_ResNet_50_domain.sh ├── market_evaluation ├── KISSME │ └── toolbox │ │ ├── COPYRIGHT │ │ ├── CrossValidatePairs.m │ │ ├── KISSME.m │ │ ├── TrainValidateMarket.m │ │ ├── evalData.m │ │ ├── helper │ │ ├── PairMetricLearning.m │ │ ├── SOPD.cpp │ │ ├── SOPD.mexw64 │ │ ├── ToyCarPairsToLabels.m │ │ ├── calcMCMC.m │ │ ├── calcmAP.m │ │ ├── cdistM.m │ │ ├── col_sum.m │ │ ├── exportAndCropFigure.m │ │ ├── icg_plotroc.m │ │ ├── icg_roc.m │ │ ├── pairsToLabels.m │ │ ├── sqdist.m │ │ └── validateCovMatrix.m │ │ ├── init.m │ │ ├── install3dpartylibs.m │ │ ├── learnAlgos │ │ ├── LearnAlgo.m │ │ ├── LearnAlgoITML.m │ │ ├── LearnAlgoKISSME.m │ │ ├── LearnAlgoLDML.m │ │ ├── LearnAlgoLMNN.m │ │ ├── LearnAlgoMLEuclidean.m │ │ ├── LearnAlgoMahal.m │ │ └── LearnAlgoSVM.m │ │ └── lib │ │ ├── LMNN │ │ ├── .DS_Store │ │ ├── .svn │ │ │ ├── all-wcprops │ │ │ ├── dir-prop-base │ │ │ ├── entries │ │ │ ├── format │ │ │ ├── prop-base │ │ │ │ ├── applypca.m.svn-base │ │ │ │ ├── demo.m.svn-base │ │ │ │ ├── energyclassify.m.svn-base │ │ │ │ ├── install.m.svn-base │ │ │ │ ├── knnclassify.m.svn-base │ │ │ │ ├── lmnn.m.svn-base │ │ │ │ ├── pca.m.svn-base │ │ │ │ ├── runlmnn.m.svn-base │ │ │ │ └── setpaths.m.svn-base │ │ │ └── text-base │ │ │ │ ├── applypca.m.svn-base │ │ │ │ ├── demo.m.svn-base │ │ │ │ ├── energyclassify.m.svn-base │ │ │ │ ├── install.m.svn-base │ │ │ │ ├── knnclassify.m.svn-base │ │ │ │ ├── lmnn.m.svn-base │ │ │ │ ├── pca.m.svn-base │ │ │ │ ├── runlmnn.m.svn-base │ │ │ │ └── setpaths.m.svn-base │ │ ├── applypca.m │ │ ├── data │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── dir-prop-base │ │ │ │ ├── entries │ │ │ │ ├── format │ │ │ │ ├── prop-base │ │ │ │ │ ├── bal2.mat.svn-base │ │ │ │ │ └── iris2.mat.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── bal2.mat.svn-base │ │ │ │ │ └── iris2.mat.svn-base │ │ │ ├── bal2.mat │ │ │ └── iris2.mat │ │ ├── demo.m │ │ ├── energyclassify.m │ │ ├── helperfunctions │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── dir-prop-base │ │ │ │ ├── entries │ │ │ │ ├── format │ │ │ │ ├── prop-base │ │ │ │ │ ├── extractpars.m.svn-base │ │ │ │ │ ├── mat.m.svn-base │ │ │ │ │ ├── mexall.m.svn-base │ │ │ │ │ └── vec.m.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── extractpars.m.svn-base │ │ │ │ │ ├── mat.m.svn-base │ │ │ │ │ ├── mexall.m.svn-base │ │ │ │ │ └── vec.m.svn-base │ │ │ ├── distance.m │ │ │ ├── extractpars.m │ │ │ ├── mat.m │ │ │ ├── mexall.m │ │ │ ├── mexallwindows.m │ │ │ └── vec.m │ │ ├── install.m │ │ ├── installWINDOWS.m │ │ ├── knnclassify.m │ │ ├── lmnn.m │ │ ├── mexfunctions │ │ │ ├── .svn │ │ │ │ ├── all-wcprops │ │ │ │ ├── dir-prop-base │ │ │ │ ├── entries │ │ │ │ ├── format │ │ │ │ ├── prop-base │ │ │ │ │ ├── SOD.c.svn-base │ │ │ │ │ ├── SOD.m.svn-base │ │ │ │ │ ├── SODW.c.svn-base │ │ │ │ │ ├── SODW.m.svn-base │ │ │ │ │ ├── addchv.c.svn-base │ │ │ │ │ ├── addh.c.svn-base │ │ │ │ │ ├── addv.c.svn-base │ │ │ │ │ ├── cdist.c.svn-base │ │ │ │ │ ├── cdist.m.svn-base │ │ │ │ │ ├── count.c.svn-base │ │ │ │ │ ├── count.m.svn-base │ │ │ │ │ ├── distance.c.svn-base │ │ │ │ │ ├── distance.m.svn-base │ │ │ │ │ ├── findimps3Dac.c.svn-base │ │ │ │ │ ├── findimps3Dac.m.svn-base │ │ │ │ │ ├── findlessh.c.svn-base │ │ │ │ │ ├── findlessh.m.svn-base │ │ │ │ │ ├── mink.c.svn-base │ │ │ │ │ ├── mink.m.svn-base │ │ │ │ │ ├── mulh.c.svn-base │ │ │ │ │ ├── mulh.m.svn-base │ │ │ │ │ ├── mulv.m.svn-base │ │ │ │ │ ├── sd.c.svn-base │ │ │ │ │ ├── sd.m.svn-base │ │ │ │ │ ├── sumiflessh2.c.svn-base │ │ │ │ │ └── sumiflessv2.c.svn-base │ │ │ │ └── text-base │ │ │ │ │ ├── SOD.c.svn-base │ │ │ │ │ ├── SOD.m.svn-base │ │ │ │ │ ├── SODW.c.svn-base │ │ │ │ │ ├── SODW.m.svn-base │ │ │ │ │ ├── addchv.c.svn-base │ │ │ │ │ ├── addh.c.svn-base │ │ │ │ │ ├── addv.c.svn-base │ │ │ │ │ ├── cdist.c.svn-base │ │ │ │ │ ├── cdist.m.svn-base │ │ │ │ │ ├── count.c.svn-base │ │ │ │ │ ├── count.m.svn-base │ │ │ │ │ ├── distance.c.svn-base │ │ │ │ │ ├── distance.m.svn-base │ │ │ │ │ ├── findimps3Dac.c.svn-base │ │ │ │ │ ├── findimps3Dac.m.svn-base │ │ │ │ │ ├── findlessh.c.svn-base │ │ │ │ │ ├── findlessh.m.svn-base │ │ │ │ │ ├── mink.c.svn-base │ │ │ │ │ ├── mink.m.svn-base │ │ │ │ │ ├── mulh.c.svn-base │ │ │ │ │ ├── mulh.m.svn-base │ │ │ │ │ ├── mulv.m.svn-base │ │ │ │ │ ├── sd.c.svn-base │ │ │ │ │ ├── sd.m.svn-base │ │ │ │ │ ├── sumiflessh2.c.svn-base │ │ │ │ │ └── sumiflessv2.c.svn-base │ │ │ ├── SOD.c │ │ │ ├── SOD.m │ │ │ ├── SOD.mexmaci │ │ │ ├── SOD.mexmaci64 │ │ │ ├── SOD.mexw64 │ │ │ ├── SODW.c │ │ │ ├── SODW.m │ │ │ ├── SODW.mexmaci │ │ │ ├── SODW.mexmaci64 │ │ │ ├── SODW.mexw64 │ │ │ ├── addchv.c │ │ │ ├── addchv.mexmaci │ │ │ ├── addchv.mexmaci64 │ │ │ ├── addchv.mexw64 │ │ │ ├── addh.c │ │ │ ├── addh.mexmaci │ │ │ ├── addh.mexmaci64 │ │ │ ├── addh.mexw64 │ │ │ ├── addv.c │ │ │ ├── addv.mexmaci │ │ │ ├── addv.mexmaci64 │ │ │ ├── addv.mexw64 │ │ │ ├── cdist.c │ │ │ ├── cdist.m │ │ │ ├── cdist.mexmaci │ │ │ ├── cdist.mexmaci64 │ │ │ ├── cdist.mexw64 │ │ │ ├── count.c │ │ │ ├── count.m │ │ │ ├── count.mexmaci │ │ │ ├── count.mexmaci64 │ │ │ ├── count.mexw64 │ │ │ ├── findimps3Dac.c │ │ │ ├── findimps3Dac.m │ │ │ ├── findimps3Dac.mexmaci │ │ │ ├── findimps3Dac.mexmaci64 │ │ │ ├── findimps3Dac.mexw64 │ │ │ ├── findlessh.c │ │ │ ├── findlessh.m │ │ │ ├── findlessh.mexmaci │ │ │ ├── findlessh.mexmaci64 │ │ │ ├── findlessh.mexw64 │ │ │ ├── mink.c │ │ │ ├── mink.m │ │ │ ├── mink.mexmaci │ │ │ ├── mink.mexmaci64 │ │ │ ├── mink.mexw64 │ │ │ ├── mulh.c │ │ │ ├── mulh.m │ │ │ ├── mulh.mexmaci │ │ │ ├── mulh.mexmaci64 │ │ │ ├── mulh.mexw64 │ │ │ ├── mulv.m │ │ │ ├── sd.c │ │ │ ├── sd.m │ │ │ ├── sd.mexmaci │ │ │ ├── sd.mexmaci64 │ │ │ ├── sd.mexw64 │ │ │ ├── sumiflessh2.c │ │ │ ├── sumiflessh2.mexmaci │ │ │ ├── sumiflessh2.mexmaci64 │ │ │ ├── sumiflessh2.mexw64 │ │ │ ├── sumiflessv2.c │ │ │ ├── sumiflessv2.mexmaci │ │ │ ├── sumiflessv2.mexmaci64 │ │ │ └── sumiflessv2.mexw64 │ │ ├── pca.m │ │ ├── runlmnn.m │ │ └── setpaths.m │ │ ├── MildML_0.1 │ │ ├── README │ │ ├── compute_tasks.c │ │ ├── hist_count.m │ │ ├── ldml_learn.m │ │ ├── mexall.m │ │ ├── mildml_evalg_sparse.c │ │ ├── mildml_evalg_sparse.mexa64 │ │ ├── mildml_fg.m │ │ ├── mildml_learn.m │ │ ├── minimize.m │ │ └── vec.m │ │ ├── __MACOSX │ │ └── LMNN │ │ │ ├── ._.DS_Store │ │ │ ├── ._.svn │ │ │ ├── ._applypca.m │ │ │ ├── ._data │ │ │ ├── ._demo.m │ │ │ ├── ._energyclassify.m │ │ │ ├── ._install.m │ │ │ ├── ._installWINDOWS.m │ │ │ ├── ._knnclassify.m │ │ │ ├── ._lmnn.m │ │ │ ├── ._pca.m │ │ │ ├── ._runlmnn.m │ │ │ ├── ._setpaths.m │ │ │ ├── .svn │ │ │ ├── ._all-wcprops │ │ │ ├── ._dir-prop-base │ │ │ ├── ._entries │ │ │ ├── ._format │ │ │ ├── ._prop-base │ │ │ ├── ._props │ │ │ ├── ._text-base │ │ │ ├── ._tmp │ │ │ ├── prop-base │ │ │ │ ├── ._applypca.m.svn-base │ │ │ │ ├── ._demo.m.svn-base │ │ │ │ ├── ._energyclassify.m.svn-base │ │ │ │ ├── ._install.m.svn-base │ │ │ │ ├── ._knnclassify.m.svn-base │ │ │ │ ├── ._lmnn.m.svn-base │ │ │ │ ├── ._pca.m.svn-base │ │ │ │ ├── ._runlmnn.m.svn-base │ │ │ │ └── ._setpaths.m.svn-base │ │ │ ├── text-base │ │ │ │ ├── ._applypca.m.svn-base │ │ │ │ ├── ._demo.m.svn-base │ │ │ │ ├── ._energyclassify.m.svn-base │ │ │ │ ├── ._install.m.svn-base │ │ │ │ ├── ._knnclassify.m.svn-base │ │ │ │ ├── ._lmnn.m.svn-base │ │ │ │ ├── ._pca.m.svn-base │ │ │ │ ├── ._runlmnn.m.svn-base │ │ │ │ └── ._setpaths.m.svn-base │ │ │ └── tmp │ │ │ │ ├── ._prop-base │ │ │ │ ├── ._props │ │ │ │ └── ._text-base │ │ │ ├── data │ │ │ ├── ._.svn │ │ │ ├── ._bal2.mat │ │ │ ├── ._iris2.mat │ │ │ └── .svn │ │ │ │ ├── ._all-wcprops │ │ │ │ ├── ._dir-prop-base │ │ │ │ ├── ._entries │ │ │ │ ├── ._format │ │ │ │ ├── ._prop-base │ │ │ │ ├── ._props │ │ │ │ ├── ._text-base │ │ │ │ ├── ._tmp │ │ │ │ ├── prop-base │ │ │ │ ├── ._bal2.mat.svn-base │ │ │ │ └── ._iris2.mat.svn-base │ │ │ │ ├── text-base │ │ │ │ ├── ._bal2.mat.svn-base │ │ │ │ └── ._iris2.mat.svn-base │ │ │ │ └── tmp │ │ │ │ ├── ._prop-base │ │ │ │ ├── ._props │ │ │ │ └── ._text-base │ │ │ ├── helperfunctions │ │ │ ├── ._.svn │ │ │ ├── ._extractpars.m │ │ │ ├── ._mat.m │ │ │ ├── ._mexall.m │ │ │ ├── ._mexallwindows.m │ │ │ ├── ._vec.m │ │ │ └── .svn │ │ │ │ ├── ._all-wcprops │ │ │ │ ├── ._dir-prop-base │ │ │ │ ├── ._entries │ │ │ │ ├── ._format │ │ │ │ ├── ._prop-base │ │ │ │ ├── ._props │ │ │ │ ├── ._text-base │ │ │ │ ├── ._tmp │ │ │ │ ├── prop-base │ │ │ │ ├── ._extractpars.m.svn-base │ │ │ │ ├── ._mat.m.svn-base │ │ │ │ ├── ._mexall.m.svn-base │ │ │ │ └── ._vec.m.svn-base │ │ │ │ ├── text-base │ │ │ │ ├── ._extractpars.m.svn-base │ │ │ │ ├── ._mat.m.svn-base │ │ │ │ ├── ._mexall.m.svn-base │ │ │ │ └── ._vec.m.svn-base │ │ │ │ └── tmp │ │ │ │ ├── ._prop-base │ │ │ │ ├── ._props │ │ │ │ └── ._text-base │ │ │ └── mexfunctions │ │ │ ├── ._.svn │ │ │ ├── ._SOD.c │ │ │ ├── ._SOD.m │ │ │ ├── ._SODW.c │ │ │ ├── ._SODW.m │ │ │ ├── ._addchv.c │ │ │ ├── ._addh.c │ │ │ ├── ._addv.c │ │ │ ├── ._cdist.c │ │ │ ├── ._cdist.m │ │ │ ├── ._count.c │ │ │ ├── ._count.m │ │ │ ├── ._findimps3Dac.c │ │ │ ├── ._findimps3Dac.m │ │ │ ├── ._findlessh.c │ │ │ ├── ._findlessh.m │ │ │ ├── ._mink.c │ │ │ ├── ._mink.m │ │ │ ├── ._mulh.c │ │ │ ├── ._mulh.m │ │ │ ├── ._mulv.m │ │ │ ├── ._sd.c │ │ │ ├── ._sd.m │ │ │ ├── ._sumiflessh2.c │ │ │ ├── ._sumiflessv2.c │ │ │ └── .svn │ │ │ ├── ._all-wcprops │ │ │ ├── ._dir-prop-base │ │ │ ├── ._entries │ │ │ ├── ._format │ │ │ ├── ._prop-base │ │ │ ├── ._props │ │ │ ├── ._text-base │ │ │ ├── ._tmp │ │ │ ├── prop-base │ │ │ ├── ._SOD.c.svn-base │ │ │ ├── ._SOD.m.svn-base │ │ │ ├── ._SODW.c.svn-base │ │ │ ├── ._SODW.m.svn-base │ │ │ ├── ._addchv.c.svn-base │ │ │ ├── ._addh.c.svn-base │ │ │ ├── ._addv.c.svn-base │ │ │ ├── ._cdist.c.svn-base │ │ │ ├── ._cdist.m.svn-base │ │ │ ├── ._count.c.svn-base │ │ │ ├── ._count.m.svn-base │ │ │ ├── ._distance.c.svn-base │ │ │ ├── ._distance.m.svn-base │ │ │ ├── ._findimps3Dac.c.svn-base │ │ │ ├── ._findimps3Dac.m.svn-base │ │ │ ├── ._findlessh.c.svn-base │ │ │ ├── ._findlessh.m.svn-base │ │ │ ├── ._mink.c.svn-base │ │ │ ├── ._mink.m.svn-base │ │ │ ├── ._mulh.c.svn-base │ │ │ ├── ._mulh.m.svn-base │ │ │ ├── ._mulv.m.svn-base │ │ │ ├── ._sd.c.svn-base │ │ │ ├── ._sd.m.svn-base │ │ │ ├── ._sumiflessh2.c.svn-base │ │ │ └── ._sumiflessv2.c.svn-base │ │ │ ├── text-base │ │ │ ├── ._SOD.c.svn-base │ │ │ ├── ._SOD.m.svn-base │ │ │ ├── ._SODW.c.svn-base │ │ │ ├── ._SODW.m.svn-base │ │ │ ├── ._addchv.c.svn-base │ │ │ ├── ._addh.c.svn-base │ │ │ ├── ._addv.c.svn-base │ │ │ ├── ._cdist.c.svn-base │ │ │ ├── ._cdist.m.svn-base │ │ │ ├── ._count.c.svn-base │ │ │ ├── ._count.m.svn-base │ │ │ ├── ._distance.c.svn-base │ │ │ ├── ._distance.m.svn-base │ │ │ ├── ._findimps3Dac.c.svn-base │ │ │ ├── ._findimps3Dac.m.svn-base │ │ │ ├── ._findlessh.c.svn-base │ │ │ ├── ._findlessh.m.svn-base │ │ │ ├── ._mink.c.svn-base │ │ │ ├── ._mink.m.svn-base │ │ │ ├── ._mulh.c.svn-base │ │ │ ├── ._mulh.m.svn-base │ │ │ ├── ._mulv.m.svn-base │ │ │ ├── ._sd.c.svn-base │ │ │ ├── ._sd.m.svn-base │ │ │ ├── ._sumiflessh2.c.svn-base │ │ │ └── ._sumiflessv2.c.svn-base │ │ │ └── tmp │ │ │ ├── ._prop-base │ │ │ ├── ._props │ │ │ └── ._text-base │ │ └── itml │ │ ├── ComputeDistanceExtremes.m │ │ ├── CrossValidateKNN.m │ │ ├── CrossValidateKNN.m~ │ │ ├── EuclideanDistance.m │ │ ├── GetConstraints.m │ │ ├── ItmlAlg.m │ │ ├── KNN.m │ │ ├── MetricLearning.m │ │ ├── MetricLearningAutotuneKnn.m │ │ ├── README │ │ ├── SetDefaultParams.m │ │ ├── Test.m │ │ └── data │ │ ├── iris.mtx │ │ └── iris.truth ├── LOMO_XQDA │ ├── LICENSE │ ├── README.txt │ ├── bin │ │ ├── Retinex.mexa64 │ │ ├── Retinex.mexglx │ │ ├── Retinex.mexw32 │ │ └── Retinex.mexw64 │ ├── code │ │ ├── Demo_LOMO.m │ │ ├── Demo_XQDA.m │ │ ├── EvalCMC.m │ │ ├── LOMO.m │ │ ├── MahDist.m │ │ ├── SILTP.m │ │ └── XQDA.m │ ├── images │ │ ├── 000_45_a.bmp │ │ └── 000_45_b.bmp │ └── results │ │ ├── cuhk01_lomo_xqda.mat │ │ ├── cuhk03_detected_lomo_xqda.mat │ │ ├── cuhk03_labeled_lomo_xqda.mat │ │ ├── qmul_grid_lomo_xqda.mat │ │ ├── qmul_grid_lomo_xqda_camera-network.mat │ │ └── viper_lomo_xqda.mat ├── baseline_evaluation_IDE.m ├── data │ ├── codebook_350.mat │ ├── codebook_500.mat │ ├── params_350.mat │ ├── params_500.mat │ ├── queryCam.mat │ ├── queryID.mat │ ├── testCam.mat │ ├── testID.mat │ ├── train_cam.mat │ ├── train_label.mat │ └── w2c.mat ├── dataset │ ├── readme.txt │ ├── train.txt │ └── train_market2duke.txt ├── extract_feature.m ├── feat │ └── README.md └── utils │ ├── applypca2.m │ ├── compute_AP.m │ ├── compute_AP_multiCam.m │ ├── compute_r1_multiCam.m │ ├── draw_confusion_matrix.m │ ├── evaluation.m │ ├── gen_train_sample_kissme.m │ ├── gen_train_sample_xqda.m │ ├── info_mars.m │ ├── prepare_img.m │ ├── process_box_feat.m │ └── process_box_feat_prune.m ├── models ├── duke │ ├── ResNet_50 │ │ ├── ResNet_50_solver.prototxt │ │ ├── ResNet_50_test.prototxt │ │ └── ResNet_50_train.prototxt │ └── ResNet_50_domain │ │ ├── ResNet_50_domain_test.prototxt │ │ ├── ResNet_50_solver.prototxt │ │ ├── ResNet_50_test.prototxt │ │ └── ResNet_50_train.prototxt └── market │ ├── CaffeNet │ ├── CaffeNet_solver.prototxt │ ├── CaffeNet_test.prototxt │ └── CaffeNet_train_val.prototxt │ ├── ResNet_50 │ ├── ResNet_50_solver.prototxt │ ├── ResNet_50_test.prototxt │ ├── ResNet_50_train.prototxt │ └── ResNet_50_train_val.prototxt │ └── ResNet_50_domain │ ├── ResNet_50_domain_test.prototxt │ ├── ResNet_50_solver.prototxt │ └── ResNet_50_train.prototxt ├── output ├── duek_train │ └── README.txt └── market_train │ └── README.txt └── pics ├── fig1.PNG └── fig2.PNG /SPGAN/Datasets/market2duke/bounding_box_train-Duke/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/SPGAN/Datasets/market2duke/bounding_box_train-Duke/data.txt -------------------------------------------------------------------------------- /SPGAN/Datasets/market2duke/bounding_box_train-Market/data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/SPGAN/Datasets/market2duke/bounding_box_train-Market/data.txt -------------------------------------------------------------------------------- /SPGAN/Utils/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python2 2 | # -*- coding: utf-8 -*- 3 | """ 4 | Created on Sat Oct 7 16:16:19 2017 5 | 6 | @author: root 7 | """ 8 | 9 | -------------------------------------------------------------------------------- /SPGAN/models/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python2 2 | # -*- coding: utf-8 -*- 3 | """ 4 | Created on Sat Oct 7 16:16:19 2017 5 | 6 | @author: root 7 | """ 8 | 9 | -------------------------------------------------------------------------------- /SPGAN/pics/fig1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/SPGAN/pics/fig1.PNG -------------------------------------------------------------------------------- /SPGAN/pics/fig2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/SPGAN/pics/fig2.PNG -------------------------------------------------------------------------------- /data/imagenet_models/README.md: -------------------------------------------------------------------------------- 1 | #Imagenet pre-trained models 2 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/helper/SOPD.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/helper/SOPD.mexw64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/helper/col_sum.m: -------------------------------------------------------------------------------- 1 | function s = col_sum(x) 2 | % COL_SUM Sum for each column. 3 | % A more readable alternative to sum(x,1). 4 | s = sum(x,1); 5 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/.DS_Store -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/.svn/dir-prop-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | K 10 6 | svn:ignore 7 | V 3 8 | *~ 9 | 10 | END 11 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/applypca.m.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/demo.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/energyclassify.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/install.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/knnclassify.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/lmnn.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/pca.m.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/runlmnn.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/setpaths.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/.svn/text-base/setpaths.m.svn-base: -------------------------------------------------------------------------------- 1 | fprintf('Adding directories to path.\n'); 2 | addpath(pwd); 3 | cd mexfunctions 4 | addpath(pwd); 5 | cd .. 6 | cd helperfunctions 7 | addpath(pwd); 8 | cd .. 9 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/data/.svn/dir-prop-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | K 10 6 | svn:ignore 7 | V 3 8 | *~ 9 | 10 | END 11 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/data/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/data/.svn/prop-base/bal2.mat.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | K 13 6 | svn:mime-type 7 | V 24 8 | application/octet-stream 9 | END 10 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/data/.svn/prop-base/iris2.mat.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | K 13 6 | svn:mime-type 7 | V 24 8 | application/octet-stream 9 | END 10 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/data/.svn/text-base/bal2.mat.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/data/.svn/text-base/bal2.mat.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/data/.svn/text-base/iris2.mat.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/data/.svn/text-base/iris2.mat.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/data/bal2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/data/bal2.mat -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/data/iris2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/data/iris2.mat -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/dir-prop-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | K 10 6 | svn:ignore 7 | V 3 8 | *~ 9 | 10 | END 11 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/prop-base/extractpars.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/prop-base/mat.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/prop-base/mexall.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/prop-base/vec.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/text-base/mat.m.svn-base: -------------------------------------------------------------------------------- 1 | function M=mat(C); 2 | 3 | r=round(sqrt(size(C,1))); 4 | M=reshape(C,r,r); -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/text-base/vec.m.svn-base: -------------------------------------------------------------------------------- 1 | function C=vec(M); 2 | 3 | C=M(:); -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/mat.m: -------------------------------------------------------------------------------- 1 | function M=mat(C); 2 | 3 | r=round(sqrt(size(C,1))); 4 | M=reshape(C,r,r); -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/vec.m: -------------------------------------------------------------------------------- 1 | function C=vec(M); 2 | 3 | C=M(:); -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/dir-prop-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | K 10 6 | svn:ignore 7 | V 3 8 | *~ 9 | 10 | END 11 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/SOD.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/SOD.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/SODW.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/SODW.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/addchv.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/addh.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/addv.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/cdist.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/cdist.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/count.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/count.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/distance.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/distance.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/findimps3Dac.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/findimps3Dac.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/findlessh.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/findlessh.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/mink.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/mink.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/mulh.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/mulh.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/mulv.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/sd.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/sd.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/sumiflessh2.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/sumiflessv2.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SOD.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SOD.mexmaci -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SOD.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SOD.mexmaci64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SOD.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SOD.mexw64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SODW.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SODW.mexmaci -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SODW.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SODW.mexmaci64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SODW.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SODW.mexw64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addchv.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addchv.mexmaci -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addchv.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addchv.mexmaci64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addchv.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addchv.mexw64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addh.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addh.mexmaci -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addh.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addh.mexmaci64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addh.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addh.mexw64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addv.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addv.mexmaci -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addv.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addv.mexmaci64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addv.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addv.mexw64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/cdist.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/cdist.mexmaci -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/cdist.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/cdist.mexmaci64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/cdist.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/cdist.mexw64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/count.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/count.mexmaci -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/count.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/count.mexmaci64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/count.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/count.mexw64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findimps3Dac.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findimps3Dac.mexmaci -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findimps3Dac.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findimps3Dac.mexmaci64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findimps3Dac.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findimps3Dac.mexw64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findlessh.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findlessh.mexmaci -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findlessh.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findlessh.mexmaci64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findlessh.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findlessh.mexw64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mink.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mink.mexmaci -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mink.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mink.mexmaci64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mink.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mink.mexw64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mulh.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mulh.mexmaci -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mulh.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mulh.mexmaci64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mulh.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mulh.mexw64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sd.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sd.mexmaci -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sd.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sd.mexmaci64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sd.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sd.mexw64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessh2.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessh2.mexmaci -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessh2.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessh2.mexmaci64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessh2.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessh2.mexw64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessv2.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessv2.mexmaci -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessv2.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessv2.mexmaci64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessv2.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessv2.mexw64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/LMNN/setpaths.m: -------------------------------------------------------------------------------- 1 | fprintf('Adding directories to path.\n'); 2 | addpath(pwd); 3 | cd mexfunctions 4 | addpath(pwd); 5 | cd .. 6 | cd helperfunctions 7 | addpath(pwd); 8 | cd .. 9 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/MildML_0.1/mexall.m: -------------------------------------------------------------------------------- 1 | mex -largeArrayDims mildml_evalg_sparse.c -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/MildML_0.1/mildml_evalg_sparse.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/MildML_0.1/mildml_evalg_sparse.mexa64 -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/MildML_0.1/vec.m: -------------------------------------------------------------------------------- 1 | function v = vec(a) 2 | 3 | v = a(:); 4 | -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._.DS_Store -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._.svn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._.svn -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._applypca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._applypca.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._data -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._demo.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._energyclassify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._energyclassify.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._install.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._install.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._installWINDOWS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._installWINDOWS.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._knnclassify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._knnclassify.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._lmnn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._lmnn.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._pca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._pca.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._runlmnn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._runlmnn.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._setpaths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._setpaths.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._all-wcprops -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._dir-prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._dir-prop-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._entries -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._format -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._prop-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._props -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._text-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._text-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._tmp -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._applypca.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._applypca.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._demo.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._demo.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._energyclassify.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._energyclassify.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._install.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._install.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._knnclassify.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._knnclassify.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._lmnn.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._lmnn.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._pca.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._pca.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._runlmnn.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._runlmnn.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._setpaths.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._setpaths.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._applypca.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._applypca.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._demo.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._demo.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._energyclassify.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._energyclassify.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._install.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._install.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._knnclassify.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._knnclassify.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._lmnn.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._lmnn.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._pca.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._pca.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._runlmnn.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._runlmnn.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._setpaths.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._setpaths.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/tmp/._prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/tmp/._prop-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/tmp/._props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/tmp/._props -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/tmp/._text-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/tmp/._text-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/._.svn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/._.svn -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/._bal2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/._bal2.mat -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/._iris2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/._iris2.mat -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._all-wcprops -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._dir-prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._dir-prop-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._entries -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._format -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._prop-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._props -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._text-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._text-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._tmp -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/prop-base/._bal2.mat.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/prop-base/._bal2.mat.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/prop-base/._iris2.mat.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/prop-base/._iris2.mat.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/text-base/._bal2.mat.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/text-base/._bal2.mat.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/text-base/._iris2.mat.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/text-base/._iris2.mat.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/tmp/._prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/tmp/._prop-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/tmp/._props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/tmp/._props -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/tmp/._text-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/tmp/._text-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._.svn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._.svn -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._extractpars.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._extractpars.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._mat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._mat.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._mexall.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._mexall.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._mexallwindows.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._mexallwindows.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._vec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._vec.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._all-wcprops -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._dir-prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._dir-prop-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._entries -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._format -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._prop-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._props -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._text-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._text-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._tmp -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/prop-base/._extractpars.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/prop-base/._extractpars.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/prop-base/._mat.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/prop-base/._mat.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/prop-base/._mexall.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/prop-base/._mexall.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/prop-base/._vec.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/prop-base/._vec.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/text-base/._extractpars.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/text-base/._extractpars.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/text-base/._mat.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/text-base/._mat.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/text-base/._mexall.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/text-base/._mexall.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/text-base/._vec.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/text-base/._vec.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/tmp/._prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/tmp/._prop-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/tmp/._props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/tmp/._props -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/tmp/._text-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/tmp/._text-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._.svn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._.svn -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._SOD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._SOD.c -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._SOD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._SOD.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._SODW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._SODW.c -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._SODW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._SODW.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._addchv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._addchv.c -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._addh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._addh.c -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._addv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._addv.c -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._cdist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._cdist.c -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._cdist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._cdist.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._count.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._count.c -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._count.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._count.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._findimps3Dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._findimps3Dac.c -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._findimps3Dac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._findimps3Dac.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._findlessh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._findlessh.c -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._findlessh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._findlessh.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mink.c -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mink.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mulh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mulh.c -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mulh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mulh.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mulv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mulv.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._sd.c -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._sd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._sd.m -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._sumiflessh2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._sumiflessh2.c -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._sumiflessv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._sumiflessv2.c -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._all-wcprops -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._dir-prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._dir-prop-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._entries -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._format -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._prop-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._props -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._text-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._text-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._tmp -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._SOD.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._SOD.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._SOD.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._SOD.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._SODW.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._SODW.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._SODW.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._SODW.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._addchv.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._addchv.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._addh.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._addh.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._addv.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._addv.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._cdist.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._cdist.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._cdist.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._cdist.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._count.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._count.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._count.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._count.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._distance.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._distance.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._distance.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._distance.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._findimps3Dac.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._findimps3Dac.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._findimps3Dac.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._findimps3Dac.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._findlessh.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._findlessh.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._findlessh.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._findlessh.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mink.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mink.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mink.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mink.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mulh.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mulh.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mulh.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mulh.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mulv.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mulv.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._sd.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._sd.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._sd.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._sd.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._sumiflessh2.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._sumiflessh2.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._sumiflessv2.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._sumiflessv2.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._SOD.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._SOD.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._SOD.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._SOD.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._SODW.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._SODW.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._SODW.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._SODW.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._addchv.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._addchv.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._addh.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._addh.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._addv.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._addv.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._cdist.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._cdist.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._cdist.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._cdist.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._count.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._count.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._count.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._count.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._distance.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._distance.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._distance.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._distance.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._findimps3Dac.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._findimps3Dac.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._findimps3Dac.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._findimps3Dac.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._findlessh.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._findlessh.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._findlessh.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._findlessh.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mink.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mink.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mink.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mink.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mulh.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mulh.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mulh.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mulh.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mulv.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mulv.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._sd.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._sd.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._sd.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._sd.m.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._sumiflessh2.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._sumiflessh2.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._sumiflessv2.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._sumiflessv2.c.svn-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/tmp/._prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/tmp/._prop-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/tmp/._props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/tmp/._props -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/tmp/._text-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/tmp/._text-base -------------------------------------------------------------------------------- /duke_evaluation/KISSME/toolbox/lib/itml/EuclideanDistance.m: -------------------------------------------------------------------------------- 1 | function M = EuclideanDistance(X, C); 2 | M = eye(size(X,2)); -------------------------------------------------------------------------------- /duke_evaluation/LOMO_XQDA/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/LOMO_XQDA/README.txt -------------------------------------------------------------------------------- /duke_evaluation/LOMO_XQDA/bin/Retinex.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/LOMO_XQDA/bin/Retinex.mexa64 -------------------------------------------------------------------------------- /duke_evaluation/LOMO_XQDA/bin/Retinex.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/LOMO_XQDA/bin/Retinex.mexglx -------------------------------------------------------------------------------- /duke_evaluation/LOMO_XQDA/bin/Retinex.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/LOMO_XQDA/bin/Retinex.mexw32 -------------------------------------------------------------------------------- /duke_evaluation/LOMO_XQDA/bin/Retinex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/LOMO_XQDA/bin/Retinex.mexw64 -------------------------------------------------------------------------------- /duke_evaluation/LOMO_XQDA/code/SILTP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/LOMO_XQDA/code/SILTP.m -------------------------------------------------------------------------------- /duke_evaluation/LOMO_XQDA/images/000_45_a.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/LOMO_XQDA/images/000_45_a.bmp -------------------------------------------------------------------------------- /duke_evaluation/LOMO_XQDA/images/000_45_b.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/LOMO_XQDA/images/000_45_b.bmp -------------------------------------------------------------------------------- /duke_evaluation/LOMO_XQDA/results/cuhk01_lomo_xqda.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/LOMO_XQDA/results/cuhk01_lomo_xqda.mat -------------------------------------------------------------------------------- /duke_evaluation/LOMO_XQDA/results/cuhk03_detected_lomo_xqda.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/LOMO_XQDA/results/cuhk03_detected_lomo_xqda.mat -------------------------------------------------------------------------------- /duke_evaluation/LOMO_XQDA/results/cuhk03_labeled_lomo_xqda.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/LOMO_XQDA/results/cuhk03_labeled_lomo_xqda.mat -------------------------------------------------------------------------------- /duke_evaluation/LOMO_XQDA/results/qmul_grid_lomo_xqda.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/LOMO_XQDA/results/qmul_grid_lomo_xqda.mat -------------------------------------------------------------------------------- /duke_evaluation/LOMO_XQDA/results/qmul_grid_lomo_xqda_camera-network.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/LOMO_XQDA/results/qmul_grid_lomo_xqda_camera-network.mat -------------------------------------------------------------------------------- /duke_evaluation/LOMO_XQDA/results/viper_lomo_xqda.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/LOMO_XQDA/results/viper_lomo_xqda.mat -------------------------------------------------------------------------------- /duke_evaluation/data/queryCAM_duke.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/data/queryCAM_duke.mat -------------------------------------------------------------------------------- /duke_evaluation/data/queryID_duke.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/data/queryID_duke.mat -------------------------------------------------------------------------------- /duke_evaluation/data/testCAM_duke.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/data/testCAM_duke.mat -------------------------------------------------------------------------------- /duke_evaluation/data/testID_duke.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/data/testID_duke.mat -------------------------------------------------------------------------------- /duke_evaluation/data/trainCAM_duke.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/data/trainCAM_duke.mat -------------------------------------------------------------------------------- /duke_evaluation/data/trainID_duke.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/duke_evaluation/data/trainID_duke.mat -------------------------------------------------------------------------------- /duke_evaluation/dataset/readme.txt: -------------------------------------------------------------------------------- 1 | DukeMTMC-reID: https://github.com/layumi/DukeMTMC-reID_evaluation 2 | -------------------------------------------------------------------------------- /duke_evaluation/feat/README.md: -------------------------------------------------------------------------------- 1 | # IDE feature 2 | -------------------------------------------------------------------------------- /duke_evaluation/utils/col_sum.m: -------------------------------------------------------------------------------- 1 | function s = col_sum(x) 2 | % COL_SUM Sum for each column. 3 | % A more readable alternative to sum(x,1). 4 | s = sum(x,1); 5 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/helper/SOPD.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/helper/SOPD.mexw64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/helper/col_sum.m: -------------------------------------------------------------------------------- 1 | function s = col_sum(x) 2 | % COL_SUM Sum for each column. 3 | % A more readable alternative to sum(x,1). 4 | s = sum(x,1); 5 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/.DS_Store -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/.svn/dir-prop-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | K 10 6 | svn:ignore 7 | V 3 8 | *~ 9 | 10 | END 11 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/applypca.m.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/demo.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/energyclassify.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/install.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/knnclassify.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/lmnn.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/pca.m.svn-base: -------------------------------------------------------------------------------- 1 | K 14 2 | svn:executable 3 | V 1 4 | * 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/runlmnn.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/.svn/prop-base/setpaths.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/.svn/text-base/setpaths.m.svn-base: -------------------------------------------------------------------------------- 1 | fprintf('Adding directories to path.\n'); 2 | addpath(pwd); 3 | cd mexfunctions 4 | addpath(pwd); 5 | cd .. 6 | cd helperfunctions 7 | addpath(pwd); 8 | cd .. 9 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/data/.svn/dir-prop-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | K 10 6 | svn:ignore 7 | V 3 8 | *~ 9 | 10 | END 11 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/data/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/data/.svn/prop-base/bal2.mat.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | K 13 6 | svn:mime-type 7 | V 24 8 | application/octet-stream 9 | END 10 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/data/.svn/prop-base/iris2.mat.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | K 13 6 | svn:mime-type 7 | V 24 8 | application/octet-stream 9 | END 10 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/data/.svn/text-base/bal2.mat.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/data/.svn/text-base/bal2.mat.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/data/.svn/text-base/iris2.mat.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/data/.svn/text-base/iris2.mat.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/data/bal2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/data/bal2.mat -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/data/iris2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/data/iris2.mat -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/dir-prop-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | K 10 6 | svn:ignore 7 | V 3 8 | *~ 9 | 10 | END 11 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/prop-base/extractpars.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/prop-base/mat.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/prop-base/mexall.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/prop-base/vec.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/text-base/mat.m.svn-base: -------------------------------------------------------------------------------- 1 | function M=mat(C); 2 | 3 | r=round(sqrt(size(C,1))); 4 | M=reshape(C,r,r); -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/.svn/text-base/vec.m.svn-base: -------------------------------------------------------------------------------- 1 | function C=vec(M); 2 | 3 | C=M(:); -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/mat.m: -------------------------------------------------------------------------------- 1 | function M=mat(C); 2 | 3 | r=round(sqrt(size(C,1))); 4 | M=reshape(C,r,r); -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/helperfunctions/vec.m: -------------------------------------------------------------------------------- 1 | function C=vec(M); 2 | 3 | C=M(:); -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/dir-prop-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | K 10 6 | svn:ignore 7 | V 3 8 | *~ 9 | 10 | END 11 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/format: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/SOD.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/SOD.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/SODW.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/SODW.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/addchv.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | K 14 6 | svn:executable 7 | V 1 8 | * 9 | END 10 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/addh.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/addv.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/cdist.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/cdist.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/count.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/count.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/distance.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/distance.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/findimps3Dac.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/findimps3Dac.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/findlessh.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/findlessh.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/mink.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/mink.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/mulh.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/mulh.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/mulv.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/sd.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/sd.m.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/sumiflessh2.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/.svn/prop-base/sumiflessv2.c.svn-base: -------------------------------------------------------------------------------- 1 | K 11 2 | svn::ignore 3 | V 5 4 | *.mat 5 | END 6 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SOD.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SOD.mexmaci -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SOD.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SOD.mexmaci64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SOD.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SOD.mexw64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SODW.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SODW.mexmaci -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SODW.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SODW.mexmaci64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SODW.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/SODW.mexw64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addchv.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addchv.mexmaci -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addchv.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addchv.mexmaci64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addchv.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addchv.mexw64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addh.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addh.mexmaci -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addh.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addh.mexmaci64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addh.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addh.mexw64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addv.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addv.mexmaci -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addv.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addv.mexmaci64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addv.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/addv.mexw64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/cdist.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/cdist.mexmaci -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/cdist.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/cdist.mexmaci64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/cdist.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/cdist.mexw64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/count.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/count.mexmaci -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/count.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/count.mexmaci64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/count.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/count.mexw64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findimps3Dac.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findimps3Dac.mexmaci -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findimps3Dac.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findimps3Dac.mexmaci64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findimps3Dac.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findimps3Dac.mexw64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findlessh.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findlessh.mexmaci -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findlessh.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findlessh.mexmaci64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findlessh.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/findlessh.mexw64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mink.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mink.mexmaci -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mink.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mink.mexmaci64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mink.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mink.mexw64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mulh.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mulh.mexmaci -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mulh.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mulh.mexmaci64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mulh.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/mulh.mexw64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sd.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sd.mexmaci -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sd.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sd.mexmaci64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sd.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sd.mexw64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessh2.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessh2.mexmaci -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessh2.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessh2.mexmaci64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessh2.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessh2.mexw64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessv2.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessv2.mexmaci -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessv2.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessv2.mexmaci64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessv2.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/LMNN/mexfunctions/sumiflessv2.mexw64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/LMNN/setpaths.m: -------------------------------------------------------------------------------- 1 | fprintf('Adding directories to path.\n'); 2 | addpath(pwd); 3 | cd mexfunctions 4 | addpath(pwd); 5 | cd .. 6 | cd helperfunctions 7 | addpath(pwd); 8 | cd .. 9 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/MildML_0.1/mexall.m: -------------------------------------------------------------------------------- 1 | mex -largeArrayDims mildml_evalg_sparse.c -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/MildML_0.1/mildml_evalg_sparse.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/MildML_0.1/mildml_evalg_sparse.mexa64 -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/MildML_0.1/vec.m: -------------------------------------------------------------------------------- 1 | function v = vec(a) 2 | 3 | v = a(:); 4 | -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._.DS_Store -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._.svn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._.svn -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._applypca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._applypca.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._data -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._demo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._demo.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._energyclassify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._energyclassify.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._install.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._install.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._installWINDOWS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._installWINDOWS.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._knnclassify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._knnclassify.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._lmnn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._lmnn.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._pca.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._pca.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._runlmnn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._runlmnn.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._setpaths.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/._setpaths.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._all-wcprops -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._dir-prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._dir-prop-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._entries -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._format -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._prop-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._props -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._text-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._text-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/._tmp -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._applypca.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._applypca.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._demo.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._demo.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._energyclassify.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._energyclassify.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._install.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._install.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._knnclassify.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._knnclassify.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._lmnn.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._lmnn.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._pca.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._pca.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._runlmnn.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._runlmnn.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._setpaths.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/prop-base/._setpaths.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._applypca.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._applypca.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._demo.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._demo.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._energyclassify.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._energyclassify.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._install.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._install.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._knnclassify.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._knnclassify.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._lmnn.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._lmnn.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._pca.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._pca.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._runlmnn.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._runlmnn.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._setpaths.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/text-base/._setpaths.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/tmp/._prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/tmp/._prop-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/tmp/._props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/tmp/._props -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/tmp/._text-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/.svn/tmp/._text-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/._.svn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/._.svn -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/._bal2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/._bal2.mat -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/._iris2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/._iris2.mat -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._all-wcprops -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._dir-prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._dir-prop-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._entries -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._format -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._prop-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._props -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._text-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._text-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/._tmp -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/prop-base/._bal2.mat.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/prop-base/._bal2.mat.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/prop-base/._iris2.mat.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/prop-base/._iris2.mat.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/text-base/._bal2.mat.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/text-base/._bal2.mat.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/text-base/._iris2.mat.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/text-base/._iris2.mat.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/tmp/._prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/tmp/._prop-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/tmp/._props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/tmp/._props -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/tmp/._text-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/data/.svn/tmp/._text-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._.svn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._.svn -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._extractpars.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._extractpars.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._mat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._mat.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._mexall.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._mexall.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._mexallwindows.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._mexallwindows.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._vec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/._vec.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._all-wcprops -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._dir-prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._dir-prop-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._entries -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._format -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._prop-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._props -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._text-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._text-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/._tmp -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/prop-base/._mat.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/prop-base/._mat.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/prop-base/._mexall.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/prop-base/._mexall.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/prop-base/._vec.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/prop-base/._vec.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/text-base/._mat.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/text-base/._mat.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/text-base/._mexall.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/text-base/._mexall.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/text-base/._vec.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/text-base/._vec.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/tmp/._prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/tmp/._prop-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/tmp/._props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/tmp/._props -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/tmp/._text-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/helperfunctions/.svn/tmp/._text-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._.svn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._.svn -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._SOD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._SOD.c -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._SOD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._SOD.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._SODW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._SODW.c -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._SODW.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._SODW.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._addchv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._addchv.c -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._addh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._addh.c -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._addv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._addv.c -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._cdist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._cdist.c -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._cdist.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._cdist.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._count.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._count.c -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._count.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._count.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._findimps3Dac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._findimps3Dac.c -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._findimps3Dac.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._findimps3Dac.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._findlessh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._findlessh.c -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._findlessh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._findlessh.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mink.c -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mink.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mink.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mulh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mulh.c -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mulh.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mulh.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mulv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._mulv.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._sd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._sd.c -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._sd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._sd.m -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._sumiflessh2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._sumiflessh2.c -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._sumiflessv2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/._sumiflessv2.c -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._all-wcprops: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._all-wcprops -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._dir-prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._dir-prop-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._entries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._entries -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._format -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._prop-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._props -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._text-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._text-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/._tmp -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._SOD.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._SOD.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._SOD.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._SOD.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._SODW.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._SODW.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._SODW.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._SODW.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._addchv.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._addchv.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._addh.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._addh.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._addv.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._addv.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._cdist.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._cdist.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._cdist.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._cdist.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._count.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._count.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._count.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._count.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._distance.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._distance.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._distance.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._distance.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._findlessh.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._findlessh.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._findlessh.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._findlessh.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mink.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mink.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mink.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mink.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mulh.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mulh.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mulh.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mulh.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mulv.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._mulv.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._sd.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._sd.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._sd.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._sd.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._sumiflessh2.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._sumiflessh2.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._sumiflessv2.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/prop-base/._sumiflessv2.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._SOD.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._SOD.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._SOD.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._SOD.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._SODW.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._SODW.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._SODW.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._SODW.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._addchv.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._addchv.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._addh.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._addh.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._addv.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._addv.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._cdist.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._cdist.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._cdist.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._cdist.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._count.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._count.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._count.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._count.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._distance.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._distance.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._distance.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._distance.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._findlessh.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._findlessh.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._findlessh.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._findlessh.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mink.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mink.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mink.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mink.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mulh.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mulh.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mulh.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mulh.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mulv.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._mulv.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._sd.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._sd.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._sd.m.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._sd.m.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._sumiflessh2.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._sumiflessh2.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._sumiflessv2.c.svn-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/text-base/._sumiflessv2.c.svn-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/tmp/._prop-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/tmp/._prop-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/tmp/._props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/tmp/._props -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/tmp/._text-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/KISSME/toolbox/lib/__MACOSX/LMNN/mexfunctions/.svn/tmp/._text-base -------------------------------------------------------------------------------- /market_evaluation/KISSME/toolbox/lib/itml/EuclideanDistance.m: -------------------------------------------------------------------------------- 1 | function M = EuclideanDistance(X, C); 2 | M = eye(size(X,2)); -------------------------------------------------------------------------------- /market_evaluation/LOMO_XQDA/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/LOMO_XQDA/README.txt -------------------------------------------------------------------------------- /market_evaluation/LOMO_XQDA/bin/Retinex.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/LOMO_XQDA/bin/Retinex.mexa64 -------------------------------------------------------------------------------- /market_evaluation/LOMO_XQDA/bin/Retinex.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/LOMO_XQDA/bin/Retinex.mexglx -------------------------------------------------------------------------------- /market_evaluation/LOMO_XQDA/bin/Retinex.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/LOMO_XQDA/bin/Retinex.mexw32 -------------------------------------------------------------------------------- /market_evaluation/LOMO_XQDA/bin/Retinex.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/LOMO_XQDA/bin/Retinex.mexw64 -------------------------------------------------------------------------------- /market_evaluation/LOMO_XQDA/code/SILTP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/LOMO_XQDA/code/SILTP.m -------------------------------------------------------------------------------- /market_evaluation/LOMO_XQDA/images/000_45_a.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/LOMO_XQDA/images/000_45_a.bmp -------------------------------------------------------------------------------- /market_evaluation/LOMO_XQDA/images/000_45_b.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/LOMO_XQDA/images/000_45_b.bmp -------------------------------------------------------------------------------- /market_evaluation/LOMO_XQDA/results/cuhk01_lomo_xqda.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/LOMO_XQDA/results/cuhk01_lomo_xqda.mat -------------------------------------------------------------------------------- /market_evaluation/LOMO_XQDA/results/cuhk03_detected_lomo_xqda.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/LOMO_XQDA/results/cuhk03_detected_lomo_xqda.mat -------------------------------------------------------------------------------- /market_evaluation/LOMO_XQDA/results/cuhk03_labeled_lomo_xqda.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/LOMO_XQDA/results/cuhk03_labeled_lomo_xqda.mat -------------------------------------------------------------------------------- /market_evaluation/LOMO_XQDA/results/qmul_grid_lomo_xqda.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/LOMO_XQDA/results/qmul_grid_lomo_xqda.mat -------------------------------------------------------------------------------- /market_evaluation/LOMO_XQDA/results/qmul_grid_lomo_xqda_camera-network.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/LOMO_XQDA/results/qmul_grid_lomo_xqda_camera-network.mat -------------------------------------------------------------------------------- /market_evaluation/LOMO_XQDA/results/viper_lomo_xqda.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/LOMO_XQDA/results/viper_lomo_xqda.mat -------------------------------------------------------------------------------- /market_evaluation/data/codebook_350.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/data/codebook_350.mat -------------------------------------------------------------------------------- /market_evaluation/data/codebook_500.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/data/codebook_500.mat -------------------------------------------------------------------------------- /market_evaluation/data/params_350.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/data/params_350.mat -------------------------------------------------------------------------------- /market_evaluation/data/params_500.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/data/params_500.mat -------------------------------------------------------------------------------- /market_evaluation/data/queryCam.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/data/queryCam.mat -------------------------------------------------------------------------------- /market_evaluation/data/queryID.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/data/queryID.mat -------------------------------------------------------------------------------- /market_evaluation/data/testCam.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/data/testCam.mat -------------------------------------------------------------------------------- /market_evaluation/data/testID.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/data/testID.mat -------------------------------------------------------------------------------- /market_evaluation/data/train_cam.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/data/train_cam.mat -------------------------------------------------------------------------------- /market_evaluation/data/train_label.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/data/train_label.mat -------------------------------------------------------------------------------- /market_evaluation/data/w2c.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/market_evaluation/data/w2c.mat -------------------------------------------------------------------------------- /market_evaluation/feat/README.md: -------------------------------------------------------------------------------- 1 | # IDE feature 2 | -------------------------------------------------------------------------------- /output/duek_train/README.txt: -------------------------------------------------------------------------------- 1 | IDE models 2 | -------------------------------------------------------------------------------- /output/market_train/README.txt: -------------------------------------------------------------------------------- 1 | IDE models 2 | -------------------------------------------------------------------------------- /pics/fig1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/pics/fig1.PNG -------------------------------------------------------------------------------- /pics/fig2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Simon4Yan/Learning-via-Translation/f73210e35e1515528c454c681e7d6695fdecf818/pics/fig2.PNG --------------------------------------------------------------------------------