├── .gitignore ├── Core ├── BasicLighting.vert ├── Core.pro ├── animationlabel.cpp ├── animationlabel.h ├── basicMath.h ├── canvas-drawing.cpp ├── canvas-interaction.cpp ├── canvas.cpp ├── canvas.h ├── classifier.h ├── clusterer.cpp ├── clusterer.h ├── contours.cpp ├── contours.h ├── dataImport.ui ├── dataImporter.cpp ├── dataImporter.h ├── datasetManager.cpp ├── datasetManager.h ├── drawSVG.cpp ├── drawSVG.h ├── drawTimer.cpp ├── drawTimer.h ├── drawUtils.cpp ├── drawUtils.h ├── dynamical.h ├── expose.cpp ├── expose.h ├── expose.ui ├── fileutils.cpp ├── fileutils.h ├── gettimeofday.cc ├── gettimeofday.h ├── glUtils.cpp ├── glUtils.h ├── glwidget.cpp ├── glwidget.h ├── interfaces.h ├── kmeans.cpp ├── kmeans.h ├── maximize.h ├── mymaths.cpp ├── mymaths.h ├── obstacles.h ├── optimization_test_functions.h ├── parser.cpp ├── parser.h ├── projector.h ├── public.h ├── qcontour.cpp ├── qcontour.h ├── regressor.h ├── reinforcement.h ├── reinforcementProblem.cpp ├── reinforcementProblem.h ├── roc.cpp ├── roc.h ├── spline.h ├── sse_mathfun.h ├── types.h ├── widget.cpp └── widget.h ├── INSTALL.txt ├── LICENSE.txt ├── MLDemos.pro ├── MLDemos ├── MLDemos.cbp ├── MLDemos.pro ├── MachineLearning.ico ├── MachineLearning.rc ├── aboutDialog.ui ├── algorithmOptions.ui ├── algorithmmanager-classify.cpp ├── algorithmmanager-cluster.cpp ├── algorithmmanager-compare.cpp ├── algorithmmanager-data.cpp ├── algorithmmanager-dynamical.cpp ├── algorithmmanager-io.cpp ├── algorithmmanager-maximize.cpp ├── algorithmmanager-project.cpp ├── algorithmmanager-query.cpp ├── algorithmmanager-regress.cpp ├── algorithmmanager-reinforce.cpp ├── algorithmmanager.cpp ├── algorithmmanager.h ├── basewidget.cpp ├── basewidget.h ├── compare.cpp ├── compare.h ├── compare.ui ├── comparewidget.h ├── datagenerator.cpp ├── datagenerator.h ├── dataseteditor.cpp ├── dataseteditor.h ├── dataseteditor.ui ├── datasetgenerator.ui ├── displayoptions.ui ├── drawingTools.ui ├── drawingToolsContext1.ui ├── drawingToolsContext2.ui ├── drawingToolsContext3.ui ├── drawingToolsContext4.ui ├── gridsearch.cpp ├── gridsearch.h ├── gridsearch.ui ├── icons │ ├── _obstacle.png │ ├── _trajectory.png │ ├── adddata.png │ ├── airbrush.png │ ├── airbrush3D.png │ ├── algorithm_icons.pdf │ ├── algorithm_icons_Classification.png │ ├── algorithm_icons_Clustering.png │ ├── algorithm_icons_DS.png │ ├── algorithm_icons_Maximization.png │ ├── algorithm_icons_Projection.png │ ├── algorithm_icons_RL.png │ ├── algorithm_icons_Regression.png │ ├── algorithms.png │ ├── bigbrush.png │ ├── brush.png │ ├── classify.png │ ├── clearall.png │ ├── cleardata.png │ ├── clearmodel.png │ ├── clock.png │ ├── cluster.png │ ├── compare.png │ ├── dimless.png │ ├── dimplus.png │ ├── display.png │ ├── drag.png │ ├── draw.png │ ├── dynamical.png │ ├── ellipse.png │ ├── erase.png │ ├── eraser.png │ ├── extrude.png │ ├── gridsearch.png │ ├── icon.png │ ├── icons.pdf │ ├── icons_clearAll.png │ ├── icons_clearData.png │ ├── icons_clearModel.png │ ├── icons_compare.png │ ├── icons_datagenerator.png │ ├── icons_fitToViewport.png │ ├── icons_gridsearch.png │ ├── icons_saveToClipboard.png │ ├── icons_saveToDisk.png │ ├── icons_showBackground.png │ ├── icons_showGrid.png │ ├── icons_showLegend.png │ ├── icons_showModel.png │ ├── icons_showOutput.png │ ├── icons_showSamples.png │ ├── icons_showSettings.png │ ├── icons_showStats.png │ ├── line.png │ ├── load.png │ ├── maximize.png │ ├── move-class.png │ ├── move.png │ ├── new.png │ ├── obstacle.png │ ├── project.png │ ├── regress.png │ ├── save.png │ ├── screenshot.png │ ├── spinner-24x24.gif │ ├── sprayclass.png │ ├── stats copy.png │ ├── stats.png │ ├── trajectory.png │ └── zoom.png ├── inputDimensions.ui ├── logo.icns ├── logo.png ├── main.cpp ├── manualSelection.ui ├── mldemos-canvas.cpp ├── mldemos-data.cpp ├── mldemos-draw.cpp ├── mldemos-init.cpp ├── mldemos-io.cpp ├── mldemos-manualselection.cpp ├── mldemos-optionschanged.cpp ├── mldemos-showhide.cpp ├── mldemos.cpp ├── mldemos.h ├── mldemos.qrc ├── mldemos.ui ├── mlsaving.cpp ├── mlstats.cpp ├── optsClassify.ui ├── optsCluster.ui ├── optsCompare.ui ├── optsDynamic.ui ├── optsMaximize.ui ├── optsProject.ui ├── optsRegress.ui ├── optsReinforcement.ui ├── pluginSelectionLists.h ├── pluginmanager.cpp ├── pluginmanager.h ├── shaders │ ├── BasicLighting.frag │ ├── BasicLighting.vert │ ├── GaussianSphere.frag │ ├── GaussianSphere.vert │ ├── GaussianWireframe.frag │ ├── GaussianWireframe.vert │ ├── blurFBO.fsh │ ├── blurFBO.vsh │ ├── depthSamples.fsh │ ├── depthSamples.vsh │ ├── drawSamples copy.fsh │ ├── drawSamples copy.vsh │ ├── drawSamples.fsh │ ├── drawSamples.vsh │ ├── drawSamplesShadow.fsh │ ├── drawSamplesShadow.vsh │ ├── renderFBO.fsh │ ├── renderFBO.vsh │ ├── smoothTransparent.fsh │ └── smoothTransparent.vsh ├── statisticsDialog.ui ├── viewOptions.ui ├── visualization.cpp ├── visualization.h └── visualization.ui ├── MLDemos_variables.pri ├── MLScripting ├── MLScripting.pro └── main.cpp ├── README.md ├── _3rdParty ├── 3rdParty.pro ├── ANN │ ├── ANN.cpp │ ├── ANN.h │ ├── ANNperf.h │ ├── ANNx.h │ ├── bd_fix_rad_search.cpp │ ├── bd_pr_search.cpp │ ├── bd_search.cpp │ ├── bd_tree.cpp │ ├── bd_tree.h │ ├── brute.cpp │ ├── kd_dump.cpp │ ├── kd_fix_rad_search.cpp │ ├── kd_fix_rad_search.h │ ├── kd_pr_search.cpp │ ├── kd_pr_search.h │ ├── kd_search.cpp │ ├── kd_search.h │ ├── kd_split.cpp │ ├── kd_split.h │ ├── kd_tree.cpp │ ├── kd_tree.h │ ├── kd_util.cpp │ ├── kd_util.h │ ├── perf.cpp │ ├── pr_queue.h │ └── pr_queue_k.h ├── DBScan │ ├── DBSCAN.hpp │ ├── Meanshift.hpp │ ├── author.txt │ ├── c_clustering_library.hpp │ ├── clustering_methods.cpp │ ├── generalized-kmeans.hpp │ ├── kmedoids.hpp │ ├── meanshift.cpp │ └── xmeans.hpp ├── GHSOM.tgz ├── HMMlib │ ├── allocator_traits.hpp │ ├── float_traits.hpp │ ├── hmm.hpp │ ├── hmm_matrix.hpp │ ├── hmm_matrix_test.cpp │ ├── hmm_table.hpp │ ├── hmm_test.cpp │ ├── hmm_vector.hpp │ ├── hmm_vector_test.cpp │ ├── operator_traits.hpp │ └── sse_operator_traits.hpp ├── JnS │ ├── JnS.cpp │ ├── JnS.h │ ├── Matutil.cpp │ └── Matutil.h ├── LAMP_HMM │ ├── checkDurationDist.cpp │ ├── configFileExample.txt │ ├── discreteObsProb.cpp │ ├── discreteObsProb.h │ ├── explicitDurationTrans.cpp │ ├── explicitDurationTrans.h │ ├── gammaProb.cpp │ ├── gammaProb.h │ ├── gaussianObsProb.cpp │ ├── gaussianObsProb.h │ ├── hmm.cpp │ ├── hmm.h │ ├── hmmFind.cpp │ ├── initStateProb.cpp │ ├── initStateProb.h │ ├── obs.h │ ├── obsProb.h │ ├── obsSeq.cpp │ ├── obsSeq.h │ ├── plainStateTrans.cpp │ ├── plainStateTrans.h │ ├── readConfigFile.cpp │ ├── stateTrans.h │ ├── utils.cpp │ ├── utils.h │ ├── vectorObsProb.cpp │ └── vectorObsProb.h ├── LICENSE-ann_1.1.2.txt ├── LICENSE-dlib.txt ├── LICENSE-libsvm.txt ├── MathLib │ ├── Differentiator.cpp │ ├── Differentiator.h │ ├── GradientDescent.cpp │ ├── GradientDescent.h │ ├── IKGroupSolver.cpp │ ├── IKGroupSolver.h │ ├── IKSubSolver.cpp │ ├── IKSubSolver.h │ ├── Macros.cpp │ ├── Macros.h │ ├── MathLib.cpp │ ├── MathLib.h │ ├── MathLibCommon.cpp │ ├── MathLibCommon.h │ ├── Matrix.cpp │ ├── Matrix.h │ ├── Matrix3.cpp │ ├── Matrix3.h │ ├── Matrix4.cpp │ ├── Matrix4.h │ ├── ReferenceFrame.cpp │ ├── ReferenceFrame.h │ ├── Regression.cpp │ ├── Regression.h │ ├── SpatialForce.cpp │ ├── SpatialForce.h │ ├── SpatialFrame.cpp │ ├── SpatialFrame.h │ ├── SpatialInertia.cpp │ ├── SpatialInertia.h │ ├── SpatialMatrix.cpp │ ├── SpatialMatrix.h │ ├── SpatialVector.cpp │ ├── SpatialVector.h │ ├── SpatialVelocity.cpp │ ├── SpatialVelocity.h │ ├── TMatrix.cpp │ ├── TMatrix.h │ ├── TVector.cpp │ ├── TVector.h │ ├── Vector.cpp │ ├── Vector.h │ ├── Vector3.cpp │ └── Vector3.h ├── PSO │ ├── memoryAllocation.cpp │ ├── memoryAllocation.h │ ├── optimization_test_functions.h │ ├── optimizer.cpp │ ├── optimizer.h │ ├── pso.cpp │ └── pso.h ├── _Eigen_remove │ ├── Array │ ├── CMakeLists.txt │ ├── Cholesky │ ├── Core │ ├── Dense │ ├── Eigen │ ├── Eigen2Support │ ├── Eigenvalues │ ├── Geometry │ ├── Householder │ ├── Jacobi │ ├── LU │ ├── LeastSquares │ ├── QR │ ├── QtAlignedMalloc │ ├── SVD │ ├── Sparse │ ├── StdDeque │ ├── StdList │ ├── StdVector │ └── src │ │ ├── CMakeLists.txt │ │ ├── Cholesky │ │ ├── CMakeLists.txt │ │ ├── LDLT.h │ │ └── LLT.h │ │ ├── Core │ │ ├── Array.h │ │ ├── ArrayBase.h │ │ ├── ArrayWrapper.h │ │ ├── Assign.h │ │ ├── BandMatrix.h │ │ ├── Block.h │ │ ├── BooleanRedux.h │ │ ├── CMakeLists.txt │ │ ├── CommaInitializer.h │ │ ├── CwiseBinaryOp.h │ │ ├── CwiseNullaryOp.h │ │ ├── CwiseUnaryOp.h │ │ ├── CwiseUnaryView.h │ │ ├── DenseBase.h │ │ ├── DenseCoeffsBase.h │ │ ├── DenseStorage.h │ │ ├── Diagonal.h │ │ ├── DiagonalMatrix.h │ │ ├── DiagonalProduct.h │ │ ├── Dot.h │ │ ├── EigenBase.h │ │ ├── Flagged.h │ │ ├── ForceAlignedAccess.h │ │ ├── Functors.h │ │ ├── Fuzzy.h │ │ ├── GenericPacketMath.h │ │ ├── GlobalFunctions.h │ │ ├── IO.h │ │ ├── Map.h │ │ ├── MapBase.h │ │ ├── MathFunctions.h │ │ ├── Matrix.h │ │ ├── MatrixBase.h │ │ ├── NestByValue.h │ │ ├── NoAlias.h │ │ ├── NumTraits.h │ │ ├── PermutationMatrix.h │ │ ├── PlainObjectBase.h │ │ ├── Product.h │ │ ├── ProductBase.h │ │ ├── Random.h │ │ ├── Redux.h │ │ ├── Replicate.h │ │ ├── ReturnByValue.h │ │ ├── Reverse.h │ │ ├── Select.h │ │ ├── SelfAdjointView.h │ │ ├── SelfCwiseBinaryOp.h │ │ ├── SolveTriangular.h │ │ ├── StableNorm.h │ │ ├── Stride.h │ │ ├── Swap.h │ │ ├── Transpose.h │ │ ├── Transpositions.h │ │ ├── TriangularMatrix.h │ │ ├── VectorBlock.h │ │ ├── VectorwiseOp.h │ │ ├── Visitor.h │ │ ├── arch │ │ │ ├── AltiVec │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Complex.h │ │ │ │ └── PacketMath.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Default │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── Settings.h │ │ │ ├── NEON │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Complex.h │ │ │ │ └── PacketMath.h │ │ │ └── SSE │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ └── PacketMath.h │ │ ├── products │ │ │ ├── CMakeLists.txt │ │ │ ├── CoeffBasedProduct.h │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ ├── GeneralMatrixMatrix.h │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ ├── GeneralMatrixVector.h │ │ │ ├── Parallelizer.h │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ ├── SelfadjointMatrixVector.h │ │ │ ├── SelfadjointProduct.h │ │ │ ├── SelfadjointRank2Update.h │ │ │ ├── TriangularMatrixMatrix.h │ │ │ ├── TriangularMatrixVector.h │ │ │ ├── TriangularSolverMatrix.h │ │ │ └── TriangularSolverVector.h │ │ └── util │ │ │ ├── BlasUtil.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Constants.h │ │ │ ├── DisableStupidWarnings.h │ │ │ ├── ForwardDeclarations.h │ │ │ ├── Macros.h │ │ │ ├── Memory.h │ │ │ ├── Meta.h │ │ │ ├── ReenableStupidWarnings.h │ │ │ ├── StaticAssert.h │ │ │ └── XprHelper.h │ │ ├── Eigen2Support │ │ ├── Block.h │ │ ├── CMakeLists.txt │ │ ├── Cwise.h │ │ ├── CwiseOperators.h │ │ ├── Geometry │ │ │ ├── AlignedBox.h │ │ │ ├── All.h │ │ │ ├── AngleAxis.h │ │ │ ├── CMakeLists.txt │ │ │ ├── Hyperplane.h │ │ │ ├── ParametrizedLine.h │ │ │ ├── Quaternion.h │ │ │ ├── Rotation2D.h │ │ │ ├── RotationBase.h │ │ │ ├── Scaling.h │ │ │ ├── Transform.h │ │ │ └── Translation.h │ │ ├── LU.h │ │ ├── Lazy.h │ │ ├── LeastSquares.h │ │ ├── Macros.h │ │ ├── MathFunctions.h │ │ ├── Memory.h │ │ ├── Meta.h │ │ ├── Minor.h │ │ ├── QR.h │ │ ├── SVD.h │ │ ├── TriangularSolver.h │ │ └── VectorBlock.h │ │ ├── Eigenvalues │ │ ├── CMakeLists.txt │ │ ├── ComplexEigenSolver.h │ │ ├── ComplexSchur.h │ │ ├── EigenSolver.h │ │ ├── EigenvaluesCommon.h │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ ├── HessenbergDecomposition.h │ │ ├── MatrixBaseEigenvalues.h │ │ ├── RealSchur.h │ │ ├── SelfAdjointEigenSolver.h │ │ └── Tridiagonalization.h │ │ ├── Geometry │ │ ├── AlignedBox.h │ │ ├── AngleAxis.h │ │ ├── CMakeLists.txt │ │ ├── EulerAngles.h │ │ ├── Homogeneous.h │ │ ├── Hyperplane.h │ │ ├── OrthoMethods.h │ │ ├── ParametrizedLine.h │ │ ├── Quaternion.h │ │ ├── Rotation2D.h │ │ ├── RotationBase.h │ │ ├── Scaling.h │ │ ├── Transform.h │ │ ├── Translation.h │ │ ├── Umeyama.h │ │ └── arch │ │ │ ├── CMakeLists.txt │ │ │ └── Geometry_SSE.h │ │ ├── Householder │ │ ├── BlockHouseholder.h │ │ ├── CMakeLists.txt │ │ ├── Householder.h │ │ └── HouseholderSequence.h │ │ ├── Jacobi │ │ ├── CMakeLists.txt │ │ └── Jacobi.h │ │ ├── LU │ │ ├── CMakeLists.txt │ │ ├── Determinant.h │ │ ├── FullPivLU.h │ │ ├── Inverse.h │ │ ├── PartialPivLU.h │ │ └── arch │ │ │ ├── CMakeLists.txt │ │ │ └── Inverse_SSE.h │ │ ├── QR │ │ ├── CMakeLists.txt │ │ ├── ColPivHouseholderQR.h │ │ ├── FullPivHouseholderQR.h │ │ └── HouseholderQR.h │ │ ├── SVD │ │ ├── CMakeLists.txt │ │ ├── JacobiSVD.h │ │ └── UpperBidiagonalization.h │ │ ├── Sparse │ │ ├── AmbiVector.h │ │ ├── CMakeLists.txt │ │ ├── CompressedStorage.h │ │ ├── CoreIterators.h │ │ ├── DynamicSparseMatrix.h │ │ ├── MappedSparseMatrix.h │ │ ├── SparseAssign.h │ │ ├── SparseBlock.h │ │ ├── SparseCwiseBinaryOp.h │ │ ├── SparseCwiseUnaryOp.h │ │ ├── SparseDenseProduct.h │ │ ├── SparseDiagonalProduct.h │ │ ├── SparseDot.h │ │ ├── SparseFuzzy.h │ │ ├── SparseMatrix.h │ │ ├── SparseMatrixBase.h │ │ ├── SparseProduct.h │ │ ├── SparseRedux.h │ │ ├── SparseSelfAdjointView.h │ │ ├── SparseSparseProduct.h │ │ ├── SparseTranspose.h │ │ ├── SparseTriangularView.h │ │ ├── SparseUtil.h │ │ ├── SparseVector.h │ │ ├── SparseView.h │ │ └── TriangularSolver.h │ │ ├── StlSupport │ │ ├── CMakeLists.txt │ │ ├── StdDeque.h │ │ ├── StdList.h │ │ ├── StdVector.h │ │ └── details.h │ │ ├── misc │ │ ├── CMakeLists.txt │ │ ├── Image.h │ │ ├── Kernel.h │ │ └── Solve.h │ │ └── plugins │ │ ├── ArrayCwiseBinaryOps.h │ │ ├── ArrayCwiseUnaryOps.h │ │ ├── BlockMethods.h │ │ ├── CMakeLists.txt │ │ ├── CommonCwiseBinaryOps.h │ │ ├── CommonCwiseUnaryOps.h │ │ ├── MatrixCwiseBinaryOps.h │ │ └── MatrixCwiseUnaryOps.h ├── _gsl_remove │ ├── blas │ │ ├── ChangeLog │ │ ├── TODO │ │ ├── gsl_blas.h │ │ ├── gsl_blas_blas.c │ │ └── gsl_blas_types.h │ ├── block │ │ ├── ChangeLog │ │ ├── gsl_block.h │ │ ├── gsl_block_block.c │ │ ├── gsl_block_block_source.c │ │ ├── gsl_block_char.h │ │ ├── gsl_block_complex_double.h │ │ ├── gsl_block_complex_float.h │ │ ├── gsl_block_complex_long_double.h │ │ ├── gsl_block_double.h │ │ ├── gsl_block_file.c │ │ ├── gsl_block_float.h │ │ ├── gsl_block_fprintf_source.c │ │ ├── gsl_block_fwrite_source.c │ │ ├── gsl_block_init.c │ │ ├── gsl_block_init_source.c │ │ ├── gsl_block_int.h │ │ ├── gsl_block_long.h │ │ ├── gsl_block_long_double.h │ │ ├── gsl_block_short.h │ │ ├── gsl_block_test.c │ │ ├── gsl_block_test_complex_io.c │ │ ├── gsl_block_test_complex_source.c │ │ ├── gsl_block_test_io.c │ │ ├── gsl_block_test_source.c │ │ ├── gsl_block_uchar.h │ │ ├── gsl_block_uint.h │ │ ├── gsl_block_ulong.h │ │ ├── gsl_block_ushort.h │ │ └── gsl_check_range.h │ ├── build.h │ ├── cblas │ │ ├── ChangeLog │ │ ├── TODO │ │ ├── cblas.h │ │ ├── error_cblas.h │ │ ├── error_cblas_l2.h │ │ ├── error_cblas_l3.h │ │ ├── gsl_cblas.h │ │ ├── gsl_cblas_caxpy.c │ │ ├── gsl_cblas_ccopy.c │ │ ├── gsl_cblas_cdotc_sub.c │ │ ├── gsl_cblas_cdotu_sub.c │ │ ├── gsl_cblas_cgbmv.c │ │ ├── gsl_cblas_cgemm.c │ │ ├── gsl_cblas_cgemv.c │ │ ├── gsl_cblas_cgerc.c │ │ ├── gsl_cblas_cgeru.c │ │ ├── gsl_cblas_chbmv.c │ │ ├── gsl_cblas_chemm.c │ │ ├── gsl_cblas_chemv.c │ │ ├── gsl_cblas_cher.c │ │ ├── gsl_cblas_cher2.c │ │ ├── gsl_cblas_cher2k.c │ │ ├── gsl_cblas_cherk.c │ │ ├── gsl_cblas_chpmv.c │ │ ├── gsl_cblas_chpr.c │ │ ├── gsl_cblas_chpr2.c │ │ ├── gsl_cblas_cscal.c │ │ ├── gsl_cblas_csscal.c │ │ ├── gsl_cblas_cswap.c │ │ ├── gsl_cblas_csymm.c │ │ ├── gsl_cblas_csyr2k.c │ │ ├── gsl_cblas_csyrk.c │ │ ├── gsl_cblas_ctbmv.c │ │ ├── gsl_cblas_ctbsv.c │ │ ├── gsl_cblas_ctpmv.c │ │ ├── gsl_cblas_ctpsv.c │ │ ├── gsl_cblas_ctrmm.c │ │ ├── gsl_cblas_ctrmv.c │ │ ├── gsl_cblas_ctrsm.c │ │ ├── gsl_cblas_ctrsv.c │ │ ├── gsl_cblas_dasum.c │ │ ├── gsl_cblas_daxpy.c │ │ ├── gsl_cblas_dcopy.c │ │ ├── gsl_cblas_ddot.c │ │ ├── gsl_cblas_dgbmv.c │ │ ├── gsl_cblas_dgemm.c │ │ ├── gsl_cblas_dgemv.c │ │ ├── gsl_cblas_dger.c │ │ ├── gsl_cblas_dnrm2.c │ │ ├── gsl_cblas_drot.c │ │ ├── gsl_cblas_drotg.c │ │ ├── gsl_cblas_drotm.c │ │ ├── gsl_cblas_drotmg.c │ │ ├── gsl_cblas_dsbmv.c │ │ ├── gsl_cblas_dscal.c │ │ ├── gsl_cblas_dsdot.c │ │ ├── gsl_cblas_dspmv.c │ │ ├── gsl_cblas_dspr.c │ │ ├── gsl_cblas_dspr2.c │ │ ├── gsl_cblas_dswap.c │ │ ├── gsl_cblas_dsymm.c │ │ ├── gsl_cblas_dsymv.c │ │ ├── gsl_cblas_dsyr.c │ │ ├── gsl_cblas_dsyr2.c │ │ ├── gsl_cblas_dsyr2k.c │ │ ├── gsl_cblas_dsyrk.c │ │ ├── gsl_cblas_dtbmv.c │ │ ├── gsl_cblas_dtbsv.c │ │ ├── gsl_cblas_dtpmv.c │ │ ├── gsl_cblas_dtpsv.c │ │ ├── gsl_cblas_dtrmm.c │ │ ├── gsl_cblas_dtrmv.c │ │ ├── gsl_cblas_dtrsm.c │ │ ├── gsl_cblas_dtrsv.c │ │ ├── gsl_cblas_dzasum.c │ │ ├── gsl_cblas_dznrm2.c │ │ ├── gsl_cblas_hypot.c │ │ ├── gsl_cblas_icamax.c │ │ ├── gsl_cblas_idamax.c │ │ ├── gsl_cblas_isamax.c │ │ ├── gsl_cblas_izamax.c │ │ ├── gsl_cblas_sasum.c │ │ ├── gsl_cblas_saxpy.c │ │ ├── gsl_cblas_scasum.c │ │ ├── gsl_cblas_scnrm2.c │ │ ├── gsl_cblas_scopy.c │ │ ├── gsl_cblas_sdot.c │ │ ├── gsl_cblas_sdsdot.c │ │ ├── gsl_cblas_sgbmv.c │ │ ├── gsl_cblas_sgemm.c │ │ ├── gsl_cblas_sgemv.c │ │ ├── gsl_cblas_sger.c │ │ ├── gsl_cblas_snrm2.c │ │ ├── gsl_cblas_srot.c │ │ ├── gsl_cblas_srotg.c │ │ ├── gsl_cblas_srotm.c │ │ ├── gsl_cblas_srotmg.c │ │ ├── gsl_cblas_ssbmv.c │ │ ├── gsl_cblas_sscal.c │ │ ├── gsl_cblas_sspmv.c │ │ ├── gsl_cblas_sspr.c │ │ ├── gsl_cblas_sspr2.c │ │ ├── gsl_cblas_sswap.c │ │ ├── gsl_cblas_ssymm.c │ │ ├── gsl_cblas_ssymv.c │ │ ├── gsl_cblas_ssyr.c │ │ ├── gsl_cblas_ssyr2.c │ │ ├── gsl_cblas_ssyr2k.c │ │ ├── gsl_cblas_ssyrk.c │ │ ├── gsl_cblas_stbmv.c │ │ ├── gsl_cblas_stbsv.c │ │ ├── gsl_cblas_stpmv.c │ │ ├── gsl_cblas_stpsv.c │ │ ├── gsl_cblas_strmm.c │ │ ├── gsl_cblas_strmv.c │ │ ├── gsl_cblas_strsm.c │ │ ├── gsl_cblas_strsv.c │ │ ├── gsl_cblas_test.c │ │ ├── gsl_cblas_test_amax.c │ │ ├── gsl_cblas_test_asum.c │ │ ├── gsl_cblas_test_axpy.c │ │ ├── gsl_cblas_test_copy.c │ │ ├── gsl_cblas_test_dot.c │ │ ├── gsl_cblas_test_gbmv.c │ │ ├── gsl_cblas_test_gemm.c │ │ ├── gsl_cblas_test_gemv.c │ │ ├── gsl_cblas_test_ger.c │ │ ├── gsl_cblas_test_hbmv.c │ │ ├── gsl_cblas_test_hemm.c │ │ ├── gsl_cblas_test_hemv.c │ │ ├── gsl_cblas_test_her.c │ │ ├── gsl_cblas_test_her2.c │ │ ├── gsl_cblas_test_her2k.c │ │ ├── gsl_cblas_test_herk.c │ │ ├── gsl_cblas_test_hpmv.c │ │ ├── gsl_cblas_test_hpr.c │ │ ├── gsl_cblas_test_hpr2.c │ │ ├── gsl_cblas_test_nrm2.c │ │ ├── gsl_cblas_test_rot.c │ │ ├── gsl_cblas_test_rotg.c │ │ ├── gsl_cblas_test_rotm.c │ │ ├── gsl_cblas_test_rotmg.c │ │ ├── gsl_cblas_test_sbmv.c │ │ ├── gsl_cblas_test_scal.c │ │ ├── gsl_cblas_test_spmv.c │ │ ├── gsl_cblas_test_spr.c │ │ ├── gsl_cblas_test_spr2.c │ │ ├── gsl_cblas_test_swap.c │ │ ├── gsl_cblas_test_symm.c │ │ ├── gsl_cblas_test_symv.c │ │ ├── gsl_cblas_test_syr.c │ │ ├── gsl_cblas_test_syr2.c │ │ ├── gsl_cblas_test_syr2k.c │ │ ├── gsl_cblas_test_syrk.c │ │ ├── gsl_cblas_test_tbmv.c │ │ ├── gsl_cblas_test_tbsv.c │ │ ├── gsl_cblas_test_tpmv.c │ │ ├── gsl_cblas_test_tpsv.c │ │ ├── gsl_cblas_test_trmm.c │ │ ├── gsl_cblas_test_trmv.c │ │ ├── gsl_cblas_test_trsm.c │ │ ├── gsl_cblas_test_trsv.c │ │ ├── gsl_cblas_tests.c │ │ ├── gsl_cblas_xerbla.c │ │ ├── gsl_cblas_zaxpy.c │ │ ├── gsl_cblas_zcopy.c │ │ ├── gsl_cblas_zdotc_sub.c │ │ ├── gsl_cblas_zdotu_sub.c │ │ ├── gsl_cblas_zdscal.c │ │ ├── gsl_cblas_zgbmv.c │ │ ├── gsl_cblas_zgemm.c │ │ ├── gsl_cblas_zgemv.c │ │ ├── gsl_cblas_zgerc.c │ │ ├── gsl_cblas_zgeru.c │ │ ├── gsl_cblas_zhbmv.c │ │ ├── gsl_cblas_zhemm.c │ │ ├── gsl_cblas_zhemv.c │ │ ├── gsl_cblas_zher.c │ │ ├── gsl_cblas_zher2.c │ │ ├── gsl_cblas_zher2k.c │ │ ├── gsl_cblas_zherk.c │ │ ├── gsl_cblas_zhpmv.c │ │ ├── gsl_cblas_zhpr.c │ │ ├── gsl_cblas_zhpr2.c │ │ ├── gsl_cblas_zscal.c │ │ ├── gsl_cblas_zswap.c │ │ ├── gsl_cblas_zsymm.c │ │ ├── gsl_cblas_zsyr2k.c │ │ ├── gsl_cblas_zsyrk.c │ │ ├── gsl_cblas_ztbmv.c │ │ ├── gsl_cblas_ztbsv.c │ │ ├── gsl_cblas_ztpmv.c │ │ ├── gsl_cblas_ztpsv.c │ │ ├── gsl_cblas_ztrmm.c │ │ ├── gsl_cblas_ztrmv.c │ │ ├── gsl_cblas_ztrsm.c │ │ ├── gsl_cblas_ztrsv.c │ │ ├── source_asum_c.h │ │ ├── source_asum_r.h │ │ ├── source_axpy_c.h │ │ ├── source_axpy_r.h │ │ ├── source_copy_c.h │ │ ├── source_copy_r.h │ │ ├── source_dot_c.h │ │ ├── source_dot_r.h │ │ ├── source_gbmv_c.h │ │ ├── source_gbmv_r.h │ │ ├── source_gemm_c.h │ │ ├── source_gemm_r.h │ │ ├── source_gemv_c.h │ │ ├── source_gemv_r.h │ │ ├── source_ger.h │ │ ├── source_gerc.h │ │ ├── source_geru.h │ │ ├── source_hbmv.h │ │ ├── source_hemm.h │ │ ├── source_hemv.h │ │ ├── source_her.h │ │ ├── source_her2.h │ │ ├── source_her2k.h │ │ ├── source_herk.h │ │ ├── source_hpmv.h │ │ ├── source_hpr.h │ │ ├── source_hpr2.h │ │ ├── source_iamax_c.h │ │ ├── source_iamax_r.h │ │ ├── source_nrm2_c.h │ │ ├── source_nrm2_r.h │ │ ├── source_rot.h │ │ ├── source_rotg.h │ │ ├── source_rotm.h │ │ ├── source_rotmg.h │ │ ├── source_sbmv.h │ │ ├── source_scal_c.h │ │ ├── source_scal_c_s.h │ │ ├── source_scal_r.h │ │ ├── source_spmv.h │ │ ├── source_spr.h │ │ ├── source_spr2.h │ │ ├── source_swap_c.h │ │ ├── source_swap_r.h │ │ ├── source_symm_c.h │ │ ├── source_symm_r.h │ │ ├── source_symv.h │ │ ├── source_syr.h │ │ ├── source_syr2.h │ │ ├── source_syr2k_c.h │ │ ├── source_syr2k_r.h │ │ ├── source_syrk_c.h │ │ ├── source_syrk_r.h │ │ ├── source_tbmv_c.h │ │ ├── source_tbmv_r.h │ │ ├── source_tbsv_c.h │ │ ├── source_tbsv_r.h │ │ ├── source_tpmv_c.h │ │ ├── source_tpmv_r.h │ │ ├── source_tpsv_c.h │ │ ├── source_tpsv_r.h │ │ ├── source_trmm_c.h │ │ ├── source_trmm_r.h │ │ ├── source_trmv_c.h │ │ ├── source_trmv_r.h │ │ ├── source_trsm_c.h │ │ ├── source_trsm_r.h │ │ ├── source_trsv_c.h │ │ ├── source_trsv_r.h │ │ └── tests.h │ ├── complex │ │ ├── ChangeLog │ │ ├── TODO │ │ ├── gsl_complex.h │ │ ├── gsl_complex_inline.c │ │ ├── gsl_complex_math.c │ │ ├── gsl_complex_math.h │ │ ├── gsl_complex_test.c │ │ ├── results.h │ │ ├── results1.h │ │ ├── results2.h │ │ ├── results_real.h │ │ └── results_zreal.h │ ├── config.h │ ├── err │ │ ├── ChangeLog │ │ ├── TODO │ │ ├── gsl_err_error.c │ │ ├── gsl_err_message.c │ │ ├── gsl_err_stream.c │ │ ├── gsl_err_strerror.c │ │ ├── gsl_err_test.c │ │ ├── gsl_errno.h │ │ └── gsl_message.h │ ├── gsl_errno.h │ ├── gsl_inline.h │ ├── gsl_machine.h │ ├── gsl_math.h │ ├── gsl_matrix.h │ ├── gsl_minmax.h │ ├── gsl_mode.h │ ├── gsl_nan.h │ ├── gsl_pow_int.h │ ├── gsl_precision.h │ ├── gsl_types.h │ ├── gsl_vector.h │ ├── ieee-utils │ │ ├── ChangeLog │ │ ├── TODO │ │ ├── gsl_ieee-utils_endian.c │ │ ├── gsl_ieee-utils_env.c │ │ ├── gsl_ieee-utils_fp-aix.c │ │ ├── gsl_ieee-utils_fp-darwin.c │ │ ├── gsl_ieee-utils_fp-darwin86.c │ │ ├── gsl_ieee-utils_fp-freebsd.c │ │ ├── gsl_ieee-utils_fp-gnuc99.c │ │ ├── gsl_ieee-utils_fp-gnum68k.c │ │ ├── gsl_ieee-utils_fp-gnuppc.c │ │ ├── gsl_ieee-utils_fp-gnusparc.c │ │ ├── gsl_ieee-utils_fp-gnux86.c │ │ ├── gsl_ieee-utils_fp-hpux.c │ │ ├── gsl_ieee-utils_fp-hpux11.c │ │ ├── gsl_ieee-utils_fp-irix.c │ │ ├── gsl_ieee-utils_fp-netbsd.c │ │ ├── gsl_ieee-utils_fp-openbsd.c │ │ ├── gsl_ieee-utils_fp-os2emx.c │ │ ├── gsl_ieee-utils_fp-solaris.c │ │ ├── gsl_ieee-utils_fp-sunos4.c │ │ ├── gsl_ieee-utils_fp-tru64.c │ │ ├── gsl_ieee-utils_fp-unknown.c │ │ ├── gsl_ieee-utils_fp.c │ │ ├── gsl_ieee-utils_make_rep.c │ │ ├── gsl_ieee-utils_print.c │ │ ├── gsl_ieee-utils_read.c │ │ ├── gsl_ieee-utils_standardize.c │ │ ├── gsl_ieee-utils_test.c │ │ └── gsl_ieee_utils.h │ ├── linalg │ │ ├── ChangeLog │ │ ├── TODO │ │ ├── gsl_linalg.h │ │ ├── gsl_linalg_apply_givens.c │ │ ├── gsl_linalg_balance.c │ │ ├── gsl_linalg_balancemat.c │ │ ├── gsl_linalg_bidiag.c │ │ ├── gsl_linalg_cholesky.c │ │ ├── gsl_linalg_choleskyc.c │ │ ├── gsl_linalg_exponential.c │ │ ├── gsl_linalg_givens.c │ │ ├── gsl_linalg_hermtd.c │ │ ├── gsl_linalg_hessenberg.c │ │ ├── gsl_linalg_hesstri.c │ │ ├── gsl_linalg_hh.c │ │ ├── gsl_linalg_householder.c │ │ ├── gsl_linalg_householdercomplex.c │ │ ├── gsl_linalg_lq.c │ │ ├── gsl_linalg_lu.c │ │ ├── gsl_linalg_luc.c │ │ ├── gsl_linalg_multiply.c │ │ ├── gsl_linalg_ptlq.c │ │ ├── gsl_linalg_qr.c │ │ ├── gsl_linalg_qrpt.c │ │ ├── gsl_linalg_svd.c │ │ ├── gsl_linalg_svdstep.c │ │ ├── gsl_linalg_symmtd.c │ │ ├── gsl_linalg_test.c │ │ ├── gsl_linalg_tridiag.c │ │ └── tridiag.h │ ├── matrix │ │ ├── ChangeLog │ │ ├── TODO │ │ ├── gsl_matrix.h │ │ ├── gsl_matrix_char.h │ │ ├── gsl_matrix_complex_double.h │ │ ├── gsl_matrix_complex_float.h │ │ ├── gsl_matrix_complex_long_double.h │ │ ├── gsl_matrix_copy.c │ │ ├── gsl_matrix_copy_source.c │ │ ├── gsl_matrix_double.h │ │ ├── gsl_matrix_file.c │ │ ├── gsl_matrix_file_source.c │ │ ├── gsl_matrix_float.h │ │ ├── gsl_matrix_getset.c │ │ ├── gsl_matrix_getset_source.c │ │ ├── gsl_matrix_init.c │ │ ├── gsl_matrix_init_source.c │ │ ├── gsl_matrix_int.h │ │ ├── gsl_matrix_long.h │ │ ├── gsl_matrix_long_double.h │ │ ├── gsl_matrix_matrix.c │ │ ├── gsl_matrix_minmax.c │ │ ├── gsl_matrix_minmax_source.c │ │ ├── gsl_matrix_oper.c │ │ ├── gsl_matrix_oper_complex_source.c │ │ ├── gsl_matrix_oper_source.c │ │ ├── gsl_matrix_prop.c │ │ ├── gsl_matrix_prop_source.c │ │ ├── gsl_matrix_rowcol.c │ │ ├── gsl_matrix_rowcol_source.c │ │ ├── gsl_matrix_short.h │ │ ├── gsl_matrix_submatrix.c │ │ ├── gsl_matrix_submatrix_source.c │ │ ├── gsl_matrix_swap.c │ │ ├── gsl_matrix_swap_source.c │ │ ├── gsl_matrix_test.c │ │ ├── gsl_matrix_test_complex_source.c │ │ ├── gsl_matrix_test_source.c │ │ ├── gsl_matrix_test_static.c │ │ ├── gsl_matrix_uchar.h │ │ ├── gsl_matrix_uint.h │ │ ├── gsl_matrix_ulong.h │ │ ├── gsl_matrix_ushort.h │ │ ├── gsl_matrix_view.c │ │ ├── gsl_matrix_view_source.c │ │ └── view.h │ ├── multifit │ │ ├── ChangeLog │ │ ├── TODO │ │ ├── gsl_multifit.h │ │ ├── gsl_multifit_convergence.c │ │ ├── gsl_multifit_covar.c │ │ ├── gsl_multifit_fdfsolver.c │ │ ├── gsl_multifit_fsolver.c │ │ ├── gsl_multifit_gradient.c │ │ ├── gsl_multifit_lmder.c │ │ ├── gsl_multifit_lmiterate.c │ │ ├── gsl_multifit_lmpar.c │ │ ├── gsl_multifit_lmset.c │ │ ├── gsl_multifit_lmutil.c │ │ ├── gsl_multifit_multilinear.c │ │ ├── gsl_multifit_nlin.h │ │ ├── gsl_multifit_qrsolv.c │ │ ├── gsl_multifit_test.c │ │ ├── gsl_multifit_test_brown.c │ │ ├── gsl_multifit_test_enso.c │ │ ├── gsl_multifit_test_estimator.c │ │ ├── gsl_multifit_test_filip.c │ │ ├── gsl_multifit_test_fn.c │ │ ├── gsl_multifit_test_hahn1.c │ │ ├── gsl_multifit_test_kirby2.c │ │ ├── gsl_multifit_test_longley.c │ │ ├── gsl_multifit_test_nelson.c │ │ ├── gsl_multifit_test_pontius.c │ │ └── gsl_multifit_work.c │ ├── permutation │ │ ├── ChangeLog │ │ ├── gsl_permutation.h │ │ ├── gsl_permutation_canonical.c │ │ ├── gsl_permutation_file.c │ │ ├── gsl_permutation_init.c │ │ ├── gsl_permutation_inline.c │ │ ├── gsl_permutation_permutation.c │ │ ├── gsl_permutation_permute.c │ │ ├── gsl_permutation_permute_source.c │ │ ├── gsl_permutation_test.c │ │ ├── gsl_permute.h │ │ ├── gsl_permute_char.h │ │ ├── gsl_permute_complex_double.h │ │ ├── gsl_permute_complex_float.h │ │ ├── gsl_permute_complex_long_double.h │ │ ├── gsl_permute_double.h │ │ ├── gsl_permute_float.h │ │ ├── gsl_permute_int.h │ │ ├── gsl_permute_long.h │ │ ├── gsl_permute_long_double.h │ │ ├── gsl_permute_short.h │ │ ├── gsl_permute_uchar.h │ │ ├── gsl_permute_uint.h │ │ ├── gsl_permute_ulong.h │ │ ├── gsl_permute_ushort.h │ │ ├── gsl_permute_vector.h │ │ ├── gsl_permute_vector_char.h │ │ ├── gsl_permute_vector_complex_double.h │ │ ├── gsl_permute_vector_complex_float.h │ │ ├── gsl_permute_vector_complex_long_double.h │ │ ├── gsl_permute_vector_double.h │ │ ├── gsl_permute_vector_float.h │ │ ├── gsl_permute_vector_int.h │ │ ├── gsl_permute_vector_long.h │ │ ├── gsl_permute_vector_long_double.h │ │ ├── gsl_permute_vector_short.h │ │ ├── gsl_permute_vector_uchar.h │ │ ├── gsl_permute_vector_uint.h │ │ ├── gsl_permute_vector_ulong.h │ │ └── gsl_permute_vector_ushort.h │ ├── sort │ │ ├── ChangeLog │ │ ├── TODO │ │ ├── gsl_heapsort.h │ │ ├── gsl_sort.h │ │ ├── gsl_sort_char.h │ │ ├── gsl_sort_double.h │ │ ├── gsl_sort_float.h │ │ ├── gsl_sort_int.h │ │ ├── gsl_sort_long.h │ │ ├── gsl_sort_long_double.h │ │ ├── gsl_sort_short.h │ │ ├── gsl_sort_sort.c │ │ ├── gsl_sort_sortind.c │ │ ├── gsl_sort_sortvec.c │ │ ├── gsl_sort_sortvec_source.c │ │ ├── gsl_sort_sortvecind.c │ │ ├── gsl_sort_sortvecind_source.c │ │ ├── gsl_sort_subset.c │ │ ├── gsl_sort_subset_source.c │ │ ├── gsl_sort_subsetind.c │ │ ├── gsl_sort_subsetind_source.c │ │ ├── gsl_sort_test.c │ │ ├── gsl_sort_test_heapsort.c │ │ ├── gsl_sort_test_source.c │ │ ├── gsl_sort_uchar.h │ │ ├── gsl_sort_uint.h │ │ ├── gsl_sort_ulong.h │ │ ├── gsl_sort_ushort.h │ │ ├── gsl_sort_vector.h │ │ ├── gsl_sort_vector_char.h │ │ ├── gsl_sort_vector_double.h │ │ ├── gsl_sort_vector_float.h │ │ ├── gsl_sort_vector_int.h │ │ ├── gsl_sort_vector_long.h │ │ ├── gsl_sort_vector_long_double.h │ │ ├── gsl_sort_vector_short.h │ │ ├── gsl_sort_vector_uchar.h │ │ ├── gsl_sort_vector_uint.h │ │ ├── gsl_sort_vector_ulong.h │ │ └── gsl_sort_vector_ushort.h │ ├── sys │ │ ├── ChangeLog │ │ ├── gsl_sys.h │ │ ├── gsl_sys_coerce.c │ │ ├── gsl_sys_expm1.c │ │ ├── gsl_sys_fcmp.c │ │ ├── gsl_sys_fdiv.c │ │ ├── gsl_sys_hypot.c │ │ ├── gsl_sys_infnan.c │ │ ├── gsl_sys_invhyp.c │ │ ├── gsl_sys_ldfrexp.c │ │ ├── gsl_sys_log1p.c │ │ ├── gsl_sys_minmax.c │ │ ├── gsl_sys_pow_int.c │ │ ├── gsl_sys_prec.c │ │ └── gsl_sys_test.c │ ├── templates_off.h │ ├── templates_on.h │ ├── test │ │ ├── ChangeLog │ │ ├── gsl_test.h │ │ └── gsl_test_results.c │ └── vector │ │ ├── ChangeLog │ │ ├── TODO │ │ ├── gsl_vector.h │ │ ├── gsl_vector_char.h │ │ ├── gsl_vector_complex.h │ │ ├── gsl_vector_complex_double.h │ │ ├── gsl_vector_complex_float.h │ │ ├── gsl_vector_complex_long_double.h │ │ ├── gsl_vector_copy.c │ │ ├── gsl_vector_copy_source.c │ │ ├── gsl_vector_double.h │ │ ├── gsl_vector_file.c │ │ ├── gsl_vector_file_source.c │ │ ├── gsl_vector_float.h │ │ ├── gsl_vector_init.c │ │ ├── gsl_vector_init_source.c │ │ ├── gsl_vector_int.h │ │ ├── gsl_vector_long.h │ │ ├── gsl_vector_long_double.h │ │ ├── gsl_vector_minmax.c │ │ ├── gsl_vector_minmax_source.c │ │ ├── gsl_vector_oper.c │ │ ├── gsl_vector_oper_complex_source.c │ │ ├── gsl_vector_oper_source.c │ │ ├── gsl_vector_prop.c │ │ ├── gsl_vector_prop_source.c │ │ ├── gsl_vector_reim.c │ │ ├── gsl_vector_reim_source.c │ │ ├── gsl_vector_short.h │ │ ├── gsl_vector_subvector.c │ │ ├── gsl_vector_subvector_source.c │ │ ├── gsl_vector_swap.c │ │ ├── gsl_vector_swap_source.c │ │ ├── gsl_vector_test.c │ │ ├── gsl_vector_test_complex_source.c │ │ ├── gsl_vector_test_source.c │ │ ├── gsl_vector_test_static.c │ │ ├── gsl_vector_uchar.h │ │ ├── gsl_vector_uint.h │ │ ├── gsl_vector_ulong.h │ │ ├── gsl_vector_ushort.h │ │ ├── gsl_vector_vector.c │ │ ├── gsl_vector_view.c │ │ ├── gsl_vector_view_source.c │ │ └── view.h ├── dlib │ ├── CMakeLists.txt │ ├── LICENSE.txt │ ├── README.txt │ ├── algs.h │ ├── all │ │ └── source.cpp │ ├── all_console.cpp │ ├── all_gui.cpp │ ├── any.h │ ├── any │ │ ├── any.h │ │ ├── any_abstract.h │ │ ├── any_decision_function.h │ │ ├── any_decision_function_abstract.h │ │ ├── any_function.h │ │ ├── any_function_abstract.h │ │ ├── any_function_impl.h │ │ ├── any_function_impl2.h │ │ ├── any_trainer.h │ │ └── any_trainer_abstract.h │ ├── array.h │ ├── array │ │ ├── array_kernel.h │ │ └── array_kernel_abstract.h │ ├── array2d.h │ ├── array2d │ │ ├── array2d_kernel.h │ │ ├── array2d_kernel_abstract.h │ │ └── serialize_pixel_overloads.h │ ├── assert.h │ ├── base64.h │ ├── base64 │ │ ├── base64_kernel_1.cpp │ │ ├── base64_kernel_1.h │ │ └── base64_kernel_abstract.h │ ├── bayes_utils.h │ ├── bayes_utils │ │ ├── bayes_utils.h │ │ └── bayes_utils_abstract.h │ ├── bigint.h │ ├── bigint │ │ ├── bigint_kernel_1.cpp │ │ ├── bigint_kernel_1.h │ │ ├── bigint_kernel_2.cpp │ │ ├── bigint_kernel_2.h │ │ ├── bigint_kernel_abstract.h │ │ └── bigint_kernel_c.h │ ├── binary_search_tree.h │ ├── binary_search_tree │ │ ├── binary_search_tree_kernel_1.h │ │ ├── binary_search_tree_kernel_2.h │ │ ├── binary_search_tree_kernel_abstract.h │ │ └── binary_search_tree_kernel_c.h │ ├── bit_stream.h │ ├── bit_stream │ │ ├── bit_stream_kernel_1.cpp │ │ ├── bit_stream_kernel_1.h │ │ ├── bit_stream_kernel_abstract.h │ │ ├── bit_stream_kernel_c.h │ │ ├── bit_stream_multi_1.h │ │ ├── bit_stream_multi_abstract.h │ │ └── bit_stream_multi_c.h │ ├── bound_function_pointer.h │ ├── bound_function_pointer │ │ ├── bound_function_pointer_kernel_1.h │ │ ├── bound_function_pointer_kernel_abstract.h │ │ └── bound_function_pointer_kernel_c.h │ ├── bridge.h │ ├── bridge │ │ ├── bridge.h │ │ └── bridge_abstract.h │ ├── byte_orderer.h │ ├── byte_orderer │ │ ├── byte_orderer_kernel_1.h │ │ └── byte_orderer_kernel_abstract.h │ ├── cassert │ ├── cmake_find_blas.txt │ ├── cmd_line_parser.h │ ├── cmd_line_parser │ │ ├── cmd_line_parser_check_1.h │ │ ├── cmd_line_parser_check_abstract.h │ │ ├── cmd_line_parser_check_c.h │ │ ├── cmd_line_parser_kernel_1.h │ │ ├── cmd_line_parser_kernel_abstract.h │ │ ├── cmd_line_parser_kernel_c.h │ │ ├── cmd_line_parser_print_1.h │ │ ├── cmd_line_parser_print_abstract.h │ │ ├── get_option.h │ │ └── get_option_abstract.h │ ├── compress_stream.h │ ├── compress_stream │ │ ├── compress_stream_kernel_1.h │ │ ├── compress_stream_kernel_2.h │ │ ├── compress_stream_kernel_3.h │ │ └── compress_stream_kernel_abstract.h │ ├── conditioning_class.h │ ├── conditioning_class │ │ ├── conditioning_class_kernel_1.h │ │ ├── conditioning_class_kernel_2.h │ │ ├── conditioning_class_kernel_3.h │ │ ├── conditioning_class_kernel_4.h │ │ ├── conditioning_class_kernel_abstract.h │ │ └── conditioning_class_kernel_c.h │ ├── config_reader.h │ ├── config_reader │ │ ├── config_reader_kernel_1.h │ │ ├── config_reader_kernel_abstract.h │ │ ├── config_reader_thread_safe_1.h │ │ └── config_reader_thread_safe_abstract.h │ ├── console_progress_indicator.h │ ├── cpp_pretty_printer.h │ ├── cpp_pretty_printer │ │ ├── cpp_pretty_printer_kernel_1.h │ │ ├── cpp_pretty_printer_kernel_2.h │ │ └── cpp_pretty_printer_kernel_abstract.h │ ├── cpp_tokenizer.h │ ├── cpp_tokenizer │ │ ├── cpp_tokenizer_kernel_1.h │ │ ├── cpp_tokenizer_kernel_abstract.h │ │ └── cpp_tokenizer_kernel_c.h │ ├── crc32.h │ ├── crc32 │ │ ├── crc32_kernel_1.h │ │ └── crc32_kernel_abstract.h │ ├── cstring │ ├── data_io.h │ ├── data_io │ │ ├── image_dataset_metadata.cpp │ │ ├── image_dataset_metadata.h │ │ ├── libsvm_io.h │ │ ├── libsvm_io_abstract.h │ │ ├── load_image_dataset.h │ │ └── load_image_dataset_abstract.h │ ├── dir_nav.h │ ├── dir_nav │ │ ├── dir_nav_extensions.cpp │ │ ├── dir_nav_extensions.h │ │ ├── dir_nav_extensions_abstract.h │ │ ├── dir_nav_kernel_1.cpp │ │ ├── dir_nav_kernel_1.h │ │ ├── dir_nav_kernel_2.cpp │ │ ├── dir_nav_kernel_2.h │ │ ├── dir_nav_kernel_abstract.h │ │ ├── posix.h │ │ └── windows.h │ ├── directed_graph.h │ ├── directed_graph │ │ ├── directed_graph_kernel_1.h │ │ └── directed_graph_kernel_abstract.h │ ├── disjoint_subsets.h │ ├── disjoint_subsets │ │ ├── disjoint_subsets.h │ │ └── disjoint_subsets_abstract.h │ ├── dlib_include_path_tutorial.txt │ ├── enable_if.h │ ├── entropy_decoder.h │ ├── entropy_decoder │ │ ├── entropy_decoder_kernel_1.cpp │ │ ├── entropy_decoder_kernel_1.h │ │ ├── entropy_decoder_kernel_2.cpp │ │ ├── entropy_decoder_kernel_2.h │ │ ├── entropy_decoder_kernel_abstract.h │ │ └── entropy_decoder_kernel_c.h │ ├── entropy_decoder_model.h │ ├── entropy_decoder_model │ │ ├── entropy_decoder_model_kernel_1.h │ │ ├── entropy_decoder_model_kernel_2.h │ │ ├── entropy_decoder_model_kernel_3.h │ │ ├── entropy_decoder_model_kernel_4.h │ │ ├── entropy_decoder_model_kernel_5.h │ │ ├── entropy_decoder_model_kernel_6.h │ │ └── entropy_decoder_model_kernel_abstract.h │ ├── entropy_encoder.h │ ├── entropy_encoder │ │ ├── entropy_encoder_kernel_1.cpp │ │ ├── entropy_encoder_kernel_1.h │ │ ├── entropy_encoder_kernel_2.cpp │ │ ├── entropy_encoder_kernel_2.h │ │ ├── entropy_encoder_kernel_abstract.h │ │ └── entropy_encoder_kernel_c.h │ ├── entropy_encoder_model.h │ ├── entropy_encoder_model │ │ ├── entropy_encoder_model_kernel_1.h │ │ ├── entropy_encoder_model_kernel_2.h │ │ ├── entropy_encoder_model_kernel_3.h │ │ ├── entropy_encoder_model_kernel_4.h │ │ ├── entropy_encoder_model_kernel_5.h │ │ ├── entropy_encoder_model_kernel_6.h │ │ ├── entropy_encoder_model_kernel_abstract.h │ │ └── entropy_encoder_model_kernel_c.h │ ├── error.h │ ├── filtering.h │ ├── filtering │ │ ├── kalman_filter.h │ │ ├── kalman_filter_abstract.h │ │ ├── rls_filter.h │ │ └── rls_filter_abstract.h │ ├── fstream │ ├── general_hash │ │ ├── general_hash.h │ │ ├── hash.h │ │ ├── hash_abstract.h │ │ ├── murmur_hash3.h │ │ └── murmur_hash3_abstract.h │ ├── geometry.h │ ├── geometry │ │ ├── border_enumerator.h │ │ ├── border_enumerator_abstract.h │ │ ├── rectangle.h │ │ ├── rectangle_abstract.h │ │ ├── vector.h │ │ └── vector_abstract.h │ ├── graph.h │ ├── graph │ │ ├── graph_kernel_1.h │ │ └── graph_kernel_abstract.h │ ├── graph_cuts.h │ ├── graph_cuts │ │ ├── find_max_factor_graph_potts.h │ │ ├── find_max_factor_graph_potts_abstract.h │ │ ├── general_flow_graph.h │ │ ├── general_potts_problem.h │ │ ├── graph_labeler.h │ │ ├── graph_labeler_abstract.h │ │ ├── min_cut.h │ │ └── min_cut_abstract.h │ ├── graph_utils.h │ ├── graph_utils │ │ ├── graph_utils.h │ │ └── graph_utils_abstract.h │ ├── gui_core.h │ ├── gui_core │ │ ├── gui_core_kernel_1.cpp │ │ ├── gui_core_kernel_1.h │ │ ├── gui_core_kernel_2.cpp │ │ ├── gui_core_kernel_2.h │ │ ├── gui_core_kernel_abstract.h │ │ ├── windows.h │ │ └── xlib.h │ ├── gui_widgets.h │ ├── gui_widgets │ │ ├── base_widgets.cpp │ │ ├── base_widgets.h │ │ ├── base_widgets_abstract.h │ │ ├── canvas_drawing.cpp │ │ ├── canvas_drawing.h │ │ ├── canvas_drawing_abstract.h │ │ ├── drawable.cpp │ │ ├── drawable.h │ │ ├── drawable_abstract.h │ │ ├── fonts.cpp │ │ ├── fonts.h │ │ ├── fonts_abstract.h │ │ ├── nativefont.h │ │ ├── style.cpp │ │ ├── style.h │ │ ├── style_abstract.h │ │ ├── widgets.cpp │ │ ├── widgets.h │ │ └── widgets_abstract.h │ ├── hash.h │ ├── hash_map.h │ ├── hash_map │ │ ├── hash_map_kernel_1.h │ │ ├── hash_map_kernel_abstract.h │ │ └── hash_map_kernel_c.h │ ├── hash_set.h │ ├── hash_set │ │ ├── hash_set_kernel_1.h │ │ ├── hash_set_kernel_abstract.h │ │ └── hash_set_kernel_c.h │ ├── hash_table.h │ ├── hash_table │ │ ├── hash_table_kernel_1.h │ │ ├── hash_table_kernel_2.h │ │ ├── hash_table_kernel_abstract.h │ │ └── hash_table_kernel_c.h │ ├── http_client │ │ ├── http_client.cpp │ │ ├── http_client.h │ │ └── http_client_abstract.h │ ├── image_io.h │ ├── image_keypoint.h │ ├── image_keypoint │ │ ├── build_separable_poly_filters.h │ │ ├── fine_hog_image.h │ │ ├── fine_hog_image_abstract.h │ │ ├── hashed_feature_image.h │ │ ├── hashed_feature_image_abstract.h │ │ ├── hessian_pyramid.h │ │ ├── hessian_pyramid_abstract.h │ │ ├── hog.h │ │ ├── hog_abstract.h │ │ ├── nearest_neighbor_feature_image.h │ │ ├── nearest_neighbor_feature_image_abstract.h │ │ ├── poly_image.h │ │ ├── poly_image_abstract.h │ │ ├── surf.h │ │ └── surf_abstract.h │ ├── image_loader │ │ ├── image_loader.h │ │ ├── image_loader_abstract.h │ │ ├── jpeg_loader.cpp │ │ ├── jpeg_loader.h │ │ ├── jpeg_loader_abstract.h │ │ ├── load_image.h │ │ ├── load_image_abstract.h │ │ ├── png_loader.cpp │ │ ├── png_loader.h │ │ └── png_loader_abstract.h │ ├── image_processing.h │ ├── image_processing │ │ ├── box_overlap_testing.h │ │ ├── box_overlap_testing_abstract.h │ │ ├── detection_template_tools.h │ │ ├── detection_template_tools_abstract.h │ │ ├── full_object_detection.h │ │ ├── full_object_detection_abstract.h │ │ ├── object_detector.h │ │ ├── object_detector_abstract.h │ │ ├── scan_image.h │ │ ├── scan_image_abstract.h │ │ ├── scan_image_pyramid.h │ │ ├── scan_image_pyramid_abstract.h │ │ ├── scan_image_pyramid_tools.h │ │ └── scan_image_pyramid_tools_abstract.h │ ├── image_saver │ │ ├── dng_shared.h │ │ ├── image_saver.h │ │ ├── image_saver_abstract.h │ │ ├── save_png.cpp │ │ ├── save_png.h │ │ └── save_png_abstract.h │ ├── image_transforms.h │ ├── image_transforms │ │ ├── assign_image.h │ │ ├── assign_image_abstract.h │ │ ├── colormaps.h │ │ ├── colormaps_abstract.h │ │ ├── draw.h │ │ ├── draw_abstract.h │ │ ├── edge_detector.h │ │ ├── edge_detector_abstract.h │ │ ├── equalize_histogram.h │ │ ├── equalize_histogram_abstract.h │ │ ├── image_pyramid.h │ │ ├── image_pyramid_abstract.h │ │ ├── integral_image.h │ │ ├── integral_image_abstract.h │ │ ├── interpolation.h │ │ ├── interpolation_abstract.h │ │ ├── label_connected_blobs.h │ │ ├── label_connected_blobs_abstract.h │ │ ├── morphological_operations.h │ │ ├── morphological_operations_abstract.h │ │ ├── segment_image.h │ │ ├── segment_image_abstract.h │ │ ├── spatial_filtering.h │ │ ├── spatial_filtering_abstract.h │ │ ├── thresholding.h │ │ └── thresholding_abstract.h │ ├── interfaces │ │ ├── cmd_line_parser_option.h │ │ ├── enumerable.h │ │ ├── map_pair.h │ │ └── remover.h │ ├── iomanip │ ├── iosfwd │ ├── iostream │ ├── is_kind.h │ ├── istream │ ├── linker.h │ ├── linker │ │ ├── linker_kernel_1.cpp │ │ ├── linker_kernel_1.h │ │ ├── linker_kernel_abstract.h │ │ └── linker_kernel_c.h │ ├── locale │ ├── logger.h │ ├── logger │ │ ├── extra_logger_headers.cpp │ │ ├── extra_logger_headers.h │ │ ├── logger_config_file.cpp │ │ ├── logger_config_file.h │ │ ├── logger_kernel_1.cpp │ │ ├── logger_kernel_1.h │ │ └── logger_kernel_abstract.h │ ├── lsh.h │ ├── lsh │ │ ├── create_random_projection_hash.h │ │ ├── create_random_projection_hash_abstract.h │ │ ├── projection_hash.h │ │ └── projection_hash_abstract.h │ ├── lz77_buffer.h │ ├── lz77_buffer │ │ ├── lz77_buffer_kernel_1.h │ │ ├── lz77_buffer_kernel_2.h │ │ ├── lz77_buffer_kernel_abstract.h │ │ └── lz77_buffer_kernel_c.h │ ├── lzp_buffer.h │ ├── lzp_buffer │ │ ├── lzp_buffer_kernel_1.h │ │ ├── lzp_buffer_kernel_2.h │ │ ├── lzp_buffer_kernel_abstract.h │ │ └── lzp_buffer_kernel_c.h │ ├── manifold_regularization.h │ ├── manifold_regularization │ │ ├── function_objects.h │ │ ├── function_objects_abstract.h │ │ ├── graph_creation.h │ │ ├── graph_creation_abstract.h │ │ ├── linear_manifold_regularizer.h │ │ ├── linear_manifold_regularizer_abstract.h │ │ ├── sample_pair.h │ │ └── sample_pair_abstract.h │ ├── map.h │ ├── map │ │ ├── map_kernel_1.h │ │ ├── map_kernel_abstract.h │ │ └── map_kernel_c.h │ ├── matrix.h │ ├── matrix │ │ ├── cblas_constants.h │ │ ├── lapack │ │ │ ├── fortran_id.h │ │ │ ├── gees.h │ │ │ ├── geev.h │ │ │ ├── geqrf.h │ │ │ ├── gesdd.h │ │ │ ├── gesvd.h │ │ │ ├── getrf.h │ │ │ ├── ormqr.h │ │ │ ├── potrf.h │ │ │ ├── syev.h │ │ │ └── syevr.h │ │ ├── matrix.h │ │ ├── matrix_abstract.h │ │ ├── matrix_assign.h │ │ ├── matrix_assign_fwd.h │ │ ├── matrix_blas_bindings.h │ │ ├── matrix_cholesky.h │ │ ├── matrix_conj_trans.h │ │ ├── matrix_conv.h │ │ ├── matrix_conv_abstract.h │ │ ├── matrix_data_layout.h │ │ ├── matrix_data_layout_abstract.h │ │ ├── matrix_default_mul.h │ │ ├── matrix_eigenvalue.h │ │ ├── matrix_exp.h │ │ ├── matrix_exp_abstract.h │ │ ├── matrix_expressions.h │ │ ├── matrix_fwd.h │ │ ├── matrix_la.h │ │ ├── matrix_la_abstract.h │ │ ├── matrix_lu.h │ │ ├── matrix_math_functions.h │ │ ├── matrix_math_functions_abstract.h │ │ ├── matrix_op.h │ │ ├── matrix_qr.h │ │ ├── matrix_subexp.h │ │ ├── matrix_subexp_abstract.h │ │ ├── matrix_trsm.h │ │ ├── matrix_utilities.h │ │ ├── matrix_utilities_abstract.h │ │ ├── symmetric_matrix_cache.h │ │ └── symmetric_matrix_cache_abstract.h │ ├── md5.h │ ├── md5 │ │ ├── md5_kernel_1.cpp │ │ ├── md5_kernel_1.h │ │ └── md5_kernel_abstract.h │ ├── member_function_pointer.h │ ├── member_function_pointer │ │ ├── make_mfp.h │ │ ├── make_mfp_abstract.h │ │ ├── member_function_pointer_kernel_1.h │ │ ├── member_function_pointer_kernel_abstract.h │ │ └── member_function_pointer_kernel_c.h │ ├── memory_manager.h │ ├── memory_manager │ │ ├── memory_manager_kernel_1.h │ │ ├── memory_manager_kernel_2.h │ │ ├── memory_manager_kernel_3.h │ │ └── memory_manager_kernel_abstract.h │ ├── memory_manager_global.h │ ├── memory_manager_global │ │ ├── memory_manager_global_kernel_1.h │ │ └── memory_manager_global_kernel_abstract.h │ ├── memory_manager_stateless.h │ ├── memory_manager_stateless │ │ ├── memory_manager_stateless_kernel_1.h │ │ ├── memory_manager_stateless_kernel_2.h │ │ └── memory_manager_stateless_kernel_abstract.h │ ├── misc_api.h │ ├── misc_api │ │ ├── misc_api_kernel_1.cpp │ │ ├── misc_api_kernel_1.h │ │ ├── misc_api_kernel_2.cpp │ │ ├── misc_api_kernel_2.h │ │ ├── misc_api_kernel_abstract.h │ │ ├── posix.h │ │ └── windows.h │ ├── mlp.h │ ├── mlp │ │ ├── mlp_kernel_1.h │ │ ├── mlp_kernel_abstract.h │ │ └── mlp_kernel_c.h │ ├── noncopyable.h │ ├── opencv.h │ ├── opencv │ │ ├── cv_image.h │ │ ├── cv_image_abstract.h │ │ ├── to_open_cv.h │ │ └── to_open_cv_abstract.h │ ├── optimization.h │ ├── optimization │ │ ├── find_max_factor_graph_nmplp.h │ │ ├── find_max_factor_graph_nmplp_abstract.h │ │ ├── find_max_factor_graph_viterbi.h │ │ ├── find_max_factor_graph_viterbi_abstract.h │ │ ├── max_cost_assignment.h │ │ ├── max_cost_assignment_abstract.h │ │ ├── max_sum_submatrix.h │ │ ├── max_sum_submatrix_abstract.h │ │ ├── optimization.h │ │ ├── optimization_abstract.h │ │ ├── optimization_bobyqa.h │ │ ├── optimization_bobyqa_abstract.h │ │ ├── optimization_least_squares.h │ │ ├── optimization_least_squares_abstract.h │ │ ├── optimization_line_search.h │ │ ├── optimization_line_search_abstract.h │ │ ├── optimization_oca.h │ │ ├── optimization_oca_abstract.h │ │ ├── optimization_search_strategies.h │ │ ├── optimization_search_strategies_abstract.h │ │ ├── optimization_solve_qp2_using_smo.h │ │ ├── optimization_solve_qp2_using_smo_abstract.h │ │ ├── optimization_solve_qp3_using_smo.h │ │ ├── optimization_solve_qp3_using_smo_abstract.h │ │ ├── optimization_solve_qp_using_smo.h │ │ ├── optimization_solve_qp_using_smo_abstract.h │ │ ├── optimization_stop_strategies.h │ │ ├── optimization_stop_strategies_abstract.h │ │ ├── optimization_trust_region.h │ │ └── optimization_trust_region_abstract.h │ ├── ostream │ ├── pipe.h │ ├── pipe │ │ ├── pipe_kernel_1.h │ │ └── pipe_kernel_abstract.h │ ├── pixel.h │ ├── platform.h │ ├── quantum_computing.h │ ├── quantum_computing │ │ ├── quantum_computing.h │ │ └── quantum_computing_abstract.h │ ├── queue.h │ ├── queue │ │ ├── queue_kernel_1.h │ │ ├── queue_kernel_2.h │ │ ├── queue_kernel_abstract.h │ │ ├── queue_kernel_c.h │ │ ├── queue_sort_1.h │ │ └── queue_sort_abstract.h │ ├── rand.h │ ├── rand │ │ ├── mersenne_twister.h │ │ ├── rand_kernel_1.h │ │ └── rand_kernel_abstract.h │ ├── ref.h │ ├── reference_counter.h │ ├── reference_counter │ │ ├── reference_counter_kernel_1.h │ │ └── reference_counter_kernel_abstract.h │ ├── release_build_by_default │ ├── revision.h │ ├── sequence.h │ ├── sequence │ │ ├── sequence_compare_1.h │ │ ├── sequence_compare_abstract.h │ │ ├── sequence_kernel_1.h │ │ ├── sequence_kernel_2.h │ │ ├── sequence_kernel_abstract.h │ │ ├── sequence_kernel_c.h │ │ ├── sequence_sort_1.h │ │ ├── sequence_sort_2.h │ │ └── sequence_sort_abstract.h │ ├── serialize.h │ ├── server.h │ ├── server │ │ ├── server_http_1.h │ │ ├── server_http_abstract.h │ │ ├── server_iostream_1.h │ │ ├── server_iostream_abstract.h │ │ ├── server_kernel_1.h │ │ ├── server_kernel_abstract.h │ │ └── server_kernel_c.h │ ├── set.h │ ├── set │ │ ├── set_compare_1.h │ │ ├── set_compare_abstract.h │ │ ├── set_kernel_1.h │ │ ├── set_kernel_abstract.h │ │ └── set_kernel_c.h │ ├── set_utils.h │ ├── set_utils │ │ ├── set_utils.h │ │ └── set_utils_abstract.h │ ├── sliding_buffer.h │ ├── sliding_buffer │ │ ├── circular_buffer.h │ │ ├── circular_buffer_abstract.h │ │ ├── sliding_buffer_kernel_1.h │ │ ├── sliding_buffer_kernel_abstract.h │ │ └── sliding_buffer_kernel_c.h │ ├── smart_pointers.h │ ├── smart_pointers │ │ ├── scoped_ptr.h │ │ ├── scoped_ptr_abstract.h │ │ ├── shared_ptr.h │ │ ├── shared_ptr_abstract.h │ │ ├── shared_ptr_thread_safe.h │ │ ├── shared_ptr_thread_safe_abstract.h │ │ ├── weak_ptr.h │ │ └── weak_ptr_abstract.h │ ├── smart_pointers_thread_safe.h │ ├── sockets.h │ ├── sockets │ │ ├── posix.h │ │ ├── sockets_extensions.cpp │ │ ├── sockets_extensions.h │ │ ├── sockets_extensions_abstract.h │ │ ├── sockets_kernel_1.cpp │ │ ├── sockets_kernel_1.h │ │ ├── sockets_kernel_2.cpp │ │ ├── sockets_kernel_2.h │ │ ├── sockets_kernel_abstract.h │ │ └── windows.h │ ├── sockstreambuf.h │ ├── sockstreambuf │ │ ├── sockstreambuf_kernel_1.cpp │ │ ├── sockstreambuf_kernel_1.h │ │ ├── sockstreambuf_kernel_2.cpp │ │ ├── sockstreambuf_kernel_2.h │ │ └── sockstreambuf_kernel_abstract.h │ ├── sort.h │ ├── sparse_vector.h │ ├── sqlite.h │ ├── sqlite │ │ ├── sqlite.h │ │ ├── sqlite_abstract.h │ │ ├── sqlite_tools.h │ │ └── sqlite_tools_abstract.h │ ├── sstream │ ├── stack.h │ ├── stack │ │ ├── stack_kernel_1.h │ │ ├── stack_kernel_abstract.h │ │ └── stack_kernel_c.h │ ├── stack_trace.cpp │ ├── stack_trace.h │ ├── static_map.h │ ├── static_map │ │ ├── static_map_kernel_1.h │ │ ├── static_map_kernel_abstract.h │ │ └── static_map_kernel_c.h │ ├── static_set.h │ ├── static_set │ │ ├── static_set_compare_1.h │ │ ├── static_set_compare_abstract.h │ │ ├── static_set_kernel_1.h │ │ ├── static_set_kernel_abstract.h │ │ └── static_set_kernel_c.h │ ├── statistics.h │ ├── statistics │ │ ├── dpca.h │ │ ├── dpca_abstract.h │ │ ├── image_feature_sampling.h │ │ ├── image_feature_sampling_abstract.h │ │ ├── random_subset_selector.h │ │ ├── random_subset_selector_abstract.h │ │ ├── sammon.h │ │ ├── sammon_abstract.h │ │ ├── statistics.h │ │ └── statistics_abstract.h │ ├── std_allocator.h │ ├── stl_checked.h │ ├── stl_checked │ │ ├── std_vector_c.h │ │ └── std_vector_c_abstract.h │ ├── string.h │ ├── string │ │ ├── cassert │ │ ├── iomanip │ │ ├── iosfwd │ │ ├── iostream │ │ ├── locale │ │ ├── string.h │ │ └── string_abstract.h │ ├── svm.h │ ├── svm │ │ ├── assignment_function.h │ │ ├── assignment_function_abstract.h │ │ ├── cross_validate_assignment_trainer.h │ │ ├── cross_validate_assignment_trainer_abstract.h │ │ ├── cross_validate_graph_labeling_trainer.h │ │ ├── cross_validate_graph_labeling_trainer_abstract.h │ │ ├── cross_validate_multiclass_trainer.h │ │ ├── cross_validate_multiclass_trainer_abstract.h │ │ ├── cross_validate_object_detection_trainer.h │ │ ├── cross_validate_object_detection_trainer_abstract.h │ │ ├── cross_validate_regression_trainer.h │ │ ├── cross_validate_regression_trainer_abstract.h │ │ ├── cross_validate_sequence_labeler.h │ │ ├── cross_validate_sequence_labeler_abstract.h │ │ ├── empirical_kernel_map.h │ │ ├── empirical_kernel_map_abstract.h │ │ ├── feature_ranking.h │ │ ├── feature_ranking_abstract.h │ │ ├── function.h │ │ ├── function_abstract.h │ │ ├── kcentroid.h │ │ ├── kcentroid_abstract.h │ │ ├── kcentroid_overloads.h │ │ ├── kernel.h │ │ ├── kernel_abstract.h │ │ ├── kernel_matrix.h │ │ ├── kernel_matrix_abstract.h │ │ ├── kkmeans.h │ │ ├── kkmeans_abstract.h │ │ ├── krls.h │ │ ├── krls_abstract.h │ │ ├── krr_trainer.h │ │ ├── krr_trainer_abstract.h │ │ ├── linearly_independent_subset_finder.h │ │ ├── linearly_independent_subset_finder_abstract.h │ │ ├── multiclass_tools.h │ │ ├── multiclass_tools_abstract.h │ │ ├── null_df.h │ │ ├── null_trainer.h │ │ ├── null_trainer_abstract.h │ │ ├── one_vs_all_decision_function.h │ │ ├── one_vs_all_decision_function_abstract.h │ │ ├── one_vs_all_trainer.h │ │ ├── one_vs_all_trainer_abstract.h │ │ ├── one_vs_one_decision_function.h │ │ ├── one_vs_one_decision_function_abstract.h │ │ ├── one_vs_one_trainer.h │ │ ├── one_vs_one_trainer_abstract.h │ │ ├── pegasos.h │ │ ├── pegasos_abstract.h │ │ ├── rbf_network.h │ │ ├── rbf_network_abstract.h │ │ ├── reduced.h │ │ ├── reduced_abstract.h │ │ ├── rls.h │ │ ├── rls_abstract.h │ │ ├── roc_trainer.h │ │ ├── roc_trainer_abstract.h │ │ ├── rr_trainer.h │ │ ├── rr_trainer_abstract.h │ │ ├── rvm.h │ │ ├── rvm_abstract.h │ │ ├── sequence_labeler.h │ │ ├── sequence_labeler_abstract.h │ │ ├── simplify_linear_decision_function.h │ │ ├── simplify_linear_decision_function_abstract.h │ │ ├── sort_basis_vectors.h │ │ ├── sort_basis_vectors_abstract.h │ │ ├── sparse_kernel.h │ │ ├── sparse_kernel_abstract.h │ │ ├── sparse_vector.h │ │ ├── sparse_vector_abstract.h │ │ ├── structural_assignment_trainer.h │ │ ├── structural_assignment_trainer_abstract.h │ │ ├── structural_graph_labeling_trainer.h │ │ ├── structural_graph_labeling_trainer_abstract.h │ │ ├── structural_object_detection_trainer.h │ │ ├── structural_object_detection_trainer_abstract.h │ │ ├── structural_sequence_labeling_trainer.h │ │ ├── structural_sequence_labeling_trainer_abstract.h │ │ ├── structural_svm_assignment_problem.h │ │ ├── structural_svm_assignment_problem_abstract.h │ │ ├── structural_svm_distributed.h │ │ ├── structural_svm_distributed_abstract.h │ │ ├── structural_svm_graph_labeling_problem.h │ │ ├── structural_svm_graph_labeling_problem_abstract.h │ │ ├── structural_svm_object_detection_problem.h │ │ ├── structural_svm_object_detection_problem_abstract.h │ │ ├── structural_svm_problem.h │ │ ├── structural_svm_problem_abstract.h │ │ ├── structural_svm_problem_threaded.h │ │ ├── structural_svm_problem_threaded_abstract.h │ │ ├── structural_svm_sequence_labeling_problem.h │ │ ├── structural_svm_sequence_labeling_problem_abstract.h │ │ ├── svm.h │ │ ├── svm_abstract.h │ │ ├── svm_c_ekm_trainer.h │ │ ├── svm_c_ekm_trainer_abstract.h │ │ ├── svm_c_linear_trainer.h │ │ ├── svm_c_linear_trainer_abstract.h │ │ ├── svm_c_trainer.h │ │ ├── svm_c_trainer_abstract.h │ │ ├── svm_multiclass_linear_trainer.h │ │ ├── svm_multiclass_linear_trainer_abstract.h │ │ ├── svm_nu_trainer.h │ │ ├── svm_nu_trainer_abstract.h │ │ ├── svm_one_class_trainer.h │ │ ├── svm_one_class_trainer_abstract.h │ │ ├── svm_threaded.h │ │ ├── svm_threaded_abstract.h │ │ ├── svr_trainer.h │ │ └── svr_trainer_abstract.h │ ├── svm_threaded.h │ ├── sync_extension.h │ ├── sync_extension │ │ ├── sync_extension_kernel_1.h │ │ └── sync_extension_kernel_abstract.h │ ├── test │ │ ├── CMakeLists.txt │ │ ├── any.cpp │ │ ├── any_function.cpp │ │ ├── array.cpp │ │ ├── array2d.cpp │ │ ├── assignment_learning.cpp │ │ ├── base64.cpp │ │ ├── bayes_nets.cpp │ │ ├── bigint.cpp │ │ ├── binary_search_tree.h │ │ ├── binary_search_tree_kernel_1a.cpp │ │ ├── binary_search_tree_kernel_2a.cpp │ │ ├── binary_search_tree_mm1.cpp │ │ ├── binary_search_tree_mm2.cpp │ │ ├── blas_bindings │ │ │ ├── CMakeLists.txt │ │ │ ├── blas_bindings_dot.cpp │ │ │ ├── blas_bindings_gemm.cpp │ │ │ ├── blas_bindings_gemv.cpp │ │ │ ├── blas_bindings_ger.cpp │ │ │ └── vector.cpp │ │ ├── bridge.cpp │ │ ├── byte_orderer.cpp │ │ ├── checkerboard.h │ │ ├── cmd_line_parser.cpp │ │ ├── cmd_line_parser.h │ │ ├── cmd_line_parser_wchar_t.cpp │ │ ├── compress_stream.cpp │ │ ├── conditioning_class.cpp │ │ ├── conditioning_class.h │ │ ├── conditioning_class_c.cpp │ │ ├── config_reader.cpp │ │ ├── crc32.cpp │ │ ├── create_iris_datafile.cpp │ │ ├── create_iris_datafile.h │ │ ├── data_io.cpp │ │ ├── directed_graph.cpp │ │ ├── discriminant_pca.cpp │ │ ├── disjoint_subsets.cpp │ │ ├── ekm_and_lisf.cpp │ │ ├── empirical_kernel_map.cpp │ │ ├── entropy_coder.cpp │ │ ├── entropy_encoder_model.cpp │ │ ├── example.cpp │ │ ├── example_args.cpp │ │ ├── filtering.cpp │ │ ├── find_max_factor_graph_nmplp.cpp │ │ ├── find_max_factor_graph_viterbi.cpp │ │ ├── geometry.cpp │ │ ├── graph.cpp │ │ ├── graph_cuts.cpp │ │ ├── graph_labeler.cpp │ │ ├── gui │ │ │ ├── CMakeLists.txt │ │ │ └── main.cpp │ │ ├── hash.cpp │ │ ├── hash_map.cpp │ │ ├── hash_set.cpp │ │ ├── hash_table.cpp │ │ ├── hog_image.cpp │ │ ├── image.cpp │ │ ├── is_same_object.cpp │ │ ├── kcentroid.cpp │ │ ├── kernel_matrix.cpp │ │ ├── kmeans.cpp │ │ ├── least_squares.cpp │ │ ├── linear_manifold_regularizer.cpp │ │ ├── lz77_buffer.cpp │ │ ├── main.cpp │ │ ├── map.cpp │ │ ├── matrix.cpp │ │ ├── matrix2.cpp │ │ ├── matrix3.cpp │ │ ├── matrix4.cpp │ │ ├── matrix_chol.cpp │ │ ├── matrix_eig.cpp │ │ ├── matrix_lu.cpp │ │ ├── matrix_qr.cpp │ │ ├── max_cost_assignment.cpp │ │ ├── max_sum_submatrix.cpp │ │ ├── md5.cpp │ │ ├── member_function_pointer.cpp │ │ ├── metaprogramming.cpp │ │ ├── multithreaded_object.cpp │ │ ├── object_detector.cpp │ │ ├── oca.cpp │ │ ├── one_vs_all_trainer.cpp │ │ ├── one_vs_one_trainer.cpp │ │ ├── opt_qp_solver.cpp │ │ ├── optimization.cpp │ │ ├── optimization_test_functions.cpp │ │ ├── optimization_test_functions.h │ │ ├── pipe.cpp │ │ ├── pixel.cpp │ │ ├── probabilistic.cpp │ │ ├── pyramid_down.cpp │ │ ├── queue.cpp │ │ ├── rand.cpp │ │ ├── read_write_mutex.cpp │ │ ├── reference_counter.cpp │ │ ├── rls.cpp │ │ ├── sammon.cpp │ │ ├── scan_image.cpp │ │ ├── sequence.cpp │ │ ├── sequence_labeler.cpp │ │ ├── serialize.cpp │ │ ├── set.cpp │ │ ├── sldf.cpp │ │ ├── sliding_buffer.cpp │ │ ├── smart_pointers.cpp │ │ ├── sockets.cpp │ │ ├── sockets2.cpp │ │ ├── sockstreambuf.cpp │ │ ├── sparse_vector.cpp │ │ ├── stack.cpp │ │ ├── static_map.cpp │ │ ├── static_set.cpp │ │ ├── statistics.cpp │ │ ├── std_vector_c.cpp │ │ ├── string.cpp │ │ ├── svm.cpp │ │ ├── svm_c_linear.cpp │ │ ├── svm_multiclass_linear.cpp │ │ ├── svm_struct.cpp │ │ ├── symmetric_matrix_cache.cpp │ │ ├── tester.cpp │ │ ├── tester.h │ │ ├── thread_pool.cpp │ │ ├── threads.cpp │ │ ├── timer.cpp │ │ ├── tokenizer.cpp │ │ ├── trust_region.cpp │ │ ├── tuple.cpp │ │ └── type_safe_union.cpp │ ├── threads.h │ ├── threads │ │ ├── auto_mutex_extension.h │ │ ├── auto_mutex_extension_abstract.h │ │ ├── auto_unlock_extension.h │ │ ├── auto_unlock_extension_abstract.h │ │ ├── create_new_thread_extension.h │ │ ├── create_new_thread_extension_abstract.h │ │ ├── multithreaded_object_extension.cpp │ │ ├── multithreaded_object_extension.h │ │ ├── multithreaded_object_extension_abstract.h │ │ ├── posix.h │ │ ├── read_write_mutex_extension.h │ │ ├── read_write_mutex_extension_abstract.h │ │ ├── rmutex_extension.h │ │ ├── rmutex_extension_abstract.h │ │ ├── rsignaler_extension.h │ │ ├── rsignaler_extension_abstract.h │ │ ├── thread_function_extension.h │ │ ├── thread_function_extension_abstract.h │ │ ├── thread_pool_extension.cpp │ │ ├── thread_pool_extension.h │ │ ├── thread_pool_extension_abstract.h │ │ ├── thread_specific_data_extension.h │ │ ├── thread_specific_data_extension_abstract.h │ │ ├── threaded_object_extension.cpp │ │ ├── threaded_object_extension.h │ │ ├── threaded_object_extension_abstract.h │ │ ├── threads_kernel.h │ │ ├── threads_kernel_1.cpp │ │ ├── threads_kernel_1.h │ │ ├── threads_kernel_2.cpp │ │ ├── threads_kernel_2.h │ │ ├── threads_kernel_abstract.h │ │ ├── threads_kernel_shared.cpp │ │ ├── threads_kernel_shared.h │ │ └── windows.h │ ├── time_this.h │ ├── timeout.h │ ├── timeout │ │ ├── timeout_kernel_1.h │ │ └── timeout_kernel_abstract.h │ ├── timer.h │ ├── timer │ │ ├── timer_kernel_1.h │ │ ├── timer_kernel_2.cpp │ │ ├── timer_kernel_2.h │ │ └── timer_kernel_abstract.h │ ├── timing.h │ ├── tokenizer.h │ ├── tokenizer │ │ ├── tokenizer_kernel_1.cpp │ │ ├── tokenizer_kernel_1.h │ │ ├── tokenizer_kernel_abstract.h │ │ └── tokenizer_kernel_c.h │ ├── tuple.h │ ├── tuple │ │ ├── tuple.h │ │ └── tuple_abstract.h │ ├── type_safe_union.h │ ├── type_safe_union │ │ ├── type_safe_union_kernel.h │ │ └── type_safe_union_kernel_abstract.h │ ├── uintn.h │ ├── unicode.h │ ├── unicode │ │ ├── unicode.cpp │ │ ├── unicode.h │ │ └── unicode_abstract.h │ ├── unordered_pair.h │ ├── windows_magic.h │ ├── xml_parser.h │ └── xml_parser │ │ ├── xml_parser_kernel_1.h │ │ ├── xml_parser_kernel_abstract.h │ │ ├── xml_parser_kernel_c.h │ │ └── xml_parser_kernel_interfaces.h ├── fgmm │ ├── em.cpp │ ├── em.h │ ├── fgmm++.hpp │ ├── fgmm.h │ ├── gaussian.cpp │ ├── gaussian.h │ ├── gmm.cpp │ ├── gmmregression.cpp │ ├── regression.h │ ├── smat.cpp │ ├── smat.h │ └── update.cpp ├── jacgrid │ ├── atom.cpp │ ├── atom.h │ ├── cell_table.h │ ├── grid.cpp │ ├── grid.h │ ├── isosurface.cpp │ ├── jacgrid.h │ ├── jacgrid.pro │ ├── jacgrid_private.h │ ├── linalg.h │ ├── plane.cpp │ ├── plane.h │ ├── surface.cpp │ └── surface.h ├── liblinear │ ├── blas.h │ ├── blasp.h │ ├── daxpy.c │ ├── ddot.c │ ├── dnrm2.c │ ├── dscal.c │ ├── linear.cpp │ ├── linear.h │ ├── predict.c │ ├── train.c │ ├── tron.cpp │ └── tron.h ├── lwpr │ ├── lwpr.c │ ├── lwpr.h │ ├── lwpr.hh │ ├── lwpr_aux.c │ ├── lwpr_aux.h │ ├── lwpr_binio.c │ ├── lwpr_binio.h │ ├── lwpr_config.h │ ├── lwpr_config.h.in │ ├── lwpr_config_def.h │ ├── lwpr_math.c │ ├── lwpr_math.h │ ├── lwpr_mem.c │ ├── lwpr_mem.h │ ├── lwpr_xml.c │ └── lwpr_xml.h ├── matio │ ├── endian.c │ ├── inflate.c │ ├── io.c │ ├── mat.c │ ├── mat4.c │ ├── mat4.h │ ├── mat5.c │ ├── mat5.h │ ├── mat73.c │ ├── mat73.h │ ├── matio.h │ ├── matioConfig.h │ ├── matioConfig.h.in │ ├── matio_private.h │ ├── matio_pubconf.h │ ├── matio_pubconf.h.in │ ├── matvar_cell.c │ ├── matvar_struct.c │ ├── read_data.c │ └── snprintf.c ├── newmat11 │ ├── bandmat.cpp │ ├── cholesky.cpp │ ├── controlw.h │ ├── evalue.cpp │ ├── fft.cpp │ ├── hholder.cpp │ ├── include.h │ ├── jacobi.cpp │ ├── myexcept.cpp │ ├── myexcept.h │ ├── newfft.cpp │ ├── newmat.h │ ├── newmat1.cpp │ ├── newmat2.cpp │ ├── newmat3.cpp │ ├── newmat4.cpp │ ├── newmat5.cpp │ ├── newmat6.cpp │ ├── newmat7.cpp │ ├── newmat8.cpp │ ├── newmat9.cpp │ ├── newmatap.h │ ├── newmatex.cpp │ ├── newmatio.h │ ├── newmatnl.cpp │ ├── newmatnl.h │ ├── newmatrc.h │ ├── newmatrm.cpp │ ├── newmatrm.h │ ├── nm_misc.cpp │ ├── precisio.h │ ├── solution.cpp │ ├── solution.h │ ├── sort.cpp │ ├── submat.cpp │ └── svd.cpp └── nlopt │ ├── DIRect.c │ ├── DIRserial.c │ ├── DIRsubrout.c │ ├── auglag.c │ ├── auglag.h │ ├── bobyqa.c │ ├── bobyqa.h │ ├── cdirect.c │ ├── cdirect.h │ ├── cobyla.c │ ├── cobyla.h │ ├── config.h │ ├── crs.c │ ├── crs.h │ ├── deprecated.c │ ├── direct-internal.h │ ├── direct.h │ ├── direct_wrap.c │ ├── f77api.c │ ├── f77funcs.h │ ├── f77funcs_.h │ ├── general.c │ ├── global.cc │ ├── global.h │ ├── hybrid.c │ ├── isres.c │ ├── isres.h │ ├── linalg.cc │ ├── linalg.h │ ├── local.cc │ ├── local.h │ ├── luksan.h │ ├── mlsl.c │ ├── mlsl.h │ ├── mma.c │ ├── mma.h │ ├── mssubs.c │ ├── mt19937ar.c │ ├── neldermead.h │ ├── newuoa.c │ ├── newuoa.h │ ├── nldrmd.c │ ├── nlopt-in.hpp │ ├── nlopt-internal.h │ ├── nlopt-util.h │ ├── nlopt.h │ ├── nlopt.hpp │ ├── nlopt_optimize_usage.h │ ├── optimize.c │ ├── options.c │ ├── plip.c │ ├── plis.c │ ├── pnet.c │ ├── praxis.c │ ├── praxis.h │ ├── pssubs.c │ ├── qsort_r.c │ ├── redblack.c │ ├── redblack.h │ ├── rescale.c │ ├── sbplx.c │ ├── slsqp.c │ ├── slsqp.h │ ├── soboldata.h │ ├── sobolseq.c │ ├── stogo.cc │ ├── stogo.h │ ├── stogo_config.h │ ├── stop.c │ ├── timer.c │ ├── tools.cc │ └── tools.h ├── _AlgorithmsPlugins ├── ASVM │ ├── 3-classes.ml │ ├── ASVMLearning.h │ ├── asvm.cpp │ ├── asvm.h │ ├── asvm_nlopt_solver.cpp │ ├── asvm_nlopt_solver.h │ ├── asvm_smo_solver.cpp │ ├── asvm_smo_solver.h │ ├── asvmdata.cpp │ ├── asvmdata.h │ ├── dynamicalASVM.cpp │ ├── dynamicalASVM.h │ ├── interfaceASVMDynamic.cpp │ ├── interfaceASVMDynamic.h │ ├── main.cpp │ ├── paramsASVM.ui │ ├── plugin.json │ ├── pluginASVM.pro │ ├── svm.cpp │ ├── svm.h │ ├── util.cpp │ └── util.h ├── CCA │ ├── README.txt │ ├── interfaceCCAProjection.cpp │ ├── interfaceCCAProjection.h │ ├── paramsCCA.ui │ ├── plugin.json │ ├── pluginCCA.cpp │ ├── pluginCCA.h │ ├── pluginCCA.pro │ ├── projectorCCA.cpp │ └── projectorCCA.h ├── DBSCAN │ ├── clustererDBSCAN.cpp │ ├── clustererDBSCAN.h │ ├── distance.h │ ├── graphDBSCAN.ui │ ├── interfaceDBSCAN.cpp │ ├── interfaceDBSCAN.h │ ├── opencvincludes.h │ ├── paramsDBSCAN.ui │ ├── plugin.json │ ├── pluginDBSCAN.cpp │ ├── pluginDBSCAN.h │ └── pluginDBSCAN.pro ├── Example │ ├── classifierExample.cpp │ ├── classifierExample.h │ ├── clustererExample.cpp │ ├── clustererExample.h │ ├── dynamicalExample.cpp │ ├── dynamicalExample.h │ ├── interfaceExampleClassifier.cpp │ ├── interfaceExampleClassifier.h │ ├── interfaceExampleCluster.cpp │ ├── interfaceExampleCluster.h │ ├── interfaceExampleDynamic.cpp │ ├── interfaceExampleDynamic.h │ ├── interfaceExampleRegress.cpp │ ├── interfaceExampleRegress.h │ ├── paramsExample.ui │ ├── pluginExample.cpp │ ├── pluginExample.h │ ├── pluginExample.pro │ ├── regressorExample.cpp │ └── regressorExample.h ├── FLAME │ ├── clustererFlame.cpp │ ├── clustererFlame.h │ ├── flame.cpp │ ├── flame.h │ ├── interfaceFlameCluster.cpp │ ├── interfaceFlameCluster.h │ ├── paramsFlame.ui │ ├── plugin.json │ ├── pluginFlame.cpp │ ├── pluginFlame.h │ ├── pluginFlame.pro │ ├── pluginflame_plugin.h │ └── qmldir ├── GHSOM │ ├── GHSOM │ │ ├── dataitem.cpp │ │ ├── dataitem.h │ │ ├── dataloader.cpp │ │ ├── dataloader.h │ │ ├── globals.cpp │ │ ├── globals.h │ │ ├── main.cpp │ │ ├── neuron.cpp │ │ ├── neuron.h │ │ ├── neuronlayer.cpp │ │ ├── neuronlayer.h │ │ ├── vector.cpp │ │ └── vector.h │ ├── interfaceGHSOM.cpp │ ├── interfaceGHSOM.h │ ├── paramsGHSOM.ui │ ├── plugin.json │ ├── pluginGHSOM.pro │ ├── projectorGHSOM.cpp │ └── projectorGHSOM.h ├── GMM │ ├── GMM.cbp │ ├── classifierGMM.cpp │ ├── classifierGMM.h │ ├── clustererGMM.cpp │ ├── clustererGMM.h │ ├── dynamicalGMR.cpp │ ├── dynamicalGMR.h │ ├── interfaceGMMClassifier.cpp │ ├── interfaceGMMClassifier.h │ ├── interfaceGMMCluster.cpp │ ├── interfaceGMMCluster.h │ ├── interfaceGMMDynamic.cpp │ ├── interfaceGMMDynamic.h │ ├── interfaceGMMRegress.cpp │ ├── interfaceGMMRegress.h │ ├── marginalWidget.ui │ ├── marginalwidget.cpp │ ├── marginalwidget.h │ ├── paramsGMM.ui │ ├── paramsGMMcluster.ui │ ├── paramsGMMdynamic.ui │ ├── paramsGMMregr.ui │ ├── plugin.json │ ├── pluginGMM.cpp │ ├── pluginGMM.h │ ├── pluginGMM.pro │ ├── regressorGMR.cpp │ └── regressorGMR.h ├── GP │ ├── SECovarianceFunction.cpp │ ├── SECovarianceFunction.h │ ├── SOGP.cpp │ ├── SOGP.h │ ├── SOGP_aux.cpp │ ├── SOGP_aux.h │ ├── classifierGP.cpp │ ├── classifierGP.h │ ├── dynamicalGPR.cpp │ ├── dynamicalGPR.h │ ├── gpr.h │ ├── interfaceGPClassifier.cpp │ ├── interfaceGPClassifier.h │ ├── interfaceGPRDynamic.cpp │ ├── interfaceGPRDynamic.h │ ├── interfaceGPRRegress.cpp │ ├── interfaceGPRRegress.h │ ├── paramsGPClassifier.ui │ ├── paramsGPR.ui │ ├── paramsGPRdynamic.ui │ ├── plugin.json │ ├── pluginGP.cpp │ ├── pluginGP.h │ ├── pluginGP.pro │ ├── regressorGPR.cpp │ └── regressorGPR.h ├── HMM │ ├── classifierHMM.cpp │ ├── classifierHMM.h │ ├── detectorHMM.cpp │ ├── detectorHMM.h │ ├── dynamicalHMM.cpp │ ├── dynamicalHMM.h │ ├── interfaceHMMClassifier.cpp │ ├── interfaceHMMClassifier.h │ ├── interfaceHMMDetect.cpp │ ├── interfaceHMMDetect.h │ ├── interfaceHMMDynamic.cpp │ ├── interfaceHMMDynamic.h │ ├── paramsHMM.ui │ ├── pluginHMM.cpp │ ├── pluginHMM.h │ ├── pluginHMM.pro │ ├── pluginHMM.pro.config │ ├── pluginHMM.pro.creator │ ├── pluginHMM.pro.creator.user │ ├── pluginHMM.pro.files │ └── pluginHMM.pro.includes ├── KNN │ ├── KNN.cbp │ ├── classifierKNN.cpp │ ├── classifierKNN.h │ ├── dynamicalKNN.cpp │ ├── dynamicalKNN.h │ ├── interfaceKNNClassifier.cpp │ ├── interfaceKNNClassifier.h │ ├── interfaceKNNDynamic.cpp │ ├── interfaceKNNDynamic.h │ ├── interfaceKNNRegress.cpp │ ├── interfaceKNNRegress.h │ ├── paramsKNN.ui │ ├── paramsKNNDynamic.ui │ ├── paramsKNNRegress.ui │ ├── plugin.json │ ├── pluginKNN.cpp │ ├── pluginKNN.h │ ├── pluginKNN.pro │ ├── regressorKNN.cpp │ └── regressorKNN.h ├── KernelMethods │ ├── KernelMethods.cbp │ ├── classifierMRVM.cpp │ ├── classifierMRVM.h │ ├── classifierMVM.cpp │ ├── classifierMVM.h │ ├── classifierPegasos.cpp │ ├── classifierPegasos.h │ ├── classifierRVM.cpp │ ├── classifierRVM.h │ ├── classifierSVM.cpp │ ├── classifierSVM.h │ ├── clustererKKM.cpp │ ├── clustererKKM.h │ ├── clustererKM.cpp │ ├── clustererKM.h │ ├── clustererSVR.cpp │ ├── clustererSVR.h │ ├── dlibTypes.h │ ├── dynamicalSVR.cpp │ ├── dynamicalSVR.h │ ├── interfaceKKM.cpp │ ├── interfaceKKM.h │ ├── interfaceKMCluster.cpp │ ├── interfaceKMCluster.h │ ├── interfaceMRVMClassifier.cpp │ ├── interfaceMRVMClassifier.h │ ├── interfaceMVM.cpp │ ├── interfaceMVM.h │ ├── interfaceRVMClassifier.cpp │ ├── interfaceRVMClassifier.h │ ├── interfaceRVMRegress.cpp │ ├── interfaceRVMRegress.h │ ├── interfaceSVMClassifier.cpp │ ├── interfaceSVMClassifier.h │ ├── interfaceSVMCluster.cpp │ ├── interfaceSVMCluster.h │ ├── interfaceSVMDynamic.cpp │ ├── interfaceSVMDynamic.h │ ├── interfaceSVMRegress.cpp │ ├── interfaceSVMRegress.h │ ├── kmeans.cpp │ ├── kmeans.h │ ├── paramsKKM.ui │ ├── paramsKM.ui │ ├── paramsMRVM.ui │ ├── paramsMVM.ui │ ├── paramsRVM.ui │ ├── paramsRVMregr.ui │ ├── paramsSVM.ui │ ├── paramsSVMcluster.ui │ ├── paramsSVMdynamic.ui │ ├── paramsSVMregr.ui │ ├── plugin.json │ ├── pluginKernel.cpp │ ├── pluginKernel.h │ ├── pluginKernel.pro │ ├── regressorKRLS.cpp │ ├── regressorKRLS.h │ ├── regressorRVM.cpp │ ├── regressorRVM.h │ ├── regressorSVR.cpp │ ├── regressorSVR.h │ ├── svm.cpp │ └── svm.h ├── LLE │ ├── interfaceLLEProjection.cpp │ ├── interfaceLLEProjection.h │ ├── paramsLLE.ui │ ├── plugin.json │ ├── pluginLLE.pro │ ├── pluginProjections.cpp │ ├── projectorLLE.cpp │ └── projectorLLE.h ├── LWPR │ ├── LWPR.cbp │ ├── dynamicalLWPR.cpp │ ├── dynamicalLWPR.h │ ├── interfaceLWPRDynamic.cpp │ ├── interfaceLWPRDynamic.h │ ├── interfaceLWPRRegress.cpp │ ├── interfaceLWPRRegress.h │ ├── paramsLWPRDynamic.ui │ ├── paramsLWPRRegress.ui │ ├── plugin.json │ ├── pluginLWPR.cpp │ ├── pluginLWPR.h │ ├── pluginLWPR.pro │ ├── regressorLWPR.cpp │ └── regressorLWPR.h ├── Lowess │ ├── interfaceLowess.cpp │ ├── interfaceLowess.h │ ├── lowessHelpers.h │ ├── paramsLowess.ui │ ├── plugin.json │ ├── pluginLowess.cpp │ ├── pluginLowess.h │ ├── pluginLowess.pro │ ├── regressorLowess.cpp │ └── regressorLowess.h ├── MLR │ ├── EvolutionStrategy.cpp │ ├── EvolutionStrategy.h │ ├── MixtureLogisticRegression.cpp │ ├── MixtureLogisticRegression.h │ ├── classifierESMLR.cpp │ ├── classifierESMLR.h │ ├── classifierRRMLR.cpp │ ├── classifierRRMLR.h │ ├── interfaceESMLRClassifier.cpp │ ├── interfaceESMLRClassifier.h │ ├── interfaceRRMLRClassifier.cpp │ ├── interfaceRRMLRClassifier.h │ ├── paramsESMLR.ui │ ├── paramsRRMLR.ui │ ├── pluginMLR.cpp │ ├── pluginMLR.h │ └── pluginMLR.pro ├── Maximizers │ ├── gaPeon.cpp │ ├── gaPeon.h │ ├── gaTrainer.cpp │ ├── gaTrainer.h │ ├── interfaceBasic.cpp │ ├── interfaceBasic.h │ ├── interfaceGA.cpp │ ├── interfaceGA.h │ ├── interfaceNLopt.cpp │ ├── interfaceNLopt.h │ ├── interfaceParticleFilters.cpp │ ├── interfaceParticleFilters.h │ ├── interfaceParticles.cpp │ ├── interfaceParticles.h │ ├── maximizeDonut.cpp │ ├── maximizeDonut.h │ ├── maximizeGA.cpp │ ├── maximizeGA.h │ ├── maximizeGradient.cpp │ ├── maximizeGradient.h │ ├── maximizeNLopt.cpp │ ├── maximizeNLopt.h │ ├── maximizeParticles.cpp │ ├── maximizeParticles.h │ ├── maximizePower.cpp │ ├── maximizePower.h │ ├── maximizeRandom.cpp │ ├── maximizeRandom.h │ ├── maximizeSwarm.cpp │ ├── maximizeSwarm.h │ ├── mvnpdf.h │ ├── paramsGA.ui │ ├── paramsMaximizers.ui │ ├── paramsNLopt.ui │ ├── paramsParticleFilters.ui │ ├── paramsParticles.ui │ ├── plugin.json │ ├── pluginMaximizers.cbp │ ├── pluginMaximizers.cpp │ ├── pluginMaximizers.h │ └── pluginMaximizers.pro ├── MeanShift │ ├── MeanShift │ │ ├── LICENSE.txt │ │ ├── MeanShift.cpp │ │ ├── MeanShift.h │ │ ├── README.md │ │ └── cpp_test.cpp │ ├── clustererMeanShift.cpp │ ├── clustererMeanShift.h │ ├── interfaceMeanShiftCluster.cpp │ ├── interfaceMeanShiftCluster.h │ ├── paramsMeanShift.ui │ ├── plugin.json │ ├── pluginMeanShift.cpp │ ├── pluginMeanShift.h │ └── pluginMeanShift.pro ├── MetricLearning │ ├── CVOLearner.cpp │ ├── CVOLearner.h │ ├── interfaceCVOProjection.cpp │ ├── interfaceCVOProjection.h │ ├── paramsCVO.ui │ ├── plugin.json │ ├── pluginMetricLearning.cpp │ ├── pluginMetricLearning.h │ ├── pluginMetricLearning.pro │ ├── projectorCVO.cpp │ └── projectorCVO.h ├── Obstacle │ ├── DSAvoid.cpp │ ├── DSAvoid.h │ ├── DSInit.cpp │ ├── Obstacle.cbp │ ├── interfaceAvoidance.cpp │ ├── interfaceAvoidance.h │ ├── plugin.json │ └── pluginAvoidance.pro ├── OpenCV │ ├── basicOpenCV.cpp │ ├── basicOpenCV.h │ ├── classifierBoost.cpp │ ├── classifierBoost.h │ ├── classifierMLP.cpp │ ├── classifierMLP.h │ ├── classifierTrees.cpp │ ├── classifierTrees.h │ ├── dynamicalMLP.cpp │ ├── dynamicalMLP.h │ ├── interfaceBoostClassifier.cpp │ ├── interfaceBoostClassifier.h │ ├── interfaceGBRegress.cpp │ ├── interfaceGBRegress.h │ ├── interfaceMLPClassifier.cpp │ ├── interfaceMLPClassifier.h │ ├── interfaceMLPDynamic.cpp │ ├── interfaceMLPDynamic.h │ ├── interfaceMLPRegress.cpp │ ├── interfaceMLPRegress.h │ ├── interfaceTreesClassifier.cpp │ ├── interfaceTreesClassifier.h │ ├── paramsBoost.ui │ ├── paramsGBRegress.ui │ ├── paramsMLP.ui │ ├── paramsMLPDynamic.ui │ ├── paramsMLPRegress.ui │ ├── paramsTrees.ui │ ├── plugin.json │ ├── pluginOpenCV.cbp │ ├── pluginOpenCV.cpp │ ├── pluginOpenCV.h │ ├── pluginOpenCV.pro │ ├── regressorGB.cpp │ ├── regressorGB.h │ ├── regressorMLP.cpp │ └── regressorMLP.h ├── Projections │ ├── LinearMethods.cbp │ ├── basicOpenCV.cpp │ ├── basicOpenCV.h │ ├── classifierKPCA.cpp │ ├── classifierKPCA.h │ ├── classifierLinear.cpp │ ├── classifierLinear.h │ ├── contourPlots.ui │ ├── eigen_pca.h │ ├── eigen_pca_kernel.cpp │ ├── interfaceICAProjection.cpp │ ├── interfaceICAProjection.h │ ├── interfaceKPCAProjection.cpp │ ├── interfaceKPCAProjection.h │ ├── interfaceLDAProjection.cpp │ ├── interfaceLDAProjection.h │ ├── interfaceLLEProjection.cpp │ ├── interfaceLLEProjection.h │ ├── interfaceNormalizeProjection.cpp │ ├── interfaceNormalizeProjection.h │ ├── interfacePCAProjection.cpp │ ├── interfacePCAProjection.h │ ├── interfaceProjections.cpp │ ├── interfaceProjections.h │ ├── interfaceSammonProjection.cpp │ ├── interfaceSammonProjection.h │ ├── isomap │ │ ├── dijkstra.cpp │ │ ├── fibheap.h │ │ ├── isomap.cpp │ │ └── isomap.h │ ├── paramsICA.ui │ ├── paramsKPCA.ui │ ├── paramsLDA.ui │ ├── paramsLLE.ui │ ├── paramsNormalize.ui │ ├── paramsPCA.ui │ ├── paramsProjections.ui │ ├── paramsSammon.ui │ ├── plugin.json │ ├── pluginProjections.cpp │ ├── pluginProjections.h │ ├── pluginProjections.pro │ ├── projectorICA.cpp │ ├── projectorICA.h │ ├── projectorKPCA.cpp │ ├── projectorKPCA.h │ ├── projectorLDA.cpp │ ├── projectorLDA.h │ ├── projectorLLE.cpp │ ├── projectorLLE.h │ ├── projectorNormalize.cpp │ ├── projectorNormalize.h │ ├── projectorPCA.cpp │ ├── projectorPCA.h │ ├── projectorSammon.cpp │ └── projectorSammon.h ├── QTMeans │ ├── Clustering.cpp │ ├── Clustering.h │ ├── clustererQTClust.cpp │ ├── clustererQTClust.h │ ├── interfaceQTCLuster.cpp │ ├── interfaceQTCluster.h │ ├── paramsQTCluster.ui │ ├── pluginQTMeans.pro │ ├── vectorSpace.cpp │ └── vectorSpace.hpp ├── RandomKernel │ ├── classifierRSVM.cpp │ ├── classifierRSVM.h │ ├── interfaceRGPRegressor.cpp │ ├── interfaceRGPRegressor.h │ ├── interfaceRSVMClassifier.cpp │ ├── interfaceRSVMClassifier.h │ ├── paramsRGPR.ui │ ├── paramsRSVM.ui │ ├── plugin.json │ ├── pluginRandomKernel.cpp │ ├── pluginRandomKernel.h │ ├── pluginRandomKernel.pro │ ├── randomKernelUtils.cpp │ ├── randomKernelUtils.h │ ├── regressorRGPR.cpp │ └── regressorRGPR.h ├── Reinforcements │ ├── gaPeon.cpp │ ├── gaPeon.h │ ├── gaTrainer.cpp │ ├── gaTrainer.h │ ├── interfaceDP.cpp │ ├── interfaceDP.h │ ├── interfaceGA.cpp │ ├── interfaceGA.h │ ├── interfaceNLopt.cpp │ ├── interfaceNLopt.h │ ├── interfaceParticleFilters.cpp │ ├── interfaceParticleFilters.h │ ├── interfaceParticles.cpp │ ├── interfaceParticles.h │ ├── interfacePower.cpp │ ├── interfacePower.h │ ├── interfaceRandom.cpp │ ├── interfaceRandom.h │ ├── maximizeDonut.cpp │ ├── maximizeDonut.h │ ├── maximizeGradient.cpp │ ├── maximizeGradient.h │ ├── maximizeNLopt.cpp │ ├── maximizeNLopt.h │ ├── maximizeParticles.cpp │ ├── maximizeParticles.h │ ├── maximizeSwarm.cpp │ ├── maximizeSwarm.h │ ├── mvnpdf.h │ ├── paramsDP.ui │ ├── paramsGA.ui │ ├── paramsNLopt.ui │ ├── paramsParticleFilters.ui │ ├── paramsParticles.ui │ ├── paramsPower.ui │ ├── paramsRandom.ui │ ├── plugin.json │ ├── pluginReinforcements.cpp │ ├── pluginReinforcements.h │ ├── pluginReinforcements.pro │ ├── reinforcementDP.cpp │ ├── reinforcementDP.h │ ├── reinforcementGA.cpp │ ├── reinforcementGA.h │ ├── reinforcementPower.cpp │ ├── reinforcementPower.h │ ├── reinforcementRandom.cpp │ └── reinforcementRandom.h └── SEDS │ ├── SEDS.cbp │ ├── SEDS.cpp │ ├── SEDS.h │ ├── dynamicalSEDS.cpp │ ├── dynamicalSEDS.h │ ├── interfaceSEDSDynamic.cpp │ ├── interfaceSEDSDynamic.h │ ├── paramsSEDS.ui │ ├── plugin.json │ └── pluginSEDS.pro ├── _IOPlugins ├── CSVImport │ ├── CSVImport.cpp │ ├── CSVImport.h │ ├── CSVImport.ui │ └── pluginCSVImport.pro ├── ImportTimeseries │ ├── importTimeseries.cpp │ ├── importTimeseries.h │ ├── importTimeseries.ui │ ├── parser.cpp │ ├── parser.h │ ├── pluginImportTimeseries.cbp │ └── pluginImportTimeseries.pro ├── PCAFaces │ ├── PCAFaces.cbp │ ├── PCAFaces.cpp │ ├── PCAFaces.h │ ├── PCAFaces.ui │ ├── basicMath.h │ ├── basicOpenCV.cpp │ ├── basicOpenCV.h │ ├── cameraGrabber.cpp │ ├── cameraGrabber.h │ ├── eigenFaces.cpp │ ├── eigenFaces.h │ ├── eigenvalues.ui │ ├── launcher.cpp │ ├── pcaprojector.cpp │ ├── pcaprojector.h │ ├── plugin.json │ ├── pluginPCAFaces.pro │ ├── sampleManager.cpp │ ├── sampleManager.h │ ├── widget.cpp │ └── widget.h ├── RandomEmitter │ ├── RandomEmitter.cbp │ ├── interfaceRandomEmitter.cpp │ ├── interfaceRandomEmitter.h │ ├── mymaths.cpp │ ├── mymaths.h │ └── pluginRandomEmitter.pro └── WebImport │ ├── WebImport.cpp │ ├── WebImport.h │ ├── WebImport.ui │ ├── basicOpenCV.cpp │ ├── basicOpenCV.h │ ├── parser.cpp │ ├── parser.h │ ├── pcaprojection.cpp │ ├── pcaprojection.h │ ├── pluginWebImport.cbp │ ├── pluginWebImport.pro │ ├── widget.cpp │ └── widget.h ├── dmg-background.png ├── help ├── GA.html ├── KPCA.html ├── PCA.html ├── avoidDS.html ├── boost.html ├── classification.html ├── clustering.html ├── dynamical.html ├── gmm.html ├── kernelClass.html ├── kernelClust.html ├── kernelDynamic.html ├── kernelRegression.html ├── kmeans.html ├── knn.html ├── lwpr.html ├── maximization.html ├── maximizeStochastic.html ├── mldemos.html ├── mlp.html ├── projection.html ├── projections.html ├── regression.html ├── reinforcement.html └── seds.html ├── mldemos.workspace ├── packageOSX.sh └── stuff ├── 20034-4809-3-3ww-l.jpg ├── AML-Algorithms.numbers ├── dmg-background.png ├── faces.png ├── sampleManager.cpp └── sampleManager.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/.gitignore -------------------------------------------------------------------------------- /Core/BasicLighting.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/BasicLighting.vert -------------------------------------------------------------------------------- /Core/Core.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/Core.pro -------------------------------------------------------------------------------- /Core/animationlabel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/animationlabel.cpp -------------------------------------------------------------------------------- /Core/animationlabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/animationlabel.h -------------------------------------------------------------------------------- /Core/basicMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/basicMath.h -------------------------------------------------------------------------------- /Core/canvas-drawing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/canvas-drawing.cpp -------------------------------------------------------------------------------- /Core/canvas-interaction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/canvas-interaction.cpp -------------------------------------------------------------------------------- /Core/canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/canvas.cpp -------------------------------------------------------------------------------- /Core/canvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/canvas.h -------------------------------------------------------------------------------- /Core/classifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/classifier.h -------------------------------------------------------------------------------- /Core/clusterer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/clusterer.cpp -------------------------------------------------------------------------------- /Core/clusterer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/clusterer.h -------------------------------------------------------------------------------- /Core/contours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/contours.cpp -------------------------------------------------------------------------------- /Core/contours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/contours.h -------------------------------------------------------------------------------- /Core/dataImport.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/dataImport.ui -------------------------------------------------------------------------------- /Core/dataImporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/dataImporter.cpp -------------------------------------------------------------------------------- /Core/dataImporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/dataImporter.h -------------------------------------------------------------------------------- /Core/datasetManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/datasetManager.cpp -------------------------------------------------------------------------------- /Core/datasetManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/datasetManager.h -------------------------------------------------------------------------------- /Core/drawSVG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/drawSVG.cpp -------------------------------------------------------------------------------- /Core/drawSVG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/drawSVG.h -------------------------------------------------------------------------------- /Core/drawTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/drawTimer.cpp -------------------------------------------------------------------------------- /Core/drawTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/drawTimer.h -------------------------------------------------------------------------------- /Core/drawUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/drawUtils.cpp -------------------------------------------------------------------------------- /Core/drawUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/drawUtils.h -------------------------------------------------------------------------------- /Core/dynamical.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/dynamical.h -------------------------------------------------------------------------------- /Core/expose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/expose.cpp -------------------------------------------------------------------------------- /Core/expose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/expose.h -------------------------------------------------------------------------------- /Core/expose.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/expose.ui -------------------------------------------------------------------------------- /Core/fileutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/fileutils.cpp -------------------------------------------------------------------------------- /Core/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/fileutils.h -------------------------------------------------------------------------------- /Core/gettimeofday.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/gettimeofday.cc -------------------------------------------------------------------------------- /Core/gettimeofday.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/gettimeofday.h -------------------------------------------------------------------------------- /Core/glUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/glUtils.cpp -------------------------------------------------------------------------------- /Core/glUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/glUtils.h -------------------------------------------------------------------------------- /Core/glwidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/glwidget.cpp -------------------------------------------------------------------------------- /Core/glwidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/glwidget.h -------------------------------------------------------------------------------- /Core/interfaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/interfaces.h -------------------------------------------------------------------------------- /Core/kmeans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/kmeans.cpp -------------------------------------------------------------------------------- /Core/kmeans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/kmeans.h -------------------------------------------------------------------------------- /Core/maximize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/maximize.h -------------------------------------------------------------------------------- /Core/mymaths.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/mymaths.cpp -------------------------------------------------------------------------------- /Core/mymaths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/mymaths.h -------------------------------------------------------------------------------- /Core/obstacles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/obstacles.h -------------------------------------------------------------------------------- /Core/optimization_test_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/optimization_test_functions.h -------------------------------------------------------------------------------- /Core/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/parser.cpp -------------------------------------------------------------------------------- /Core/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/parser.h -------------------------------------------------------------------------------- /Core/projector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/projector.h -------------------------------------------------------------------------------- /Core/public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/public.h -------------------------------------------------------------------------------- /Core/qcontour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/qcontour.cpp -------------------------------------------------------------------------------- /Core/qcontour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/qcontour.h -------------------------------------------------------------------------------- /Core/regressor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/regressor.h -------------------------------------------------------------------------------- /Core/reinforcement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/reinforcement.h -------------------------------------------------------------------------------- /Core/reinforcementProblem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/reinforcementProblem.cpp -------------------------------------------------------------------------------- /Core/reinforcementProblem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/reinforcementProblem.h -------------------------------------------------------------------------------- /Core/roc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/roc.cpp -------------------------------------------------------------------------------- /Core/roc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/roc.h -------------------------------------------------------------------------------- /Core/spline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/spline.h -------------------------------------------------------------------------------- /Core/sse_mathfun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/sse_mathfun.h -------------------------------------------------------------------------------- /Core/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/types.h -------------------------------------------------------------------------------- /Core/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/widget.cpp -------------------------------------------------------------------------------- /Core/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/Core/widget.h -------------------------------------------------------------------------------- /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MLDemos.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos.pro -------------------------------------------------------------------------------- /MLDemos/MLDemos.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/MLDemos.cbp -------------------------------------------------------------------------------- /MLDemos/MLDemos.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/MLDemos.pro -------------------------------------------------------------------------------- /MLDemos/MachineLearning.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/MachineLearning.ico -------------------------------------------------------------------------------- /MLDemos/MachineLearning.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/MachineLearning.rc -------------------------------------------------------------------------------- /MLDemos/aboutDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/aboutDialog.ui -------------------------------------------------------------------------------- /MLDemos/algorithmOptions.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/algorithmOptions.ui -------------------------------------------------------------------------------- /MLDemos/algorithmmanager-cluster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/algorithmmanager-cluster.cpp -------------------------------------------------------------------------------- /MLDemos/algorithmmanager-compare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/algorithmmanager-compare.cpp -------------------------------------------------------------------------------- /MLDemos/algorithmmanager-data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/algorithmmanager-data.cpp -------------------------------------------------------------------------------- /MLDemos/algorithmmanager-io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/algorithmmanager-io.cpp -------------------------------------------------------------------------------- /MLDemos/algorithmmanager-project.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/algorithmmanager-project.cpp -------------------------------------------------------------------------------- /MLDemos/algorithmmanager-query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/algorithmmanager-query.cpp -------------------------------------------------------------------------------- /MLDemos/algorithmmanager-regress.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/algorithmmanager-regress.cpp -------------------------------------------------------------------------------- /MLDemos/algorithmmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/algorithmmanager.cpp -------------------------------------------------------------------------------- /MLDemos/algorithmmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/algorithmmanager.h -------------------------------------------------------------------------------- /MLDemos/basewidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/basewidget.cpp -------------------------------------------------------------------------------- /MLDemos/basewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/basewidget.h -------------------------------------------------------------------------------- /MLDemos/compare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/compare.cpp -------------------------------------------------------------------------------- /MLDemos/compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/compare.h -------------------------------------------------------------------------------- /MLDemos/compare.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/compare.ui -------------------------------------------------------------------------------- /MLDemos/comparewidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/comparewidget.h -------------------------------------------------------------------------------- /MLDemos/datagenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/datagenerator.cpp -------------------------------------------------------------------------------- /MLDemos/datagenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/datagenerator.h -------------------------------------------------------------------------------- /MLDemos/dataseteditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/dataseteditor.cpp -------------------------------------------------------------------------------- /MLDemos/dataseteditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/dataseteditor.h -------------------------------------------------------------------------------- /MLDemos/dataseteditor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/dataseteditor.ui -------------------------------------------------------------------------------- /MLDemos/datasetgenerator.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/datasetgenerator.ui -------------------------------------------------------------------------------- /MLDemos/displayoptions.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/displayoptions.ui -------------------------------------------------------------------------------- /MLDemos/drawingTools.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/drawingTools.ui -------------------------------------------------------------------------------- /MLDemos/drawingToolsContext1.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/drawingToolsContext1.ui -------------------------------------------------------------------------------- /MLDemos/drawingToolsContext2.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/drawingToolsContext2.ui -------------------------------------------------------------------------------- /MLDemos/drawingToolsContext3.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/drawingToolsContext3.ui -------------------------------------------------------------------------------- /MLDemos/drawingToolsContext4.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/drawingToolsContext4.ui -------------------------------------------------------------------------------- /MLDemos/gridsearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/gridsearch.cpp -------------------------------------------------------------------------------- /MLDemos/gridsearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/gridsearch.h -------------------------------------------------------------------------------- /MLDemos/gridsearch.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/gridsearch.ui -------------------------------------------------------------------------------- /MLDemos/icons/_obstacle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/_obstacle.png -------------------------------------------------------------------------------- /MLDemos/icons/_trajectory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/_trajectory.png -------------------------------------------------------------------------------- /MLDemos/icons/adddata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/adddata.png -------------------------------------------------------------------------------- /MLDemos/icons/airbrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/airbrush.png -------------------------------------------------------------------------------- /MLDemos/icons/airbrush3D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/airbrush3D.png -------------------------------------------------------------------------------- /MLDemos/icons/algorithm_icons.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/algorithm_icons.pdf -------------------------------------------------------------------------------- /MLDemos/icons/algorithm_icons_DS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/algorithm_icons_DS.png -------------------------------------------------------------------------------- /MLDemos/icons/algorithm_icons_RL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/algorithm_icons_RL.png -------------------------------------------------------------------------------- /MLDemos/icons/algorithms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/algorithms.png -------------------------------------------------------------------------------- /MLDemos/icons/bigbrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/bigbrush.png -------------------------------------------------------------------------------- /MLDemos/icons/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/brush.png -------------------------------------------------------------------------------- /MLDemos/icons/classify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/classify.png -------------------------------------------------------------------------------- /MLDemos/icons/clearall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/clearall.png -------------------------------------------------------------------------------- /MLDemos/icons/cleardata.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/cleardata.png -------------------------------------------------------------------------------- /MLDemos/icons/clearmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/clearmodel.png -------------------------------------------------------------------------------- /MLDemos/icons/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/clock.png -------------------------------------------------------------------------------- /MLDemos/icons/cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/cluster.png -------------------------------------------------------------------------------- /MLDemos/icons/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/compare.png -------------------------------------------------------------------------------- /MLDemos/icons/dimless.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/dimless.png -------------------------------------------------------------------------------- /MLDemos/icons/dimplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/dimplus.png -------------------------------------------------------------------------------- /MLDemos/icons/display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/display.png -------------------------------------------------------------------------------- /MLDemos/icons/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/drag.png -------------------------------------------------------------------------------- /MLDemos/icons/draw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/draw.png -------------------------------------------------------------------------------- /MLDemos/icons/dynamical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/dynamical.png -------------------------------------------------------------------------------- /MLDemos/icons/ellipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/ellipse.png -------------------------------------------------------------------------------- /MLDemos/icons/erase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/erase.png -------------------------------------------------------------------------------- /MLDemos/icons/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/eraser.png -------------------------------------------------------------------------------- /MLDemos/icons/extrude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/extrude.png -------------------------------------------------------------------------------- /MLDemos/icons/gridsearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/gridsearch.png -------------------------------------------------------------------------------- /MLDemos/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/icon.png -------------------------------------------------------------------------------- /MLDemos/icons/icons.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/icons.pdf -------------------------------------------------------------------------------- /MLDemos/icons/icons_clearAll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/icons_clearAll.png -------------------------------------------------------------------------------- /MLDemos/icons/icons_clearData.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/icons_clearData.png -------------------------------------------------------------------------------- /MLDemos/icons/icons_clearModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/icons_clearModel.png -------------------------------------------------------------------------------- /MLDemos/icons/icons_compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/icons_compare.png -------------------------------------------------------------------------------- /MLDemos/icons/icons_gridsearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/icons_gridsearch.png -------------------------------------------------------------------------------- /MLDemos/icons/icons_saveToDisk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/icons_saveToDisk.png -------------------------------------------------------------------------------- /MLDemos/icons/icons_showGrid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/icons_showGrid.png -------------------------------------------------------------------------------- /MLDemos/icons/icons_showLegend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/icons_showLegend.png -------------------------------------------------------------------------------- /MLDemos/icons/icons_showModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/icons_showModel.png -------------------------------------------------------------------------------- /MLDemos/icons/icons_showOutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/icons_showOutput.png -------------------------------------------------------------------------------- /MLDemos/icons/icons_showSamples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/icons_showSamples.png -------------------------------------------------------------------------------- /MLDemos/icons/icons_showSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/icons_showSettings.png -------------------------------------------------------------------------------- /MLDemos/icons/icons_showStats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/icons_showStats.png -------------------------------------------------------------------------------- /MLDemos/icons/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/line.png -------------------------------------------------------------------------------- /MLDemos/icons/load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/load.png -------------------------------------------------------------------------------- /MLDemos/icons/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/maximize.png -------------------------------------------------------------------------------- /MLDemos/icons/move-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/move-class.png -------------------------------------------------------------------------------- /MLDemos/icons/move.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/move.png -------------------------------------------------------------------------------- /MLDemos/icons/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/new.png -------------------------------------------------------------------------------- /MLDemos/icons/obstacle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/obstacle.png -------------------------------------------------------------------------------- /MLDemos/icons/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/project.png -------------------------------------------------------------------------------- /MLDemos/icons/regress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/regress.png -------------------------------------------------------------------------------- /MLDemos/icons/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/save.png -------------------------------------------------------------------------------- /MLDemos/icons/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/screenshot.png -------------------------------------------------------------------------------- /MLDemos/icons/spinner-24x24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/spinner-24x24.gif -------------------------------------------------------------------------------- /MLDemos/icons/sprayclass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/sprayclass.png -------------------------------------------------------------------------------- /MLDemos/icons/stats copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/stats copy.png -------------------------------------------------------------------------------- /MLDemos/icons/stats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/stats.png -------------------------------------------------------------------------------- /MLDemos/icons/trajectory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/trajectory.png -------------------------------------------------------------------------------- /MLDemos/icons/zoom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/icons/zoom.png -------------------------------------------------------------------------------- /MLDemos/inputDimensions.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/inputDimensions.ui -------------------------------------------------------------------------------- /MLDemos/logo.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/logo.icns -------------------------------------------------------------------------------- /MLDemos/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/logo.png -------------------------------------------------------------------------------- /MLDemos/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/main.cpp -------------------------------------------------------------------------------- /MLDemos/manualSelection.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/manualSelection.ui -------------------------------------------------------------------------------- /MLDemos/mldemos-canvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/mldemos-canvas.cpp -------------------------------------------------------------------------------- /MLDemos/mldemos-data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/mldemos-data.cpp -------------------------------------------------------------------------------- /MLDemos/mldemos-draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/mldemos-draw.cpp -------------------------------------------------------------------------------- /MLDemos/mldemos-init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/mldemos-init.cpp -------------------------------------------------------------------------------- /MLDemos/mldemos-io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/mldemos-io.cpp -------------------------------------------------------------------------------- /MLDemos/mldemos-manualselection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/mldemos-manualselection.cpp -------------------------------------------------------------------------------- /MLDemos/mldemos-optionschanged.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/mldemos-optionschanged.cpp -------------------------------------------------------------------------------- /MLDemos/mldemos-showhide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/mldemos-showhide.cpp -------------------------------------------------------------------------------- /MLDemos/mldemos.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/mldemos.cpp -------------------------------------------------------------------------------- /MLDemos/mldemos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/mldemos.h -------------------------------------------------------------------------------- /MLDemos/mldemos.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/mldemos.qrc -------------------------------------------------------------------------------- /MLDemos/mldemos.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/mldemos.ui -------------------------------------------------------------------------------- /MLDemos/mlsaving.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/mlsaving.cpp -------------------------------------------------------------------------------- /MLDemos/mlstats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/mlstats.cpp -------------------------------------------------------------------------------- /MLDemos/optsClassify.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/optsClassify.ui -------------------------------------------------------------------------------- /MLDemos/optsCluster.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/optsCluster.ui -------------------------------------------------------------------------------- /MLDemos/optsCompare.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/optsCompare.ui -------------------------------------------------------------------------------- /MLDemos/optsDynamic.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/optsDynamic.ui -------------------------------------------------------------------------------- /MLDemos/optsMaximize.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/optsMaximize.ui -------------------------------------------------------------------------------- /MLDemos/optsProject.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/optsProject.ui -------------------------------------------------------------------------------- /MLDemos/optsRegress.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/optsRegress.ui -------------------------------------------------------------------------------- /MLDemos/optsReinforcement.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/optsReinforcement.ui -------------------------------------------------------------------------------- /MLDemos/pluginSelectionLists.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/pluginSelectionLists.h -------------------------------------------------------------------------------- /MLDemos/pluginmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/pluginmanager.cpp -------------------------------------------------------------------------------- /MLDemos/pluginmanager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/pluginmanager.h -------------------------------------------------------------------------------- /MLDemos/shaders/BasicLighting.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/shaders/BasicLighting.frag -------------------------------------------------------------------------------- /MLDemos/shaders/BasicLighting.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/shaders/BasicLighting.vert -------------------------------------------------------------------------------- /MLDemos/shaders/GaussianSphere.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/shaders/GaussianSphere.frag -------------------------------------------------------------------------------- /MLDemos/shaders/GaussianSphere.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/shaders/GaussianSphere.vert -------------------------------------------------------------------------------- /MLDemos/shaders/blurFBO.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/shaders/blurFBO.fsh -------------------------------------------------------------------------------- /MLDemos/shaders/blurFBO.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/shaders/blurFBO.vsh -------------------------------------------------------------------------------- /MLDemos/shaders/depthSamples.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/shaders/depthSamples.fsh -------------------------------------------------------------------------------- /MLDemos/shaders/depthSamples.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/shaders/depthSamples.vsh -------------------------------------------------------------------------------- /MLDemos/shaders/drawSamples copy.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/shaders/drawSamples copy.fsh -------------------------------------------------------------------------------- /MLDemos/shaders/drawSamples copy.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/shaders/drawSamples copy.vsh -------------------------------------------------------------------------------- /MLDemos/shaders/drawSamples.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/shaders/drawSamples.fsh -------------------------------------------------------------------------------- /MLDemos/shaders/drawSamples.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/shaders/drawSamples.vsh -------------------------------------------------------------------------------- /MLDemos/shaders/renderFBO.fsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/shaders/renderFBO.fsh -------------------------------------------------------------------------------- /MLDemos/shaders/renderFBO.vsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/shaders/renderFBO.vsh -------------------------------------------------------------------------------- /MLDemos/statisticsDialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/statisticsDialog.ui -------------------------------------------------------------------------------- /MLDemos/viewOptions.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/viewOptions.ui -------------------------------------------------------------------------------- /MLDemos/visualization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/visualization.cpp -------------------------------------------------------------------------------- /MLDemos/visualization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/visualization.h -------------------------------------------------------------------------------- /MLDemos/visualization.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos/visualization.ui -------------------------------------------------------------------------------- /MLDemos_variables.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLDemos_variables.pri -------------------------------------------------------------------------------- /MLScripting/MLScripting.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLScripting/MLScripting.pro -------------------------------------------------------------------------------- /MLScripting/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/MLScripting/main.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/README.md -------------------------------------------------------------------------------- /_3rdParty/3rdParty.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/3rdParty.pro -------------------------------------------------------------------------------- /_3rdParty/ANN/ANN.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/ANN.cpp -------------------------------------------------------------------------------- /_3rdParty/ANN/ANN.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/ANN.h -------------------------------------------------------------------------------- /_3rdParty/ANN/ANNperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/ANNperf.h -------------------------------------------------------------------------------- /_3rdParty/ANN/ANNx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/ANNx.h -------------------------------------------------------------------------------- /_3rdParty/ANN/bd_fix_rad_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/bd_fix_rad_search.cpp -------------------------------------------------------------------------------- /_3rdParty/ANN/bd_pr_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/bd_pr_search.cpp -------------------------------------------------------------------------------- /_3rdParty/ANN/bd_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/bd_search.cpp -------------------------------------------------------------------------------- /_3rdParty/ANN/bd_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/bd_tree.cpp -------------------------------------------------------------------------------- /_3rdParty/ANN/bd_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/bd_tree.h -------------------------------------------------------------------------------- /_3rdParty/ANN/brute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/brute.cpp -------------------------------------------------------------------------------- /_3rdParty/ANN/kd_dump.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/kd_dump.cpp -------------------------------------------------------------------------------- /_3rdParty/ANN/kd_fix_rad_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/kd_fix_rad_search.cpp -------------------------------------------------------------------------------- /_3rdParty/ANN/kd_fix_rad_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/kd_fix_rad_search.h -------------------------------------------------------------------------------- /_3rdParty/ANN/kd_pr_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/kd_pr_search.cpp -------------------------------------------------------------------------------- /_3rdParty/ANN/kd_pr_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/kd_pr_search.h -------------------------------------------------------------------------------- /_3rdParty/ANN/kd_search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/kd_search.cpp -------------------------------------------------------------------------------- /_3rdParty/ANN/kd_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/kd_search.h -------------------------------------------------------------------------------- /_3rdParty/ANN/kd_split.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/kd_split.cpp -------------------------------------------------------------------------------- /_3rdParty/ANN/kd_split.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/kd_split.h -------------------------------------------------------------------------------- /_3rdParty/ANN/kd_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/kd_tree.cpp -------------------------------------------------------------------------------- /_3rdParty/ANN/kd_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/kd_tree.h -------------------------------------------------------------------------------- /_3rdParty/ANN/kd_util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/kd_util.cpp -------------------------------------------------------------------------------- /_3rdParty/ANN/kd_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/kd_util.h -------------------------------------------------------------------------------- /_3rdParty/ANN/perf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/perf.cpp -------------------------------------------------------------------------------- /_3rdParty/ANN/pr_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/pr_queue.h -------------------------------------------------------------------------------- /_3rdParty/ANN/pr_queue_k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/ANN/pr_queue_k.h -------------------------------------------------------------------------------- /_3rdParty/DBScan/DBSCAN.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/DBScan/DBSCAN.hpp -------------------------------------------------------------------------------- /_3rdParty/DBScan/Meanshift.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/DBScan/Meanshift.hpp -------------------------------------------------------------------------------- /_3rdParty/DBScan/author.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/DBScan/author.txt -------------------------------------------------------------------------------- /_3rdParty/DBScan/kmedoids.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/DBScan/kmedoids.hpp -------------------------------------------------------------------------------- /_3rdParty/DBScan/meanshift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/DBScan/meanshift.cpp -------------------------------------------------------------------------------- /_3rdParty/DBScan/xmeans.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/DBScan/xmeans.hpp -------------------------------------------------------------------------------- /_3rdParty/GHSOM.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/GHSOM.tgz -------------------------------------------------------------------------------- /_3rdParty/HMMlib/float_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/HMMlib/float_traits.hpp -------------------------------------------------------------------------------- /_3rdParty/HMMlib/hmm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/HMMlib/hmm.hpp -------------------------------------------------------------------------------- /_3rdParty/HMMlib/hmm_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/HMMlib/hmm_matrix.hpp -------------------------------------------------------------------------------- /_3rdParty/HMMlib/hmm_matrix_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/HMMlib/hmm_matrix_test.cpp -------------------------------------------------------------------------------- /_3rdParty/HMMlib/hmm_table.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/HMMlib/hmm_table.hpp -------------------------------------------------------------------------------- /_3rdParty/HMMlib/hmm_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/HMMlib/hmm_test.cpp -------------------------------------------------------------------------------- /_3rdParty/HMMlib/hmm_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/HMMlib/hmm_vector.hpp -------------------------------------------------------------------------------- /_3rdParty/HMMlib/hmm_vector_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/HMMlib/hmm_vector_test.cpp -------------------------------------------------------------------------------- /_3rdParty/HMMlib/operator_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/HMMlib/operator_traits.hpp -------------------------------------------------------------------------------- /_3rdParty/JnS/JnS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/JnS/JnS.cpp -------------------------------------------------------------------------------- /_3rdParty/JnS/JnS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/JnS/JnS.h -------------------------------------------------------------------------------- /_3rdParty/JnS/Matutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/JnS/Matutil.cpp -------------------------------------------------------------------------------- /_3rdParty/JnS/Matutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/JnS/Matutil.h -------------------------------------------------------------------------------- /_3rdParty/LAMP_HMM/discreteObsProb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LAMP_HMM/discreteObsProb.h -------------------------------------------------------------------------------- /_3rdParty/LAMP_HMM/gammaProb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LAMP_HMM/gammaProb.cpp -------------------------------------------------------------------------------- /_3rdParty/LAMP_HMM/gammaProb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LAMP_HMM/gammaProb.h -------------------------------------------------------------------------------- /_3rdParty/LAMP_HMM/gaussianObsProb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LAMP_HMM/gaussianObsProb.h -------------------------------------------------------------------------------- /_3rdParty/LAMP_HMM/hmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LAMP_HMM/hmm.cpp -------------------------------------------------------------------------------- /_3rdParty/LAMP_HMM/hmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LAMP_HMM/hmm.h -------------------------------------------------------------------------------- /_3rdParty/LAMP_HMM/hmmFind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LAMP_HMM/hmmFind.cpp -------------------------------------------------------------------------------- /_3rdParty/LAMP_HMM/initStateProb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LAMP_HMM/initStateProb.cpp -------------------------------------------------------------------------------- /_3rdParty/LAMP_HMM/initStateProb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LAMP_HMM/initStateProb.h -------------------------------------------------------------------------------- /_3rdParty/LAMP_HMM/obs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LAMP_HMM/obs.h -------------------------------------------------------------------------------- /_3rdParty/LAMP_HMM/obsProb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LAMP_HMM/obsProb.h -------------------------------------------------------------------------------- /_3rdParty/LAMP_HMM/obsSeq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LAMP_HMM/obsSeq.cpp -------------------------------------------------------------------------------- /_3rdParty/LAMP_HMM/obsSeq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LAMP_HMM/obsSeq.h -------------------------------------------------------------------------------- /_3rdParty/LAMP_HMM/plainStateTrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LAMP_HMM/plainStateTrans.h -------------------------------------------------------------------------------- /_3rdParty/LAMP_HMM/stateTrans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LAMP_HMM/stateTrans.h -------------------------------------------------------------------------------- /_3rdParty/LAMP_HMM/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LAMP_HMM/utils.cpp -------------------------------------------------------------------------------- /_3rdParty/LAMP_HMM/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LAMP_HMM/utils.h -------------------------------------------------------------------------------- /_3rdParty/LAMP_HMM/vectorObsProb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LAMP_HMM/vectorObsProb.cpp -------------------------------------------------------------------------------- /_3rdParty/LAMP_HMM/vectorObsProb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LAMP_HMM/vectorObsProb.h -------------------------------------------------------------------------------- /_3rdParty/LICENSE-ann_1.1.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LICENSE-ann_1.1.2.txt -------------------------------------------------------------------------------- /_3rdParty/LICENSE-dlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LICENSE-dlib.txt -------------------------------------------------------------------------------- /_3rdParty/LICENSE-libsvm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/LICENSE-libsvm.txt -------------------------------------------------------------------------------- /_3rdParty/MathLib/Differentiator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/Differentiator.cpp -------------------------------------------------------------------------------- /_3rdParty/MathLib/Differentiator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/Differentiator.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/GradientDescent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/GradientDescent.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/IKGroupSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/IKGroupSolver.cpp -------------------------------------------------------------------------------- /_3rdParty/MathLib/IKGroupSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/IKGroupSolver.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/IKSubSolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/IKSubSolver.cpp -------------------------------------------------------------------------------- /_3rdParty/MathLib/IKSubSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/IKSubSolver.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/Macros.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/Macros.cpp -------------------------------------------------------------------------------- /_3rdParty/MathLib/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/Macros.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/MathLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/MathLib.cpp -------------------------------------------------------------------------------- /_3rdParty/MathLib/MathLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/MathLib.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/MathLibCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/MathLibCommon.cpp -------------------------------------------------------------------------------- /_3rdParty/MathLib/MathLibCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/MathLibCommon.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/Matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/Matrix.cpp -------------------------------------------------------------------------------- /_3rdParty/MathLib/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/Matrix.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/Matrix3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/Matrix3.cpp -------------------------------------------------------------------------------- /_3rdParty/MathLib/Matrix3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/Matrix3.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/Matrix4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/Matrix4.cpp -------------------------------------------------------------------------------- /_3rdParty/MathLib/Matrix4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/Matrix4.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/ReferenceFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/ReferenceFrame.cpp -------------------------------------------------------------------------------- /_3rdParty/MathLib/ReferenceFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/ReferenceFrame.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/Regression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/Regression.cpp -------------------------------------------------------------------------------- /_3rdParty/MathLib/Regression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/Regression.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/SpatialForce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/SpatialForce.cpp -------------------------------------------------------------------------------- /_3rdParty/MathLib/SpatialForce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/SpatialForce.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/SpatialFrame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/SpatialFrame.cpp -------------------------------------------------------------------------------- /_3rdParty/MathLib/SpatialFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/SpatialFrame.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/SpatialInertia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/SpatialInertia.cpp -------------------------------------------------------------------------------- /_3rdParty/MathLib/SpatialInertia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/SpatialInertia.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/SpatialMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/SpatialMatrix.cpp -------------------------------------------------------------------------------- /_3rdParty/MathLib/SpatialMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/SpatialMatrix.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/SpatialVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/SpatialVector.cpp -------------------------------------------------------------------------------- /_3rdParty/MathLib/SpatialVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/SpatialVector.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/SpatialVelocity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/SpatialVelocity.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/TMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/TMatrix.cpp -------------------------------------------------------------------------------- /_3rdParty/MathLib/TMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/TMatrix.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/TVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/TVector.cpp -------------------------------------------------------------------------------- /_3rdParty/MathLib/TVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/TVector.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/Vector.cpp -------------------------------------------------------------------------------- /_3rdParty/MathLib/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/Vector.h -------------------------------------------------------------------------------- /_3rdParty/MathLib/Vector3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/Vector3.cpp -------------------------------------------------------------------------------- /_3rdParty/MathLib/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/MathLib/Vector3.h -------------------------------------------------------------------------------- /_3rdParty/PSO/memoryAllocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/PSO/memoryAllocation.cpp -------------------------------------------------------------------------------- /_3rdParty/PSO/memoryAllocation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/PSO/memoryAllocation.h -------------------------------------------------------------------------------- /_3rdParty/PSO/optimizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/PSO/optimizer.cpp -------------------------------------------------------------------------------- /_3rdParty/PSO/optimizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/PSO/optimizer.h -------------------------------------------------------------------------------- /_3rdParty/PSO/pso.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/PSO/pso.cpp -------------------------------------------------------------------------------- /_3rdParty/PSO/pso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/PSO/pso.h -------------------------------------------------------------------------------- /_3rdParty/_Eigen_remove/Array: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_Eigen_remove/Array -------------------------------------------------------------------------------- /_3rdParty/_Eigen_remove/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_Eigen_remove/Cholesky -------------------------------------------------------------------------------- /_3rdParty/_Eigen_remove/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_Eigen_remove/Core -------------------------------------------------------------------------------- /_3rdParty/_Eigen_remove/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_Eigen_remove/Dense -------------------------------------------------------------------------------- /_3rdParty/_Eigen_remove/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_Eigen_remove/Eigen -------------------------------------------------------------------------------- /_3rdParty/_Eigen_remove/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_Eigen_remove/Eigenvalues -------------------------------------------------------------------------------- /_3rdParty/_Eigen_remove/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_Eigen_remove/Geometry -------------------------------------------------------------------------------- /_3rdParty/_Eigen_remove/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_Eigen_remove/Householder -------------------------------------------------------------------------------- /_3rdParty/_Eigen_remove/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_Eigen_remove/Jacobi -------------------------------------------------------------------------------- /_3rdParty/_Eigen_remove/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_Eigen_remove/LU -------------------------------------------------------------------------------- /_3rdParty/_Eigen_remove/LeastSquares: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_Eigen_remove/LeastSquares -------------------------------------------------------------------------------- /_3rdParty/_Eigen_remove/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_Eigen_remove/QR -------------------------------------------------------------------------------- /_3rdParty/_Eigen_remove/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_Eigen_remove/SVD -------------------------------------------------------------------------------- /_3rdParty/_Eigen_remove/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_Eigen_remove/Sparse -------------------------------------------------------------------------------- /_3rdParty/_Eigen_remove/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_Eigen_remove/StdDeque -------------------------------------------------------------------------------- /_3rdParty/_Eigen_remove/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_Eigen_remove/StdList -------------------------------------------------------------------------------- /_3rdParty/_Eigen_remove/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_Eigen_remove/StdVector -------------------------------------------------------------------------------- /_3rdParty/_Eigen_remove/src/Sparse/SparseAssign.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/blas/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/blas/ChangeLog -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/blas/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/blas/TODO -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/build.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/build.h -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/cblas/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/cblas/TODO -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/cblas/cblas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/cblas/cblas.h -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/cblas/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/cblas/tests.h -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/complex/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/complex/TODO -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/config.h -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/err/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/err/ChangeLog -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/err/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/err/TODO -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/gsl_errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/gsl_errno.h -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/gsl_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/gsl_inline.h -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/gsl_machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/gsl_machine.h -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/gsl_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/gsl_math.h -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/gsl_matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/gsl_matrix.h -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/gsl_minmax.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/gsl_minmax.h -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/gsl_mode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/gsl_mode.h -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/gsl_nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/gsl_nan.h -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/gsl_pow_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/gsl_pow_int.h -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/gsl_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/gsl_types.h -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/gsl_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/gsl_vector.h -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/linalg/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/linalg/TODO -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/matrix/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/matrix/TODO -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/matrix/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/matrix/view.h -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/multifit/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/multifit/TODO -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/sort/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/sort/ChangeLog -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/sort/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/sort/TODO -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/sys/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/sys/ChangeLog -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/sys/gsl_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/sys/gsl_sys.h -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/templates_on.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/templates_on.h -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/test/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/test/ChangeLog -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/vector/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/vector/TODO -------------------------------------------------------------------------------- /_3rdParty/_gsl_remove/vector/view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/_gsl_remove/vector/view.h -------------------------------------------------------------------------------- /_3rdParty/dlib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/CMakeLists.txt -------------------------------------------------------------------------------- /_3rdParty/dlib/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/LICENSE.txt -------------------------------------------------------------------------------- /_3rdParty/dlib/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/README.txt -------------------------------------------------------------------------------- /_3rdParty/dlib/algs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/algs.h -------------------------------------------------------------------------------- /_3rdParty/dlib/all/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/all/source.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/all_console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/all_console.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/all_gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/all_gui.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/any.h -------------------------------------------------------------------------------- /_3rdParty/dlib/any/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/any/any.h -------------------------------------------------------------------------------- /_3rdParty/dlib/any/any_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/any/any_abstract.h -------------------------------------------------------------------------------- /_3rdParty/dlib/any/any_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/any/any_function.h -------------------------------------------------------------------------------- /_3rdParty/dlib/any/any_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/any/any_trainer.h -------------------------------------------------------------------------------- /_3rdParty/dlib/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/array.h -------------------------------------------------------------------------------- /_3rdParty/dlib/array/array_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/array/array_kernel.h -------------------------------------------------------------------------------- /_3rdParty/dlib/array2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/array2d.h -------------------------------------------------------------------------------- /_3rdParty/dlib/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/assert.h -------------------------------------------------------------------------------- /_3rdParty/dlib/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/base64.h -------------------------------------------------------------------------------- /_3rdParty/dlib/bayes_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/bayes_utils.h -------------------------------------------------------------------------------- /_3rdParty/dlib/bigint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/bigint.h -------------------------------------------------------------------------------- /_3rdParty/dlib/binary_search_tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/binary_search_tree.h -------------------------------------------------------------------------------- /_3rdParty/dlib/bit_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/bit_stream.h -------------------------------------------------------------------------------- /_3rdParty/dlib/bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/bridge.h -------------------------------------------------------------------------------- /_3rdParty/dlib/bridge/bridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/bridge/bridge.h -------------------------------------------------------------------------------- /_3rdParty/dlib/byte_orderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/byte_orderer.h -------------------------------------------------------------------------------- /_3rdParty/dlib/cassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/cassert -------------------------------------------------------------------------------- /_3rdParty/dlib/cmake_find_blas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/cmake_find_blas.txt -------------------------------------------------------------------------------- /_3rdParty/dlib/cmd_line_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/cmd_line_parser.h -------------------------------------------------------------------------------- /_3rdParty/dlib/compress_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/compress_stream.h -------------------------------------------------------------------------------- /_3rdParty/dlib/conditioning_class.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/conditioning_class.h -------------------------------------------------------------------------------- /_3rdParty/dlib/config_reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/config_reader.h -------------------------------------------------------------------------------- /_3rdParty/dlib/cpp_pretty_printer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/cpp_pretty_printer.h -------------------------------------------------------------------------------- /_3rdParty/dlib/cpp_tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/cpp_tokenizer.h -------------------------------------------------------------------------------- /_3rdParty/dlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/crc32.h -------------------------------------------------------------------------------- /_3rdParty/dlib/cstring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/cstring -------------------------------------------------------------------------------- /_3rdParty/dlib/data_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/data_io.h -------------------------------------------------------------------------------- /_3rdParty/dlib/data_io/libsvm_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/data_io/libsvm_io.h -------------------------------------------------------------------------------- /_3rdParty/dlib/dir_nav.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/dir_nav.h -------------------------------------------------------------------------------- /_3rdParty/dlib/dir_nav/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/dir_nav/posix.h -------------------------------------------------------------------------------- /_3rdParty/dlib/dir_nav/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/dir_nav/windows.h -------------------------------------------------------------------------------- /_3rdParty/dlib/directed_graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/directed_graph.h -------------------------------------------------------------------------------- /_3rdParty/dlib/disjoint_subsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/disjoint_subsets.h -------------------------------------------------------------------------------- /_3rdParty/dlib/enable_if.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/enable_if.h -------------------------------------------------------------------------------- /_3rdParty/dlib/entropy_decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/entropy_decoder.h -------------------------------------------------------------------------------- /_3rdParty/dlib/entropy_encoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/entropy_encoder.h -------------------------------------------------------------------------------- /_3rdParty/dlib/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/error.h -------------------------------------------------------------------------------- /_3rdParty/dlib/filtering.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/filtering.h -------------------------------------------------------------------------------- /_3rdParty/dlib/fstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/fstream -------------------------------------------------------------------------------- /_3rdParty/dlib/general_hash/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/general_hash/hash.h -------------------------------------------------------------------------------- /_3rdParty/dlib/geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/geometry.h -------------------------------------------------------------------------------- /_3rdParty/dlib/geometry/rectangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/geometry/rectangle.h -------------------------------------------------------------------------------- /_3rdParty/dlib/geometry/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/geometry/vector.h -------------------------------------------------------------------------------- /_3rdParty/dlib/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/graph.h -------------------------------------------------------------------------------- /_3rdParty/dlib/graph_cuts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/graph_cuts.h -------------------------------------------------------------------------------- /_3rdParty/dlib/graph_cuts/min_cut.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/graph_cuts/min_cut.h -------------------------------------------------------------------------------- /_3rdParty/dlib/graph_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/graph_utils.h -------------------------------------------------------------------------------- /_3rdParty/dlib/gui_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/gui_core.h -------------------------------------------------------------------------------- /_3rdParty/dlib/gui_core/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/gui_core/windows.h -------------------------------------------------------------------------------- /_3rdParty/dlib/gui_core/xlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/gui_core/xlib.h -------------------------------------------------------------------------------- /_3rdParty/dlib/gui_widgets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/gui_widgets.h -------------------------------------------------------------------------------- /_3rdParty/dlib/gui_widgets/fonts.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/gui_widgets/fonts.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/gui_widgets/fonts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/gui_widgets/fonts.h -------------------------------------------------------------------------------- /_3rdParty/dlib/gui_widgets/style.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/gui_widgets/style.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/gui_widgets/style.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/gui_widgets/style.h -------------------------------------------------------------------------------- /_3rdParty/dlib/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/hash.h -------------------------------------------------------------------------------- /_3rdParty/dlib/hash_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/hash_map.h -------------------------------------------------------------------------------- /_3rdParty/dlib/hash_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/hash_set.h -------------------------------------------------------------------------------- /_3rdParty/dlib/hash_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/hash_table.h -------------------------------------------------------------------------------- /_3rdParty/dlib/image_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/image_io.h -------------------------------------------------------------------------------- /_3rdParty/dlib/image_keypoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/image_keypoint.h -------------------------------------------------------------------------------- /_3rdParty/dlib/image_processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/image_processing.h -------------------------------------------------------------------------------- /_3rdParty/dlib/image_transforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/image_transforms.h -------------------------------------------------------------------------------- /_3rdParty/dlib/iomanip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/iomanip -------------------------------------------------------------------------------- /_3rdParty/dlib/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/iosfwd -------------------------------------------------------------------------------- /_3rdParty/dlib/iostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/iostream -------------------------------------------------------------------------------- /_3rdParty/dlib/is_kind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/is_kind.h -------------------------------------------------------------------------------- /_3rdParty/dlib/istream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/istream -------------------------------------------------------------------------------- /_3rdParty/dlib/linker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/linker.h -------------------------------------------------------------------------------- /_3rdParty/dlib/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/locale -------------------------------------------------------------------------------- /_3rdParty/dlib/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/logger.h -------------------------------------------------------------------------------- /_3rdParty/dlib/lsh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/lsh.h -------------------------------------------------------------------------------- /_3rdParty/dlib/lz77_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/lz77_buffer.h -------------------------------------------------------------------------------- /_3rdParty/dlib/lzp_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/lzp_buffer.h -------------------------------------------------------------------------------- /_3rdParty/dlib/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/map.h -------------------------------------------------------------------------------- /_3rdParty/dlib/map/map_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/map/map_kernel_1.h -------------------------------------------------------------------------------- /_3rdParty/dlib/map/map_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/map/map_kernel_c.h -------------------------------------------------------------------------------- /_3rdParty/dlib/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/matrix.h -------------------------------------------------------------------------------- /_3rdParty/dlib/matrix/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/matrix/matrix.h -------------------------------------------------------------------------------- /_3rdParty/dlib/matrix/matrix_la.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/matrix/matrix_la.h -------------------------------------------------------------------------------- /_3rdParty/dlib/matrix/matrix_lu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/matrix/matrix_lu.h -------------------------------------------------------------------------------- /_3rdParty/dlib/matrix/matrix_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/matrix/matrix_op.h -------------------------------------------------------------------------------- /_3rdParty/dlib/matrix/matrix_qr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/matrix/matrix_qr.h -------------------------------------------------------------------------------- /_3rdParty/dlib/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/md5.h -------------------------------------------------------------------------------- /_3rdParty/dlib/md5/md5_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/md5/md5_kernel_1.h -------------------------------------------------------------------------------- /_3rdParty/dlib/memory_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/memory_manager.h -------------------------------------------------------------------------------- /_3rdParty/dlib/misc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/misc_api.h -------------------------------------------------------------------------------- /_3rdParty/dlib/misc_api/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/misc_api/posix.h -------------------------------------------------------------------------------- /_3rdParty/dlib/misc_api/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/misc_api/windows.h -------------------------------------------------------------------------------- /_3rdParty/dlib/mlp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/mlp.h -------------------------------------------------------------------------------- /_3rdParty/dlib/mlp/mlp_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/mlp/mlp_kernel_1.h -------------------------------------------------------------------------------- /_3rdParty/dlib/mlp/mlp_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/mlp/mlp_kernel_c.h -------------------------------------------------------------------------------- /_3rdParty/dlib/noncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/noncopyable.h -------------------------------------------------------------------------------- /_3rdParty/dlib/opencv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/opencv.h -------------------------------------------------------------------------------- /_3rdParty/dlib/opencv/cv_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/opencv/cv_image.h -------------------------------------------------------------------------------- /_3rdParty/dlib/optimization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/optimization.h -------------------------------------------------------------------------------- /_3rdParty/dlib/ostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/ostream -------------------------------------------------------------------------------- /_3rdParty/dlib/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/pipe.h -------------------------------------------------------------------------------- /_3rdParty/dlib/pixel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/pixel.h -------------------------------------------------------------------------------- /_3rdParty/dlib/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/platform.h -------------------------------------------------------------------------------- /_3rdParty/dlib/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/queue.h -------------------------------------------------------------------------------- /_3rdParty/dlib/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/rand.h -------------------------------------------------------------------------------- /_3rdParty/dlib/ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/ref.h -------------------------------------------------------------------------------- /_3rdParty/dlib/revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/revision.h -------------------------------------------------------------------------------- /_3rdParty/dlib/sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/sequence.h -------------------------------------------------------------------------------- /_3rdParty/dlib/serialize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/serialize.h -------------------------------------------------------------------------------- /_3rdParty/dlib/server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/server.h -------------------------------------------------------------------------------- /_3rdParty/dlib/set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/set.h -------------------------------------------------------------------------------- /_3rdParty/dlib/set/set_kernel_1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/set/set_kernel_1.h -------------------------------------------------------------------------------- /_3rdParty/dlib/set/set_kernel_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/set/set_kernel_c.h -------------------------------------------------------------------------------- /_3rdParty/dlib/set_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/set_utils.h -------------------------------------------------------------------------------- /_3rdParty/dlib/sliding_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/sliding_buffer.h -------------------------------------------------------------------------------- /_3rdParty/dlib/smart_pointers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/smart_pointers.h -------------------------------------------------------------------------------- /_3rdParty/dlib/sockets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/sockets.h -------------------------------------------------------------------------------- /_3rdParty/dlib/sockets/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/sockets/posix.h -------------------------------------------------------------------------------- /_3rdParty/dlib/sockets/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/sockets/windows.h -------------------------------------------------------------------------------- /_3rdParty/dlib/sockstreambuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/sockstreambuf.h -------------------------------------------------------------------------------- /_3rdParty/dlib/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/sort.h -------------------------------------------------------------------------------- /_3rdParty/dlib/sparse_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/sparse_vector.h -------------------------------------------------------------------------------- /_3rdParty/dlib/sqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/sqlite.h -------------------------------------------------------------------------------- /_3rdParty/dlib/sqlite/sqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/sqlite/sqlite.h -------------------------------------------------------------------------------- /_3rdParty/dlib/sstream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/sstream -------------------------------------------------------------------------------- /_3rdParty/dlib/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/stack.h -------------------------------------------------------------------------------- /_3rdParty/dlib/stack_trace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/stack_trace.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/stack_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/stack_trace.h -------------------------------------------------------------------------------- /_3rdParty/dlib/static_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/static_map.h -------------------------------------------------------------------------------- /_3rdParty/dlib/static_set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/static_set.h -------------------------------------------------------------------------------- /_3rdParty/dlib/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/statistics.h -------------------------------------------------------------------------------- /_3rdParty/dlib/statistics/dpca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/statistics/dpca.h -------------------------------------------------------------------------------- /_3rdParty/dlib/std_allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/std_allocator.h -------------------------------------------------------------------------------- /_3rdParty/dlib/stl_checked.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/stl_checked.h -------------------------------------------------------------------------------- /_3rdParty/dlib/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/string.h -------------------------------------------------------------------------------- /_3rdParty/dlib/string/cassert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/string/cassert -------------------------------------------------------------------------------- /_3rdParty/dlib/string/iomanip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/string/iomanip -------------------------------------------------------------------------------- /_3rdParty/dlib/string/iosfwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/string/iosfwd -------------------------------------------------------------------------------- /_3rdParty/dlib/string/iostream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/string/iostream -------------------------------------------------------------------------------- /_3rdParty/dlib/string/locale: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/string/locale -------------------------------------------------------------------------------- /_3rdParty/dlib/string/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/string/string.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/function.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/kcentroid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/kcentroid.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/kernel.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/kkmeans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/kkmeans.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/krls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/krls.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/krr_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/krr_trainer.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/null_df.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/null_df.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/null_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/null_trainer.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/pegasos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/pegasos.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/rbf_network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/rbf_network.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/reduced.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/reduced.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/rls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/rls.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/rls_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/rls_abstract.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/roc_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/roc_trainer.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/rr_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/rr_trainer.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/rvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/rvm.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/rvm_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/rvm_abstract.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/svm.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/svm_abstract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/svm_abstract.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/svm_threaded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/svm_threaded.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm/svr_trainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm/svr_trainer.h -------------------------------------------------------------------------------- /_3rdParty/dlib/svm_threaded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/svm_threaded.h -------------------------------------------------------------------------------- /_3rdParty/dlib/sync_extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/sync_extension.h -------------------------------------------------------------------------------- /_3rdParty/dlib/test/any.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/any.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/array.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/array2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/array2d.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/base64.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/bigint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/bigint.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/bridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/bridge.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/crc32.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/data_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/data_io.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/example.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/filtering.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/filtering.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/geometry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/geometry.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/graph.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/gui/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/gui/main.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/hash.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/hash_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/hash_map.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/hash_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/hash_set.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/hog_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/hog_image.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/image.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/kcentroid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/kcentroid.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/kmeans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/kmeans.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/main.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/map.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/matrix.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/matrix2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/matrix2.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/matrix3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/matrix3.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/matrix4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/matrix4.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/matrix_lu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/matrix_lu.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/matrix_qr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/matrix_qr.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/md5.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/oca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/oca.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/pipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/pipe.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/pixel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/pixel.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/queue.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/rand.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/rls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/rls.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/sammon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/sammon.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/sequence.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/serialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/serialize.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/set.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/sldf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/sldf.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/sockets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/sockets.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/sockets2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/sockets2.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/stack.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/string.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/string.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/svm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/svm.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/tester.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/tester.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/tester.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/tester.h -------------------------------------------------------------------------------- /_3rdParty/dlib/test/threads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/threads.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/timer.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/tokenizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/tokenizer.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/test/tuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/test/tuple.cpp -------------------------------------------------------------------------------- /_3rdParty/dlib/threads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/threads.h -------------------------------------------------------------------------------- /_3rdParty/dlib/threads/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/threads/posix.h -------------------------------------------------------------------------------- /_3rdParty/dlib/threads/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/threads/windows.h -------------------------------------------------------------------------------- /_3rdParty/dlib/time_this.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/time_this.h -------------------------------------------------------------------------------- /_3rdParty/dlib/timeout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/timeout.h -------------------------------------------------------------------------------- /_3rdParty/dlib/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/timer.h -------------------------------------------------------------------------------- /_3rdParty/dlib/timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/timing.h -------------------------------------------------------------------------------- /_3rdParty/dlib/tokenizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/tokenizer.h -------------------------------------------------------------------------------- /_3rdParty/dlib/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/tuple.h -------------------------------------------------------------------------------- /_3rdParty/dlib/tuple/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/tuple/tuple.h -------------------------------------------------------------------------------- /_3rdParty/dlib/type_safe_union.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/type_safe_union.h -------------------------------------------------------------------------------- /_3rdParty/dlib/uintn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/uintn.h -------------------------------------------------------------------------------- /_3rdParty/dlib/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/unicode.h -------------------------------------------------------------------------------- /_3rdParty/dlib/unicode/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/unicode/unicode.h -------------------------------------------------------------------------------- /_3rdParty/dlib/unordered_pair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/unordered_pair.h -------------------------------------------------------------------------------- /_3rdParty/dlib/windows_magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/windows_magic.h -------------------------------------------------------------------------------- /_3rdParty/dlib/xml_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/dlib/xml_parser.h -------------------------------------------------------------------------------- /_3rdParty/fgmm/em.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/fgmm/em.cpp -------------------------------------------------------------------------------- /_3rdParty/fgmm/em.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/fgmm/em.h -------------------------------------------------------------------------------- /_3rdParty/fgmm/fgmm++.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/fgmm/fgmm++.hpp -------------------------------------------------------------------------------- /_3rdParty/fgmm/fgmm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/fgmm/fgmm.h -------------------------------------------------------------------------------- /_3rdParty/fgmm/gaussian.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/fgmm/gaussian.cpp -------------------------------------------------------------------------------- /_3rdParty/fgmm/gaussian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/fgmm/gaussian.h -------------------------------------------------------------------------------- /_3rdParty/fgmm/gmm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/fgmm/gmm.cpp -------------------------------------------------------------------------------- /_3rdParty/fgmm/gmmregression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/fgmm/gmmregression.cpp -------------------------------------------------------------------------------- /_3rdParty/fgmm/regression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/fgmm/regression.h -------------------------------------------------------------------------------- /_3rdParty/fgmm/smat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/fgmm/smat.cpp -------------------------------------------------------------------------------- /_3rdParty/fgmm/smat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/fgmm/smat.h -------------------------------------------------------------------------------- /_3rdParty/fgmm/update.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/fgmm/update.cpp -------------------------------------------------------------------------------- /_3rdParty/jacgrid/atom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/jacgrid/atom.cpp -------------------------------------------------------------------------------- /_3rdParty/jacgrid/atom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/jacgrid/atom.h -------------------------------------------------------------------------------- /_3rdParty/jacgrid/cell_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/jacgrid/cell_table.h -------------------------------------------------------------------------------- /_3rdParty/jacgrid/grid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/jacgrid/grid.cpp -------------------------------------------------------------------------------- /_3rdParty/jacgrid/grid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/jacgrid/grid.h -------------------------------------------------------------------------------- /_3rdParty/jacgrid/isosurface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/jacgrid/isosurface.cpp -------------------------------------------------------------------------------- /_3rdParty/jacgrid/jacgrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/jacgrid/jacgrid.h -------------------------------------------------------------------------------- /_3rdParty/jacgrid/jacgrid.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/jacgrid/jacgrid.pro -------------------------------------------------------------------------------- /_3rdParty/jacgrid/linalg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/jacgrid/linalg.h -------------------------------------------------------------------------------- /_3rdParty/jacgrid/plane.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/jacgrid/plane.cpp -------------------------------------------------------------------------------- /_3rdParty/jacgrid/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/jacgrid/plane.h -------------------------------------------------------------------------------- /_3rdParty/jacgrid/surface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/jacgrid/surface.cpp -------------------------------------------------------------------------------- /_3rdParty/jacgrid/surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/jacgrid/surface.h -------------------------------------------------------------------------------- /_3rdParty/liblinear/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/liblinear/blas.h -------------------------------------------------------------------------------- /_3rdParty/liblinear/blasp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/liblinear/blasp.h -------------------------------------------------------------------------------- /_3rdParty/liblinear/daxpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/liblinear/daxpy.c -------------------------------------------------------------------------------- /_3rdParty/liblinear/ddot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/liblinear/ddot.c -------------------------------------------------------------------------------- /_3rdParty/liblinear/dnrm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/liblinear/dnrm2.c -------------------------------------------------------------------------------- /_3rdParty/liblinear/dscal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/liblinear/dscal.c -------------------------------------------------------------------------------- /_3rdParty/liblinear/linear.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/liblinear/linear.cpp -------------------------------------------------------------------------------- /_3rdParty/liblinear/linear.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/liblinear/linear.h -------------------------------------------------------------------------------- /_3rdParty/liblinear/predict.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/liblinear/predict.c -------------------------------------------------------------------------------- /_3rdParty/liblinear/train.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/liblinear/train.c -------------------------------------------------------------------------------- /_3rdParty/liblinear/tron.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/liblinear/tron.cpp -------------------------------------------------------------------------------- /_3rdParty/liblinear/tron.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/liblinear/tron.h -------------------------------------------------------------------------------- /_3rdParty/lwpr/lwpr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/lwpr/lwpr.c -------------------------------------------------------------------------------- /_3rdParty/lwpr/lwpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/lwpr/lwpr.h -------------------------------------------------------------------------------- /_3rdParty/lwpr/lwpr.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/lwpr/lwpr.hh -------------------------------------------------------------------------------- /_3rdParty/lwpr/lwpr_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/lwpr/lwpr_aux.c -------------------------------------------------------------------------------- /_3rdParty/lwpr/lwpr_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/lwpr/lwpr_aux.h -------------------------------------------------------------------------------- /_3rdParty/lwpr/lwpr_binio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/lwpr/lwpr_binio.c -------------------------------------------------------------------------------- /_3rdParty/lwpr/lwpr_binio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/lwpr/lwpr_binio.h -------------------------------------------------------------------------------- /_3rdParty/lwpr/lwpr_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/lwpr/lwpr_config.h -------------------------------------------------------------------------------- /_3rdParty/lwpr/lwpr_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/lwpr/lwpr_config.h.in -------------------------------------------------------------------------------- /_3rdParty/lwpr/lwpr_config_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/lwpr/lwpr_config_def.h -------------------------------------------------------------------------------- /_3rdParty/lwpr/lwpr_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/lwpr/lwpr_math.c -------------------------------------------------------------------------------- /_3rdParty/lwpr/lwpr_math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/lwpr/lwpr_math.h -------------------------------------------------------------------------------- /_3rdParty/lwpr/lwpr_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/lwpr/lwpr_mem.c -------------------------------------------------------------------------------- /_3rdParty/lwpr/lwpr_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/lwpr/lwpr_mem.h -------------------------------------------------------------------------------- /_3rdParty/lwpr/lwpr_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/lwpr/lwpr_xml.c -------------------------------------------------------------------------------- /_3rdParty/lwpr/lwpr_xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/lwpr/lwpr_xml.h -------------------------------------------------------------------------------- /_3rdParty/matio/endian.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/matio/endian.c -------------------------------------------------------------------------------- /_3rdParty/matio/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/matio/inflate.c -------------------------------------------------------------------------------- /_3rdParty/matio/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/matio/io.c -------------------------------------------------------------------------------- /_3rdParty/matio/mat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/matio/mat.c -------------------------------------------------------------------------------- /_3rdParty/matio/mat4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/matio/mat4.c -------------------------------------------------------------------------------- /_3rdParty/matio/mat4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/matio/mat4.h -------------------------------------------------------------------------------- /_3rdParty/matio/mat5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/matio/mat5.c -------------------------------------------------------------------------------- /_3rdParty/matio/mat5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/matio/mat5.h -------------------------------------------------------------------------------- /_3rdParty/matio/mat73.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/matio/mat73.c -------------------------------------------------------------------------------- /_3rdParty/matio/mat73.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/matio/mat73.h -------------------------------------------------------------------------------- /_3rdParty/matio/matio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/matio/matio.h -------------------------------------------------------------------------------- /_3rdParty/matio/matioConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/matio/matioConfig.h -------------------------------------------------------------------------------- /_3rdParty/matio/matioConfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/matio/matioConfig.h.in -------------------------------------------------------------------------------- /_3rdParty/matio/matio_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/matio/matio_private.h -------------------------------------------------------------------------------- /_3rdParty/matio/matio_pubconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/matio/matio_pubconf.h -------------------------------------------------------------------------------- /_3rdParty/matio/matvar_cell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/matio/matvar_cell.c -------------------------------------------------------------------------------- /_3rdParty/matio/matvar_struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/matio/matvar_struct.c -------------------------------------------------------------------------------- /_3rdParty/matio/read_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/matio/read_data.c -------------------------------------------------------------------------------- /_3rdParty/matio/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/matio/snprintf.c -------------------------------------------------------------------------------- /_3rdParty/newmat11/bandmat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/bandmat.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/cholesky.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/cholesky.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/controlw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/controlw.h -------------------------------------------------------------------------------- /_3rdParty/newmat11/evalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/evalue.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/fft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/fft.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/hholder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/hholder.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/include.h -------------------------------------------------------------------------------- /_3rdParty/newmat11/jacobi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/jacobi.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/myexcept.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/myexcept.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/myexcept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/myexcept.h -------------------------------------------------------------------------------- /_3rdParty/newmat11/newfft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/newfft.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/newmat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/newmat.h -------------------------------------------------------------------------------- /_3rdParty/newmat11/newmat1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/newmat1.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/newmat2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/newmat2.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/newmat3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/newmat3.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/newmat4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/newmat4.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/newmat5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/newmat5.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/newmat6.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/newmat6.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/newmat7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/newmat7.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/newmat8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/newmat8.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/newmat9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/newmat9.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/newmatap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/newmatap.h -------------------------------------------------------------------------------- /_3rdParty/newmat11/newmatex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/newmatex.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/newmatio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/newmatio.h -------------------------------------------------------------------------------- /_3rdParty/newmat11/newmatnl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/newmatnl.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/newmatnl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/newmatnl.h -------------------------------------------------------------------------------- /_3rdParty/newmat11/newmatrc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/newmatrc.h -------------------------------------------------------------------------------- /_3rdParty/newmat11/newmatrm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/newmatrm.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/newmatrm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/newmatrm.h -------------------------------------------------------------------------------- /_3rdParty/newmat11/nm_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/nm_misc.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/precisio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/precisio.h -------------------------------------------------------------------------------- /_3rdParty/newmat11/solution.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/solution.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/solution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/solution.h -------------------------------------------------------------------------------- /_3rdParty/newmat11/sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/sort.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/submat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/submat.cpp -------------------------------------------------------------------------------- /_3rdParty/newmat11/svd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/newmat11/svd.cpp -------------------------------------------------------------------------------- /_3rdParty/nlopt/DIRect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/DIRect.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/DIRserial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/DIRserial.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/DIRsubrout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/DIRsubrout.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/auglag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/auglag.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/auglag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/auglag.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/bobyqa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/bobyqa.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/bobyqa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/bobyqa.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/cdirect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/cdirect.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/cdirect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/cdirect.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/cobyla.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/cobyla.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/cobyla.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/cobyla.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/config.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/crs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/crs.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/crs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/crs.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/deprecated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/deprecated.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/direct-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/direct-internal.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/direct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/direct.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/direct_wrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/direct_wrap.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/f77api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/f77api.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/f77funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/f77funcs.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/f77funcs_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/f77funcs_.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/general.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/general.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/global.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/global.cc -------------------------------------------------------------------------------- /_3rdParty/nlopt/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/global.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/hybrid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/hybrid.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/isres.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/isres.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/isres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/isres.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/linalg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/linalg.cc -------------------------------------------------------------------------------- /_3rdParty/nlopt/linalg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/linalg.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/local.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/local.cc -------------------------------------------------------------------------------- /_3rdParty/nlopt/local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/local.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/luksan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/luksan.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/mlsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/mlsl.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/mlsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/mlsl.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/mma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/mma.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/mma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/mma.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/mssubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/mssubs.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/mt19937ar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/mt19937ar.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/neldermead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/neldermead.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/newuoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/newuoa.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/newuoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/newuoa.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/nldrmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/nldrmd.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/nlopt-in.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/nlopt-in.hpp -------------------------------------------------------------------------------- /_3rdParty/nlopt/nlopt-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/nlopt-internal.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/nlopt-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/nlopt-util.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/nlopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/nlopt.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/nlopt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/nlopt.hpp -------------------------------------------------------------------------------- /_3rdParty/nlopt/optimize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/optimize.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/options.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/plip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/plip.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/plis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/plis.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/pnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/pnet.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/praxis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/praxis.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/praxis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/praxis.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/pssubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/pssubs.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/qsort_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/qsort_r.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/redblack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/redblack.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/redblack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/redblack.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/rescale.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/rescale.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/sbplx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/sbplx.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/slsqp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/slsqp.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/slsqp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/slsqp.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/soboldata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/soboldata.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/sobolseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/sobolseq.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/stogo.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/stogo.cc -------------------------------------------------------------------------------- /_3rdParty/nlopt/stogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/stogo.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/stogo_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/stogo_config.h -------------------------------------------------------------------------------- /_3rdParty/nlopt/stop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/stop.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/timer.c -------------------------------------------------------------------------------- /_3rdParty/nlopt/tools.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/tools.cc -------------------------------------------------------------------------------- /_3rdParty/nlopt/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_3rdParty/nlopt/tools.h -------------------------------------------------------------------------------- /_AlgorithmsPlugins/ASVM/asvm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/ASVM/asvm.cpp -------------------------------------------------------------------------------- /_AlgorithmsPlugins/ASVM/asvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/ASVM/asvm.h -------------------------------------------------------------------------------- /_AlgorithmsPlugins/ASVM/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/ASVM/main.cpp -------------------------------------------------------------------------------- /_AlgorithmsPlugins/ASVM/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "DynamicASVM" ]} 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/ASVM/svm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/ASVM/svm.cpp -------------------------------------------------------------------------------- /_AlgorithmsPlugins/ASVM/svm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/ASVM/svm.h -------------------------------------------------------------------------------- /_AlgorithmsPlugins/ASVM/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/ASVM/util.cpp -------------------------------------------------------------------------------- /_AlgorithmsPlugins/ASVM/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/ASVM/util.h -------------------------------------------------------------------------------- /_AlgorithmsPlugins/CCA/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/CCA/README.txt -------------------------------------------------------------------------------- /_AlgorithmsPlugins/CCA/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "PluginCCA" ]} 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/DBSCAN/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "PluginDBSCAN" ]} 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/FLAME/flame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/FLAME/flame.h -------------------------------------------------------------------------------- /_AlgorithmsPlugins/FLAME/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "PluginFlame" ]} 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/FLAME/qmldir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/FLAME/qmldir -------------------------------------------------------------------------------- /_AlgorithmsPlugins/GHSOM/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "GHSOMProjector" ]} 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/GMM/GMM.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/GMM/GMM.cbp -------------------------------------------------------------------------------- /_AlgorithmsPlugins/GMM/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "PluginGMM" ]} 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/GP/SOGP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/GP/SOGP.cpp -------------------------------------------------------------------------------- /_AlgorithmsPlugins/GP/SOGP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/GP/SOGP.h -------------------------------------------------------------------------------- /_AlgorithmsPlugins/GP/SOGP_aux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/GP/SOGP_aux.h -------------------------------------------------------------------------------- /_AlgorithmsPlugins/GP/gpr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/GP/gpr.h -------------------------------------------------------------------------------- /_AlgorithmsPlugins/GP/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "PluginGP" ]} 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/GP/pluginGP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/GP/pluginGP.h -------------------------------------------------------------------------------- /_AlgorithmsPlugins/HMM/detectorHMM.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/HMM/interfaceHMMDetect.cpp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/HMM/pluginHMM.pro.config: -------------------------------------------------------------------------------- 1 | // ADD PREDEFINED MACROS HERE! 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/HMM/pluginHMM.pro.creator: -------------------------------------------------------------------------------- 1 | [General] 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/HMM/pluginHMM.pro.includes: -------------------------------------------------------------------------------- 1 | /home/sperdikis/Git/mldemos/_AlgorithmsPlugins/HMM -------------------------------------------------------------------------------- /_AlgorithmsPlugins/KNN/KNN.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/KNN/KNN.cbp -------------------------------------------------------------------------------- /_AlgorithmsPlugins/KNN/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "PluginKNN" ]} 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/KernelMethods/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "PluginKernel" ]} 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/LLE/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "PluginLLE" ]} 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/LWPR/LWPR.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/LWPR/LWPR.cbp -------------------------------------------------------------------------------- /_AlgorithmsPlugins/LWPR/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "PluginLWPR" ]} 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/Lowess/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "PluginLowess" ]} 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/Maximizers/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "PluginMaximizer" ]} 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/MeanShift/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "PluginMeanShift" ]} 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/MetricLearning/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "PluginGP" ]} 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/Obstacle/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "PluginAvoid" ]} 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/OpenCV/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "PluginOpenCV" ]} 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/Projections/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "PluginProjections" ]} 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/RandomKernel/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "PluginRandomKernel" ]} 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/Reinforcements/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "PluginReinforcement" ]} 2 | -------------------------------------------------------------------------------- /_AlgorithmsPlugins/SEDS/SEDS.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/SEDS/SEDS.cbp -------------------------------------------------------------------------------- /_AlgorithmsPlugins/SEDS/SEDS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/SEDS/SEDS.cpp -------------------------------------------------------------------------------- /_AlgorithmsPlugins/SEDS/SEDS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_AlgorithmsPlugins/SEDS/SEDS.h -------------------------------------------------------------------------------- /_AlgorithmsPlugins/SEDS/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "DynamicSEDS" ]} 2 | -------------------------------------------------------------------------------- /_IOPlugins/CSVImport/CSVImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_IOPlugins/CSVImport/CSVImport.h -------------------------------------------------------------------------------- /_IOPlugins/CSVImport/CSVImport.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_IOPlugins/CSVImport/CSVImport.ui -------------------------------------------------------------------------------- /_IOPlugins/PCAFaces/PCAFaces.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_IOPlugins/PCAFaces/PCAFaces.cbp -------------------------------------------------------------------------------- /_IOPlugins/PCAFaces/PCAFaces.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_IOPlugins/PCAFaces/PCAFaces.cpp -------------------------------------------------------------------------------- /_IOPlugins/PCAFaces/PCAFaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_IOPlugins/PCAFaces/PCAFaces.h -------------------------------------------------------------------------------- /_IOPlugins/PCAFaces/PCAFaces.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_IOPlugins/PCAFaces/PCAFaces.ui -------------------------------------------------------------------------------- /_IOPlugins/PCAFaces/basicMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_IOPlugins/PCAFaces/basicMath.h -------------------------------------------------------------------------------- /_IOPlugins/PCAFaces/basicOpenCV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_IOPlugins/PCAFaces/basicOpenCV.h -------------------------------------------------------------------------------- /_IOPlugins/PCAFaces/eigenFaces.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_IOPlugins/PCAFaces/eigenFaces.h -------------------------------------------------------------------------------- /_IOPlugins/PCAFaces/launcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_IOPlugins/PCAFaces/launcher.cpp -------------------------------------------------------------------------------- /_IOPlugins/PCAFaces/plugin.json: -------------------------------------------------------------------------------- 1 | {"Keys": [ "PCAFaces" ]} 2 | -------------------------------------------------------------------------------- /_IOPlugins/PCAFaces/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_IOPlugins/PCAFaces/widget.cpp -------------------------------------------------------------------------------- /_IOPlugins/PCAFaces/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_IOPlugins/PCAFaces/widget.h -------------------------------------------------------------------------------- /_IOPlugins/WebImport/WebImport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_IOPlugins/WebImport/WebImport.h -------------------------------------------------------------------------------- /_IOPlugins/WebImport/WebImport.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_IOPlugins/WebImport/WebImport.ui -------------------------------------------------------------------------------- /_IOPlugins/WebImport/parser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_IOPlugins/WebImport/parser.cpp -------------------------------------------------------------------------------- /_IOPlugins/WebImport/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_IOPlugins/WebImport/parser.h -------------------------------------------------------------------------------- /_IOPlugins/WebImport/widget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_IOPlugins/WebImport/widget.cpp -------------------------------------------------------------------------------- /_IOPlugins/WebImport/widget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/_IOPlugins/WebImport/widget.h -------------------------------------------------------------------------------- /dmg-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/dmg-background.png -------------------------------------------------------------------------------- /help/GA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/GA.html -------------------------------------------------------------------------------- /help/KPCA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/KPCA.html -------------------------------------------------------------------------------- /help/PCA.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/PCA.html -------------------------------------------------------------------------------- /help/avoidDS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/avoidDS.html -------------------------------------------------------------------------------- /help/boost.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/boost.html -------------------------------------------------------------------------------- /help/classification.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/classification.html -------------------------------------------------------------------------------- /help/clustering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/clustering.html -------------------------------------------------------------------------------- /help/dynamical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/dynamical.html -------------------------------------------------------------------------------- /help/gmm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/gmm.html -------------------------------------------------------------------------------- /help/kernelClass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/kernelClass.html -------------------------------------------------------------------------------- /help/kernelClust.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/kernelClust.html -------------------------------------------------------------------------------- /help/kernelDynamic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/kernelDynamic.html -------------------------------------------------------------------------------- /help/kernelRegression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/kernelRegression.html -------------------------------------------------------------------------------- /help/kmeans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/kmeans.html -------------------------------------------------------------------------------- /help/knn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/knn.html -------------------------------------------------------------------------------- /help/lwpr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/lwpr.html -------------------------------------------------------------------------------- /help/maximization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/maximization.html -------------------------------------------------------------------------------- /help/maximizeStochastic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/maximizeStochastic.html -------------------------------------------------------------------------------- /help/mldemos.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/mldemos.html -------------------------------------------------------------------------------- /help/mlp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/mlp.html -------------------------------------------------------------------------------- /help/projection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/projection.html -------------------------------------------------------------------------------- /help/projections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/projections.html -------------------------------------------------------------------------------- /help/regression.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/regression.html -------------------------------------------------------------------------------- /help/reinforcement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/reinforcement.html -------------------------------------------------------------------------------- /help/seds.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/help/seds.html -------------------------------------------------------------------------------- /mldemos.workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/mldemos.workspace -------------------------------------------------------------------------------- /packageOSX.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/packageOSX.sh -------------------------------------------------------------------------------- /stuff/20034-4809-3-3ww-l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/stuff/20034-4809-3-3ww-l.jpg -------------------------------------------------------------------------------- /stuff/AML-Algorithms.numbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/stuff/AML-Algorithms.numbers -------------------------------------------------------------------------------- /stuff/dmg-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/stuff/dmg-background.png -------------------------------------------------------------------------------- /stuff/faces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/stuff/faces.png -------------------------------------------------------------------------------- /stuff/sampleManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/stuff/sampleManager.cpp -------------------------------------------------------------------------------- /stuff/sampleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/b4silio/MLDemos/HEAD/stuff/sampleManager.h --------------------------------------------------------------------------------