tomoto 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +3 -0
- data/LICENSE.txt +22 -0
- data/README.md +123 -0
- data/ext/tomoto/ext.cpp +245 -0
- data/ext/tomoto/extconf.rb +28 -0
- data/lib/tomoto.rb +12 -0
- data/lib/tomoto/ct.rb +11 -0
- data/lib/tomoto/hdp.rb +11 -0
- data/lib/tomoto/lda.rb +67 -0
- data/lib/tomoto/version.rb +3 -0
- data/vendor/EigenRand/EigenRand/Core.h +1139 -0
- data/vendor/EigenRand/EigenRand/Dists/Basic.h +111 -0
- data/vendor/EigenRand/EigenRand/Dists/Discrete.h +877 -0
- data/vendor/EigenRand/EigenRand/Dists/GammaPoisson.h +108 -0
- data/vendor/EigenRand/EigenRand/Dists/NormalExp.h +626 -0
- data/vendor/EigenRand/EigenRand/EigenRand +19 -0
- data/vendor/EigenRand/EigenRand/Macro.h +24 -0
- data/vendor/EigenRand/EigenRand/MorePacketMath.h +978 -0
- data/vendor/EigenRand/EigenRand/PacketFilter.h +286 -0
- data/vendor/EigenRand/EigenRand/PacketRandomEngine.h +624 -0
- data/vendor/EigenRand/EigenRand/RandUtils.h +413 -0
- data/vendor/EigenRand/EigenRand/doc.h +220 -0
- data/vendor/EigenRand/LICENSE +21 -0
- data/vendor/EigenRand/README.md +288 -0
- data/vendor/eigen/COPYING.BSD +26 -0
- data/vendor/eigen/COPYING.GPL +674 -0
- data/vendor/eigen/COPYING.LGPL +502 -0
- data/vendor/eigen/COPYING.MINPACK +52 -0
- data/vendor/eigen/COPYING.MPL2 +373 -0
- data/vendor/eigen/COPYING.README +18 -0
- data/vendor/eigen/Eigen/CMakeLists.txt +19 -0
- data/vendor/eigen/Eigen/Cholesky +46 -0
- data/vendor/eigen/Eigen/CholmodSupport +48 -0
- data/vendor/eigen/Eigen/Core +537 -0
- data/vendor/eigen/Eigen/Dense +7 -0
- data/vendor/eigen/Eigen/Eigen +2 -0
- data/vendor/eigen/Eigen/Eigenvalues +61 -0
- data/vendor/eigen/Eigen/Geometry +62 -0
- data/vendor/eigen/Eigen/Householder +30 -0
- data/vendor/eigen/Eigen/IterativeLinearSolvers +48 -0
- data/vendor/eigen/Eigen/Jacobi +33 -0
- data/vendor/eigen/Eigen/LU +50 -0
- data/vendor/eigen/Eigen/MetisSupport +35 -0
- data/vendor/eigen/Eigen/OrderingMethods +73 -0
- data/vendor/eigen/Eigen/PaStiXSupport +48 -0
- data/vendor/eigen/Eigen/PardisoSupport +35 -0
- data/vendor/eigen/Eigen/QR +51 -0
- data/vendor/eigen/Eigen/QtAlignedMalloc +40 -0
- data/vendor/eigen/Eigen/SPQRSupport +34 -0
- data/vendor/eigen/Eigen/SVD +51 -0
- data/vendor/eigen/Eigen/Sparse +36 -0
- data/vendor/eigen/Eigen/SparseCholesky +45 -0
- data/vendor/eigen/Eigen/SparseCore +69 -0
- data/vendor/eigen/Eigen/SparseLU +46 -0
- data/vendor/eigen/Eigen/SparseQR +37 -0
- data/vendor/eigen/Eigen/StdDeque +27 -0
- data/vendor/eigen/Eigen/StdList +26 -0
- data/vendor/eigen/Eigen/StdVector +27 -0
- data/vendor/eigen/Eigen/SuperLUSupport +64 -0
- data/vendor/eigen/Eigen/UmfPackSupport +40 -0
- data/vendor/eigen/Eigen/src/Cholesky/LDLT.h +673 -0
- data/vendor/eigen/Eigen/src/Cholesky/LLT.h +542 -0
- data/vendor/eigen/Eigen/src/Cholesky/LLT_LAPACKE.h +99 -0
- data/vendor/eigen/Eigen/src/CholmodSupport/CholmodSupport.h +639 -0
- data/vendor/eigen/Eigen/src/Core/Array.h +329 -0
- data/vendor/eigen/Eigen/src/Core/ArrayBase.h +226 -0
- data/vendor/eigen/Eigen/src/Core/ArrayWrapper.h +209 -0
- data/vendor/eigen/Eigen/src/Core/Assign.h +90 -0
- data/vendor/eigen/Eigen/src/Core/AssignEvaluator.h +935 -0
- data/vendor/eigen/Eigen/src/Core/Assign_MKL.h +178 -0
- data/vendor/eigen/Eigen/src/Core/BandMatrix.h +353 -0
- data/vendor/eigen/Eigen/src/Core/Block.h +452 -0
- data/vendor/eigen/Eigen/src/Core/BooleanRedux.h +164 -0
- data/vendor/eigen/Eigen/src/Core/CommaInitializer.h +160 -0
- data/vendor/eigen/Eigen/src/Core/ConditionEstimator.h +175 -0
- data/vendor/eigen/Eigen/src/Core/CoreEvaluators.h +1688 -0
- data/vendor/eigen/Eigen/src/Core/CoreIterators.h +127 -0
- data/vendor/eigen/Eigen/src/Core/CwiseBinaryOp.h +184 -0
- data/vendor/eigen/Eigen/src/Core/CwiseNullaryOp.h +866 -0
- data/vendor/eigen/Eigen/src/Core/CwiseTernaryOp.h +197 -0
- data/vendor/eigen/Eigen/src/Core/CwiseUnaryOp.h +103 -0
- data/vendor/eigen/Eigen/src/Core/CwiseUnaryView.h +128 -0
- data/vendor/eigen/Eigen/src/Core/DenseBase.h +611 -0
- data/vendor/eigen/Eigen/src/Core/DenseCoeffsBase.h +681 -0
- data/vendor/eigen/Eigen/src/Core/DenseStorage.h +570 -0
- data/vendor/eigen/Eigen/src/Core/Diagonal.h +260 -0
- data/vendor/eigen/Eigen/src/Core/DiagonalMatrix.h +343 -0
- data/vendor/eigen/Eigen/src/Core/DiagonalProduct.h +28 -0
- data/vendor/eigen/Eigen/src/Core/Dot.h +318 -0
- data/vendor/eigen/Eigen/src/Core/EigenBase.h +159 -0
- data/vendor/eigen/Eigen/src/Core/ForceAlignedAccess.h +146 -0
- data/vendor/eigen/Eigen/src/Core/Fuzzy.h +155 -0
- data/vendor/eigen/Eigen/src/Core/GeneralProduct.h +455 -0
- data/vendor/eigen/Eigen/src/Core/GenericPacketMath.h +593 -0
- data/vendor/eigen/Eigen/src/Core/GlobalFunctions.h +187 -0
- data/vendor/eigen/Eigen/src/Core/IO.h +225 -0
- data/vendor/eigen/Eigen/src/Core/Inverse.h +118 -0
- data/vendor/eigen/Eigen/src/Core/Map.h +171 -0
- data/vendor/eigen/Eigen/src/Core/MapBase.h +303 -0
- data/vendor/eigen/Eigen/src/Core/MathFunctions.h +1415 -0
- data/vendor/eigen/Eigen/src/Core/MathFunctionsImpl.h +101 -0
- data/vendor/eigen/Eigen/src/Core/Matrix.h +459 -0
- data/vendor/eigen/Eigen/src/Core/MatrixBase.h +529 -0
- data/vendor/eigen/Eigen/src/Core/NestByValue.h +110 -0
- data/vendor/eigen/Eigen/src/Core/NoAlias.h +108 -0
- data/vendor/eigen/Eigen/src/Core/NumTraits.h +248 -0
- data/vendor/eigen/Eigen/src/Core/PermutationMatrix.h +633 -0
- data/vendor/eigen/Eigen/src/Core/PlainObjectBase.h +1035 -0
- data/vendor/eigen/Eigen/src/Core/Product.h +186 -0
- data/vendor/eigen/Eigen/src/Core/ProductEvaluators.h +1112 -0
- data/vendor/eigen/Eigen/src/Core/Random.h +182 -0
- data/vendor/eigen/Eigen/src/Core/Redux.h +505 -0
- data/vendor/eigen/Eigen/src/Core/Ref.h +283 -0
- data/vendor/eigen/Eigen/src/Core/Replicate.h +142 -0
- data/vendor/eigen/Eigen/src/Core/ReturnByValue.h +117 -0
- data/vendor/eigen/Eigen/src/Core/Reverse.h +211 -0
- data/vendor/eigen/Eigen/src/Core/Select.h +162 -0
- data/vendor/eigen/Eigen/src/Core/SelfAdjointView.h +352 -0
- data/vendor/eigen/Eigen/src/Core/SelfCwiseBinaryOp.h +47 -0
- data/vendor/eigen/Eigen/src/Core/Solve.h +188 -0
- data/vendor/eigen/Eigen/src/Core/SolveTriangular.h +235 -0
- data/vendor/eigen/Eigen/src/Core/SolverBase.h +130 -0
- data/vendor/eigen/Eigen/src/Core/StableNorm.h +221 -0
- data/vendor/eigen/Eigen/src/Core/Stride.h +111 -0
- data/vendor/eigen/Eigen/src/Core/Swap.h +67 -0
- data/vendor/eigen/Eigen/src/Core/Transpose.h +403 -0
- data/vendor/eigen/Eigen/src/Core/Transpositions.h +407 -0
- data/vendor/eigen/Eigen/src/Core/TriangularMatrix.h +983 -0
- data/vendor/eigen/Eigen/src/Core/VectorBlock.h +96 -0
- data/vendor/eigen/Eigen/src/Core/VectorwiseOp.h +695 -0
- data/vendor/eigen/Eigen/src/Core/Visitor.h +273 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX/Complex.h +451 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX/MathFunctions.h +439 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX/PacketMath.h +637 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX/TypeCasting.h +51 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX512/MathFunctions.h +391 -0
- data/vendor/eigen/Eigen/src/Core/arch/AVX512/PacketMath.h +1316 -0
- data/vendor/eigen/Eigen/src/Core/arch/AltiVec/Complex.h +430 -0
- data/vendor/eigen/Eigen/src/Core/arch/AltiVec/MathFunctions.h +322 -0
- data/vendor/eigen/Eigen/src/Core/arch/AltiVec/PacketMath.h +1061 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/Complex.h +103 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/Half.h +674 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/MathFunctions.h +91 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/PacketMath.h +333 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/PacketMathHalf.h +1124 -0
- data/vendor/eigen/Eigen/src/Core/arch/CUDA/TypeCasting.h +212 -0
- data/vendor/eigen/Eigen/src/Core/arch/Default/ConjHelper.h +29 -0
- data/vendor/eigen/Eigen/src/Core/arch/Default/Settings.h +49 -0
- data/vendor/eigen/Eigen/src/Core/arch/NEON/Complex.h +490 -0
- data/vendor/eigen/Eigen/src/Core/arch/NEON/MathFunctions.h +91 -0
- data/vendor/eigen/Eigen/src/Core/arch/NEON/PacketMath.h +760 -0
- data/vendor/eigen/Eigen/src/Core/arch/SSE/Complex.h +471 -0
- data/vendor/eigen/Eigen/src/Core/arch/SSE/MathFunctions.h +562 -0
- data/vendor/eigen/Eigen/src/Core/arch/SSE/PacketMath.h +895 -0
- data/vendor/eigen/Eigen/src/Core/arch/SSE/TypeCasting.h +77 -0
- data/vendor/eigen/Eigen/src/Core/arch/ZVector/Complex.h +397 -0
- data/vendor/eigen/Eigen/src/Core/arch/ZVector/MathFunctions.h +137 -0
- data/vendor/eigen/Eigen/src/Core/arch/ZVector/PacketMath.h +945 -0
- data/vendor/eigen/Eigen/src/Core/functors/AssignmentFunctors.h +168 -0
- data/vendor/eigen/Eigen/src/Core/functors/BinaryFunctors.h +475 -0
- data/vendor/eigen/Eigen/src/Core/functors/NullaryFunctors.h +188 -0
- data/vendor/eigen/Eigen/src/Core/functors/StlFunctors.h +136 -0
- data/vendor/eigen/Eigen/src/Core/functors/TernaryFunctors.h +25 -0
- data/vendor/eigen/Eigen/src/Core/functors/UnaryFunctors.h +792 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralBlockPanelKernel.h +2156 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixMatrix.h +492 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular.h +311 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixMatrixTriangular_BLAS.h +145 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixMatrix_BLAS.h +122 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixVector.h +619 -0
- data/vendor/eigen/Eigen/src/Core/products/GeneralMatrixVector_BLAS.h +136 -0
- data/vendor/eigen/Eigen/src/Core/products/Parallelizer.h +163 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix.h +521 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointMatrixMatrix_BLAS.h +287 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointMatrixVector.h +260 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointMatrixVector_BLAS.h +118 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointProduct.h +133 -0
- data/vendor/eigen/Eigen/src/Core/products/SelfadjointRank2Update.h +93 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularMatrixMatrix.h +466 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularMatrixMatrix_BLAS.h +315 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularMatrixVector.h +350 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularMatrixVector_BLAS.h +255 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularSolverMatrix.h +335 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularSolverMatrix_BLAS.h +163 -0
- data/vendor/eigen/Eigen/src/Core/products/TriangularSolverVector.h +145 -0
- data/vendor/eigen/Eigen/src/Core/util/BlasUtil.h +398 -0
- data/vendor/eigen/Eigen/src/Core/util/Constants.h +547 -0
- data/vendor/eigen/Eigen/src/Core/util/DisableStupidWarnings.h +83 -0
- data/vendor/eigen/Eigen/src/Core/util/ForwardDeclarations.h +302 -0
- data/vendor/eigen/Eigen/src/Core/util/MKL_support.h +130 -0
- data/vendor/eigen/Eigen/src/Core/util/Macros.h +1001 -0
- data/vendor/eigen/Eigen/src/Core/util/Memory.h +993 -0
- data/vendor/eigen/Eigen/src/Core/util/Meta.h +534 -0
- data/vendor/eigen/Eigen/src/Core/util/NonMPL2.h +3 -0
- data/vendor/eigen/Eigen/src/Core/util/ReenableStupidWarnings.h +27 -0
- data/vendor/eigen/Eigen/src/Core/util/StaticAssert.h +218 -0
- data/vendor/eigen/Eigen/src/Core/util/XprHelper.h +821 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/ComplexEigenSolver.h +346 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/ComplexSchur.h +459 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/ComplexSchur_LAPACKE.h +91 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/EigenSolver.h +622 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/GeneralizedEigenSolver.h +418 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/GeneralizedSelfAdjointEigenSolver.h +226 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/HessenbergDecomposition.h +374 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/MatrixBaseEigenvalues.h +158 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/RealQZ.h +654 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/RealSchur.h +546 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/RealSchur_LAPACKE.h +77 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver.h +870 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/SelfAdjointEigenSolver_LAPACKE.h +87 -0
- data/vendor/eigen/Eigen/src/Eigenvalues/Tridiagonalization.h +556 -0
- data/vendor/eigen/Eigen/src/Geometry/AlignedBox.h +392 -0
- data/vendor/eigen/Eigen/src/Geometry/AngleAxis.h +247 -0
- data/vendor/eigen/Eigen/src/Geometry/EulerAngles.h +114 -0
- data/vendor/eigen/Eigen/src/Geometry/Homogeneous.h +497 -0
- data/vendor/eigen/Eigen/src/Geometry/Hyperplane.h +282 -0
- data/vendor/eigen/Eigen/src/Geometry/OrthoMethods.h +234 -0
- data/vendor/eigen/Eigen/src/Geometry/ParametrizedLine.h +195 -0
- data/vendor/eigen/Eigen/src/Geometry/Quaternion.h +814 -0
- data/vendor/eigen/Eigen/src/Geometry/Rotation2D.h +199 -0
- data/vendor/eigen/Eigen/src/Geometry/RotationBase.h +206 -0
- data/vendor/eigen/Eigen/src/Geometry/Scaling.h +170 -0
- data/vendor/eigen/Eigen/src/Geometry/Transform.h +1542 -0
- data/vendor/eigen/Eigen/src/Geometry/Translation.h +208 -0
- data/vendor/eigen/Eigen/src/Geometry/Umeyama.h +166 -0
- data/vendor/eigen/Eigen/src/Geometry/arch/Geometry_SSE.h +161 -0
- data/vendor/eigen/Eigen/src/Householder/BlockHouseholder.h +103 -0
- data/vendor/eigen/Eigen/src/Householder/Householder.h +172 -0
- data/vendor/eigen/Eigen/src/Householder/HouseholderSequence.h +470 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/BasicPreconditioners.h +226 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/BiCGSTAB.h +228 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/ConjugateGradient.h +246 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/IncompleteCholesky.h +400 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/IncompleteLUT.h +462 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/IterativeSolverBase.h +394 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/LeastSquareConjugateGradient.h +216 -0
- data/vendor/eigen/Eigen/src/IterativeLinearSolvers/SolveWithGuess.h +115 -0
- data/vendor/eigen/Eigen/src/Jacobi/Jacobi.h +462 -0
- data/vendor/eigen/Eigen/src/LU/Determinant.h +101 -0
- data/vendor/eigen/Eigen/src/LU/FullPivLU.h +891 -0
- data/vendor/eigen/Eigen/src/LU/InverseImpl.h +415 -0
- data/vendor/eigen/Eigen/src/LU/PartialPivLU.h +611 -0
- data/vendor/eigen/Eigen/src/LU/PartialPivLU_LAPACKE.h +83 -0
- data/vendor/eigen/Eigen/src/LU/arch/Inverse_SSE.h +338 -0
- data/vendor/eigen/Eigen/src/MetisSupport/MetisSupport.h +137 -0
- data/vendor/eigen/Eigen/src/OrderingMethods/Amd.h +445 -0
- data/vendor/eigen/Eigen/src/OrderingMethods/Eigen_Colamd.h +1843 -0
- data/vendor/eigen/Eigen/src/OrderingMethods/Ordering.h +157 -0
- data/vendor/eigen/Eigen/src/PaStiXSupport/PaStiXSupport.h +678 -0
- data/vendor/eigen/Eigen/src/PardisoSupport/PardisoSupport.h +543 -0
- data/vendor/eigen/Eigen/src/QR/ColPivHouseholderQR.h +653 -0
- data/vendor/eigen/Eigen/src/QR/ColPivHouseholderQR_LAPACKE.h +97 -0
- data/vendor/eigen/Eigen/src/QR/CompleteOrthogonalDecomposition.h +562 -0
- data/vendor/eigen/Eigen/src/QR/FullPivHouseholderQR.h +676 -0
- data/vendor/eigen/Eigen/src/QR/HouseholderQR.h +409 -0
- data/vendor/eigen/Eigen/src/QR/HouseholderQR_LAPACKE.h +68 -0
- data/vendor/eigen/Eigen/src/SPQRSupport/SuiteSparseQRSupport.h +313 -0
- data/vendor/eigen/Eigen/src/SVD/BDCSVD.h +1246 -0
- data/vendor/eigen/Eigen/src/SVD/JacobiSVD.h +804 -0
- data/vendor/eigen/Eigen/src/SVD/JacobiSVD_LAPACKE.h +91 -0
- data/vendor/eigen/Eigen/src/SVD/SVDBase.h +315 -0
- data/vendor/eigen/Eigen/src/SVD/UpperBidiagonalization.h +414 -0
- data/vendor/eigen/Eigen/src/SparseCholesky/SimplicialCholesky.h +689 -0
- data/vendor/eigen/Eigen/src/SparseCholesky/SimplicialCholesky_impl.h +199 -0
- data/vendor/eigen/Eigen/src/SparseCore/AmbiVector.h +377 -0
- data/vendor/eigen/Eigen/src/SparseCore/CompressedStorage.h +258 -0
- data/vendor/eigen/Eigen/src/SparseCore/ConservativeSparseSparseProduct.h +352 -0
- data/vendor/eigen/Eigen/src/SparseCore/MappedSparseMatrix.h +67 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseAssign.h +216 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseBlock.h +603 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseColEtree.h +206 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseCompressedBase.h +341 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseCwiseBinaryOp.h +726 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseCwiseUnaryOp.h +148 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseDenseProduct.h +320 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseDiagonalProduct.h +138 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseDot.h +98 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseFuzzy.h +29 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseMap.h +305 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseMatrix.h +1403 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseMatrixBase.h +405 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparsePermutation.h +178 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseProduct.h +169 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseRedux.h +49 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseRef.h +397 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseSelfAdjointView.h +656 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseSolverBase.h +124 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseSparseProductWithPruning.h +198 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseTranspose.h +92 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseTriangularView.h +189 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseUtil.h +178 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseVector.h +478 -0
- data/vendor/eigen/Eigen/src/SparseCore/SparseView.h +253 -0
- data/vendor/eigen/Eigen/src/SparseCore/TriangularSolver.h +315 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU.h +773 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLUImpl.h +66 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_Memory.h +226 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_Structs.h +110 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_SupernodalMatrix.h +301 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_Utils.h +80 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_column_bmod.h +181 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_column_dfs.h +179 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_copy_to_ucol.h +107 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_gemm_kernel.h +280 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_heap_relax_snode.h +126 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_kernel_bmod.h +130 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_panel_bmod.h +223 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_panel_dfs.h +258 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_pivotL.h +137 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_pruneL.h +136 -0
- data/vendor/eigen/Eigen/src/SparseLU/SparseLU_relax_snode.h +83 -0
- data/vendor/eigen/Eigen/src/SparseQR/SparseQR.h +745 -0
- data/vendor/eigen/Eigen/src/StlSupport/StdDeque.h +126 -0
- data/vendor/eigen/Eigen/src/StlSupport/StdList.h +106 -0
- data/vendor/eigen/Eigen/src/StlSupport/StdVector.h +131 -0
- data/vendor/eigen/Eigen/src/StlSupport/details.h +84 -0
- data/vendor/eigen/Eigen/src/SuperLUSupport/SuperLUSupport.h +1027 -0
- data/vendor/eigen/Eigen/src/UmfPackSupport/UmfPackSupport.h +506 -0
- data/vendor/eigen/Eigen/src/misc/Image.h +82 -0
- data/vendor/eigen/Eigen/src/misc/Kernel.h +79 -0
- data/vendor/eigen/Eigen/src/misc/RealSvd2x2.h +55 -0
- data/vendor/eigen/Eigen/src/misc/blas.h +440 -0
- data/vendor/eigen/Eigen/src/misc/lapack.h +152 -0
- data/vendor/eigen/Eigen/src/misc/lapacke.h +16291 -0
- data/vendor/eigen/Eigen/src/misc/lapacke_mangling.h +17 -0
- data/vendor/eigen/Eigen/src/plugins/ArrayCwiseBinaryOps.h +332 -0
- data/vendor/eigen/Eigen/src/plugins/ArrayCwiseUnaryOps.h +552 -0
- data/vendor/eigen/Eigen/src/plugins/BlockMethods.h +1058 -0
- data/vendor/eigen/Eigen/src/plugins/CommonCwiseBinaryOps.h +115 -0
- data/vendor/eigen/Eigen/src/plugins/CommonCwiseUnaryOps.h +163 -0
- data/vendor/eigen/Eigen/src/plugins/MatrixCwiseBinaryOps.h +152 -0
- data/vendor/eigen/Eigen/src/plugins/MatrixCwiseUnaryOps.h +85 -0
- data/vendor/eigen/README.md +3 -0
- data/vendor/eigen/bench/README.txt +55 -0
- data/vendor/eigen/bench/btl/COPYING +340 -0
- data/vendor/eigen/bench/btl/README +154 -0
- data/vendor/eigen/bench/tensors/README +21 -0
- data/vendor/eigen/blas/README.txt +6 -0
- data/vendor/eigen/demos/mandelbrot/README +10 -0
- data/vendor/eigen/demos/mix_eigen_and_c/README +9 -0
- data/vendor/eigen/demos/opengl/README +13 -0
- data/vendor/eigen/unsupported/Eigen/CXX11/src/Tensor/README.md +1760 -0
- data/vendor/eigen/unsupported/README.txt +50 -0
- data/vendor/tomotopy/LICENSE +21 -0
- data/vendor/tomotopy/README.kr.rst +375 -0
- data/vendor/tomotopy/README.rst +382 -0
- data/vendor/tomotopy/src/Labeling/FoRelevance.cpp +362 -0
- data/vendor/tomotopy/src/Labeling/FoRelevance.h +88 -0
- data/vendor/tomotopy/src/Labeling/Labeler.h +50 -0
- data/vendor/tomotopy/src/TopicModel/CT.h +37 -0
- data/vendor/tomotopy/src/TopicModel/CTModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/CTModel.hpp +293 -0
- data/vendor/tomotopy/src/TopicModel/DMR.h +51 -0
- data/vendor/tomotopy/src/TopicModel/DMRModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/DMRModel.hpp +374 -0
- data/vendor/tomotopy/src/TopicModel/DT.h +65 -0
- data/vendor/tomotopy/src/TopicModel/DTM.h +22 -0
- data/vendor/tomotopy/src/TopicModel/DTModel.cpp +15 -0
- data/vendor/tomotopy/src/TopicModel/DTModel.hpp +572 -0
- data/vendor/tomotopy/src/TopicModel/GDMR.h +37 -0
- data/vendor/tomotopy/src/TopicModel/GDMRModel.cpp +14 -0
- data/vendor/tomotopy/src/TopicModel/GDMRModel.hpp +485 -0
- data/vendor/tomotopy/src/TopicModel/HDP.h +74 -0
- data/vendor/tomotopy/src/TopicModel/HDPModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/HDPModel.hpp +592 -0
- data/vendor/tomotopy/src/TopicModel/HLDA.h +40 -0
- data/vendor/tomotopy/src/TopicModel/HLDAModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/HLDAModel.hpp +681 -0
- data/vendor/tomotopy/src/TopicModel/HPA.h +27 -0
- data/vendor/tomotopy/src/TopicModel/HPAModel.cpp +21 -0
- data/vendor/tomotopy/src/TopicModel/HPAModel.hpp +588 -0
- data/vendor/tomotopy/src/TopicModel/LDA.h +144 -0
- data/vendor/tomotopy/src/TopicModel/LDACVB0Model.hpp +442 -0
- data/vendor/tomotopy/src/TopicModel/LDAModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/LDAModel.hpp +1058 -0
- data/vendor/tomotopy/src/TopicModel/LLDA.h +45 -0
- data/vendor/tomotopy/src/TopicModel/LLDAModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/LLDAModel.hpp +203 -0
- data/vendor/tomotopy/src/TopicModel/MGLDA.h +63 -0
- data/vendor/tomotopy/src/TopicModel/MGLDAModel.cpp +17 -0
- data/vendor/tomotopy/src/TopicModel/MGLDAModel.hpp +558 -0
- data/vendor/tomotopy/src/TopicModel/PA.h +43 -0
- data/vendor/tomotopy/src/TopicModel/PAModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/PAModel.hpp +467 -0
- data/vendor/tomotopy/src/TopicModel/PLDA.h +17 -0
- data/vendor/tomotopy/src/TopicModel/PLDAModel.cpp +13 -0
- data/vendor/tomotopy/src/TopicModel/PLDAModel.hpp +214 -0
- data/vendor/tomotopy/src/TopicModel/SLDA.h +54 -0
- data/vendor/tomotopy/src/TopicModel/SLDAModel.cpp +17 -0
- data/vendor/tomotopy/src/TopicModel/SLDAModel.hpp +456 -0
- data/vendor/tomotopy/src/TopicModel/TopicModel.hpp +692 -0
- data/vendor/tomotopy/src/Utils/AliasMethod.hpp +169 -0
- data/vendor/tomotopy/src/Utils/Dictionary.h +80 -0
- data/vendor/tomotopy/src/Utils/EigenAddonOps.hpp +181 -0
- data/vendor/tomotopy/src/Utils/LBFGS.h +202 -0
- data/vendor/tomotopy/src/Utils/LBFGS/LineSearchBacktracking.h +120 -0
- data/vendor/tomotopy/src/Utils/LBFGS/LineSearchBracketing.h +122 -0
- data/vendor/tomotopy/src/Utils/LBFGS/Param.h +213 -0
- data/vendor/tomotopy/src/Utils/LUT.hpp +82 -0
- data/vendor/tomotopy/src/Utils/MultiNormalDistribution.hpp +69 -0
- data/vendor/tomotopy/src/Utils/PolyaGamma.hpp +200 -0
- data/vendor/tomotopy/src/Utils/PolyaGammaHybrid.hpp +672 -0
- data/vendor/tomotopy/src/Utils/ThreadPool.hpp +150 -0
- data/vendor/tomotopy/src/Utils/Trie.hpp +220 -0
- data/vendor/tomotopy/src/Utils/TruncMultiNormal.hpp +94 -0
- data/vendor/tomotopy/src/Utils/Utils.hpp +337 -0
- data/vendor/tomotopy/src/Utils/avx_gamma.h +46 -0
- data/vendor/tomotopy/src/Utils/avx_mathfun.h +736 -0
- data/vendor/tomotopy/src/Utils/exception.h +28 -0
- data/vendor/tomotopy/src/Utils/math.h +281 -0
- data/vendor/tomotopy/src/Utils/rtnorm.hpp +2690 -0
- data/vendor/tomotopy/src/Utils/sample.hpp +192 -0
- data/vendor/tomotopy/src/Utils/serializer.hpp +695 -0
- data/vendor/tomotopy/src/Utils/slp.hpp +131 -0
- data/vendor/tomotopy/src/Utils/sse_gamma.h +48 -0
- data/vendor/tomotopy/src/Utils/sse_mathfun.h +710 -0
- data/vendor/tomotopy/src/Utils/text.hpp +49 -0
- data/vendor/tomotopy/src/Utils/tvector.hpp +543 -0
- metadata +531 -0
@@ -0,0 +1,37 @@
|
|
1
|
+
#pragma once
|
2
|
+
#include "DMR.h"
|
3
|
+
|
4
|
+
namespace tomoto
|
5
|
+
{
|
6
|
+
template<TermWeight _tw>
|
7
|
+
struct DocumentGDMR : public DocumentDMR<_tw>
|
8
|
+
{
|
9
|
+
using BaseDocument = DocumentDMR<_tw>;
|
10
|
+
using DocumentDMR<_tw>::DocumentDMR;
|
11
|
+
std::vector<Float> metadataOrg, metadataNormalized;
|
12
|
+
|
13
|
+
DEFINE_SERIALIZER_AFTER_BASE_WITH_VERSION(BaseDocument, 0, metadataOrg);
|
14
|
+
DEFINE_TAGGED_SERIALIZER_AFTER_BASE_WITH_VERSION(BaseDocument, 1, 0x00010001, metadataOrg, metadataNormalized);
|
15
|
+
};
|
16
|
+
|
17
|
+
class IGDMRModel : public IDMRModel
|
18
|
+
{
|
19
|
+
public:
|
20
|
+
using DefaultDocType = DocumentDMR<TermWeight::one>;
|
21
|
+
static IGDMRModel* create(TermWeight _weight, size_t _K = 1, const std::vector<uint64_t>& _degreeByF = {},
|
22
|
+
Float defaultAlpha = 1.0, Float _sigma = 1.0, Float _sigma0 = 1.0, Float _eta = 0.01, Float _alphaEps = 1e-10,
|
23
|
+
size_t seed = std::random_device{}(),
|
24
|
+
bool scalarRng = false);
|
25
|
+
|
26
|
+
virtual Float getSigma0() const = 0;
|
27
|
+
virtual void setSigma0(Float) = 0;
|
28
|
+
virtual const std::vector<uint64_t>& getFs() const = 0;
|
29
|
+
virtual std::vector<Float> getLambdaByTopic(Tid tid) const = 0;
|
30
|
+
|
31
|
+
virtual std::vector<Float> getTDF(const Float* metadata, bool normalize) const = 0;
|
32
|
+
virtual std::vector<Float> getTDFBatch(const Float* metadata, size_t stride, size_t cnt, bool normalize) const = 0;
|
33
|
+
|
34
|
+
virtual void setMdRange(const std::vector<Float>& vMin, const std::vector<Float>& vMax) = 0;
|
35
|
+
virtual void getMdRange(std::vector<Float>& vMin, std::vector<Float>& vMax) const = 0;
|
36
|
+
};
|
37
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
#include "GDMRModel.hpp"
|
2
|
+
|
3
|
+
namespace tomoto
|
4
|
+
{
|
5
|
+
/*template class GDMRModel<TermWeight::one>;
|
6
|
+
template class GDMRModel<TermWeight::idf>;
|
7
|
+
template class GDMRModel<TermWeight::pmi>;*/
|
8
|
+
|
9
|
+
IGDMRModel* IGDMRModel::create(TermWeight _weight, size_t _K, const std::vector<uint64_t>& degreeByF,
|
10
|
+
Float _defaultAlpha, Float _sigma, Float _sigma0, Float _eta, Float _alphaEps, size_t seed, bool scalarRng)
|
11
|
+
{
|
12
|
+
TMT_SWITCH_TW(_weight, scalarRng, GDMRModel, _K, degreeByF, _defaultAlpha, _sigma, _sigma0, _eta, _alphaEps, seed);
|
13
|
+
}
|
14
|
+
}
|
@@ -0,0 +1,485 @@
|
|
1
|
+
#pragma once
|
2
|
+
#include "DMRModel.hpp"
|
3
|
+
#include "../Utils/slp.hpp"
|
4
|
+
#include "GDMR.h"
|
5
|
+
|
6
|
+
namespace tomoto
|
7
|
+
{
|
8
|
+
template<TermWeight _tw>
|
9
|
+
struct ModelStateGDMR : public ModelStateDMR<_tw>
|
10
|
+
{
|
11
|
+
/*Eigen::Matrix<Float, -1, 1> alphas;
|
12
|
+
Eigen::Matrix<Float, -1, 1> terms;
|
13
|
+
std::vector<std::vector<Float>> slpCache;
|
14
|
+
std::vector<size_t> ndimCnt;*/
|
15
|
+
};
|
16
|
+
|
17
|
+
template<TermWeight _tw, typename _RandGen,
|
18
|
+
size_t _Flags = flags::partitioned_multisampling,
|
19
|
+
typename _Interface = IGDMRModel,
|
20
|
+
typename _Derived = void,
|
21
|
+
typename _DocType = DocumentGDMR<_tw>,
|
22
|
+
typename _ModelState = ModelStateGDMR<_tw>>
|
23
|
+
class GDMRModel : public DMRModel<_tw, _RandGen, _Flags, _Interface,
|
24
|
+
typename std::conditional<std::is_same<_Derived, void>::value, GDMRModel<_tw, _RandGen>, _Derived>::type,
|
25
|
+
_DocType, _ModelState>
|
26
|
+
{
|
27
|
+
protected:
|
28
|
+
using DerivedClass = typename std::conditional<std::is_same<_Derived, void>::value, GDMRModel<_tw, _RandGen>, _Derived>::type;
|
29
|
+
using BaseClass = DMRModel<_tw, _RandGen, _Flags, _Interface, DerivedClass, _DocType, _ModelState>;
|
30
|
+
friend BaseClass;
|
31
|
+
friend typename BaseClass::BaseClass;
|
32
|
+
friend typename BaseClass::BaseClass::BaseClass;
|
33
|
+
using WeightType = typename BaseClass::WeightType;
|
34
|
+
|
35
|
+
Float sigma0 = 3;
|
36
|
+
std::vector<Float> mdCoefs, mdIntercepts, mdMax;
|
37
|
+
std::vector<uint64_t> degreeByF;
|
38
|
+
|
39
|
+
Float getIntegratedLambdaSq(const Eigen::Ref<const Eigen::Matrix<Float, -1, 1>, 0, Eigen::InnerStride<>>& lambdas) const
|
40
|
+
{
|
41
|
+
Float ret = pow(lambdas[0] - log(this->alpha), 2) / 2 / pow(this->sigma0, 2);
|
42
|
+
for (size_t i = 1; i < this->F; ++i)
|
43
|
+
{
|
44
|
+
ret += pow(lambdas[i], 2) / 2 / pow(this->sigma, 2);
|
45
|
+
}
|
46
|
+
return ret;
|
47
|
+
}
|
48
|
+
|
49
|
+
void getIntegratedLambdaSqP(const Eigen::Ref<const Eigen::Matrix<Float, -1, 1>, 0, Eigen::InnerStride<>>& lambdas,
|
50
|
+
Eigen::Ref<Eigen::Matrix<Float, -1, 1>, 0, Eigen::InnerStride<>> ret) const
|
51
|
+
{
|
52
|
+
ret[0] = (lambdas[0] - log(this->alpha)) / pow(this->sigma0, 2);
|
53
|
+
for (size_t i = 1; i < this->F; ++i)
|
54
|
+
{
|
55
|
+
ret[i] = lambdas[i] / pow(this->sigma, 2);
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
59
|
+
void initParameters()
|
60
|
+
{
|
61
|
+
auto dist0 = std::normal_distribution<Float>(log(this->alpha), sigma0);
|
62
|
+
auto dist = std::normal_distribution<Float>(0, this->sigma);
|
63
|
+
for (size_t i = 0; i < this->K; ++i) for (size_t j = 0; j < this->F; ++j)
|
64
|
+
{
|
65
|
+
if (j == 0)
|
66
|
+
{
|
67
|
+
this->lambda(i, j) = dist0(this->rg);
|
68
|
+
}
|
69
|
+
else
|
70
|
+
{
|
71
|
+
this->lambda(i, j) = dist(this->rg);
|
72
|
+
}
|
73
|
+
}
|
74
|
+
}
|
75
|
+
|
76
|
+
Float getNegativeLambdaLL(Eigen::Ref<Eigen::Matrix<Float, -1, 1>> x, Eigen::Matrix<Float, -1, 1>& g) const
|
77
|
+
{
|
78
|
+
auto mappedX = Eigen::Map<Eigen::Matrix<Float, -1, -1>>(x.data(), this->K, this->F);
|
79
|
+
auto mappedG = Eigen::Map<Eigen::Matrix<Float, -1, -1>>(g.data(), this->K, this->F);
|
80
|
+
|
81
|
+
Float fx = 0;
|
82
|
+
for (size_t k = 0; k < this->K; ++k)
|
83
|
+
{
|
84
|
+
fx += getIntegratedLambdaSq(mappedX.row(k));
|
85
|
+
getIntegratedLambdaSqP(mappedX.row(k), mappedG.row(k));
|
86
|
+
}
|
87
|
+
return fx;
|
88
|
+
}
|
89
|
+
|
90
|
+
Float evaluateLambdaObj(Eigen::Ref<Eigen::Matrix<Float, -1, 1>> x, Eigen::Matrix<Float, -1, 1>& g, ThreadPool& pool, _ModelState* localData) const
|
91
|
+
{
|
92
|
+
// if one of x is greater than maxLambda, return +inf for preventing search more
|
93
|
+
if ((x.array() > this->maxLambda).any()) return INFINITY;
|
94
|
+
|
95
|
+
const auto K = this->K;
|
96
|
+
const auto F = this->F;
|
97
|
+
|
98
|
+
auto mappedX = Eigen::Map<Eigen::Matrix<Float, -1, -1>>(x.data(), K, F);
|
99
|
+
Float fx = -static_cast<const DerivedClass*>(this)->getNegativeLambdaLL(x, g);
|
100
|
+
|
101
|
+
std::vector<std::future<Eigen::Matrix<Float, -1, 1>>> res;
|
102
|
+
const size_t chStride = pool.getNumWorkers() * 8;
|
103
|
+
for (size_t ch = 0; ch < chStride; ++ch)
|
104
|
+
{
|
105
|
+
res.emplace_back(pool.enqueue([&, this](size_t threadId)
|
106
|
+
{
|
107
|
+
auto& ld = localData[threadId];
|
108
|
+
thread_local Eigen::Matrix<Float, -1, 1> alphas{ K }, tmpK{ K }, terms{ F };
|
109
|
+
Eigen::Matrix<Float, -1, 1> ret = Eigen::Matrix<Float, -1, 1>::Zero(F * K + 1);
|
110
|
+
for (size_t docId = ch; docId < this->docs.size(); docId += chStride)
|
111
|
+
{
|
112
|
+
const auto& doc = this->docs[docId];
|
113
|
+
const auto& vx = doc.metadataNormalized;
|
114
|
+
getTermsFromMd(&vx[0], terms.data());
|
115
|
+
for (Tid k = 0; k < K; ++k)
|
116
|
+
{
|
117
|
+
alphas[k] = exp(mappedX.row(k) * terms) + this->alphaEps;
|
118
|
+
ret[K * F] -= math::lgammaT(alphas[k]) - math::lgammaT(doc.numByTopic[k] + alphas[k]);
|
119
|
+
assert(std::isfinite(ret[K * F]));
|
120
|
+
if (!std::isfinite(alphas[k]) && alphas[k] > 0) tmpK[k] = 0;
|
121
|
+
else tmpK[k] = -(math::digammaT(alphas[k]) - math::digammaT(doc.numByTopic[k] + alphas[k]));
|
122
|
+
}
|
123
|
+
Float alphaSum = alphas.sum();
|
124
|
+
ret[K * F] += math::lgammaT(alphaSum) - math::lgammaT(doc.getSumWordWeight() + alphaSum);
|
125
|
+
Float t = math::digammaT(alphaSum) - math::digammaT(doc.getSumWordWeight() + alphaSum);
|
126
|
+
if (!std::isfinite(alphaSum) && alphaSum > 0)
|
127
|
+
{
|
128
|
+
ret[K * F] = -INFINITY;
|
129
|
+
t = 0;
|
130
|
+
}
|
131
|
+
for (size_t f = 0; f < F; ++f)
|
132
|
+
{
|
133
|
+
ret.segment(f * K, K).array() -= ((tmpK.array() + t) * alphas.array()) * terms[f];
|
134
|
+
}
|
135
|
+
assert(ret.allFinite());
|
136
|
+
}
|
137
|
+
return ret;
|
138
|
+
}));
|
139
|
+
}
|
140
|
+
for (auto& r : res)
|
141
|
+
{
|
142
|
+
auto ret = r.get();
|
143
|
+
fx += ret[K * F];
|
144
|
+
g += ret.head(K * F);
|
145
|
+
}
|
146
|
+
|
147
|
+
// positive fx is an error from limited precision of float.
|
148
|
+
if (fx > 0) return INFINITY;
|
149
|
+
return -fx;
|
150
|
+
}
|
151
|
+
|
152
|
+
void getTermsFromMd(const Float* vx, Float* out, bool normalize = false) const
|
153
|
+
{
|
154
|
+
thread_local std::vector<size_t> digit(degreeByF.size());
|
155
|
+
std::fill(digit.begin(), digit.end(), 0);
|
156
|
+
|
157
|
+
thread_local std::vector<std::vector<Float>> slpCache;
|
158
|
+
if (slpCache.empty())
|
159
|
+
{
|
160
|
+
for (auto& f : degreeByF)
|
161
|
+
{
|
162
|
+
slpCache.emplace_back(std::vector<Float>(f));
|
163
|
+
}
|
164
|
+
}
|
165
|
+
|
166
|
+
|
167
|
+
for (size_t n = 0; n < degreeByF.size(); ++n)
|
168
|
+
{
|
169
|
+
for (size_t i = 0; i < degreeByF[n]; ++i)
|
170
|
+
{
|
171
|
+
slpCache[n][i] = slp::slpGet(i + 1, normalize ? ((vx[n] - mdIntercepts[n]) / mdCoefs[n]) : vx[n]);
|
172
|
+
}
|
173
|
+
}
|
174
|
+
|
175
|
+
for (size_t i = 0; i < this->F; ++i)
|
176
|
+
{
|
177
|
+
out[i] = 1;
|
178
|
+
for (size_t n = 0; n < degreeByF.size(); ++n)
|
179
|
+
{
|
180
|
+
if(digit[n]) out[i] *= slpCache[n][digit[n] - 1];
|
181
|
+
}
|
182
|
+
|
183
|
+
size_t u;
|
184
|
+
for (u = 0; u < digit.size() && ++digit[u] > degreeByF[u]; ++u)
|
185
|
+
{
|
186
|
+
digit[u] = 0;
|
187
|
+
}
|
188
|
+
u = std::min(u, degreeByF.size() - 1);
|
189
|
+
}
|
190
|
+
}
|
191
|
+
|
192
|
+
template<bool _asymEta>
|
193
|
+
Float* getZLikelihoods(_ModelState& ld, const _DocType& doc, size_t docId, size_t vid) const
|
194
|
+
{
|
195
|
+
const size_t V = this->realV;
|
196
|
+
assert(vid < V);
|
197
|
+
auto etaHelper = this->template getEtaHelper<_asymEta>();
|
198
|
+
auto& zLikelihood = ld.zLikelihood;
|
199
|
+
thread_local Eigen::Matrix<Float, -1, 1> terms{ this->F };
|
200
|
+
getTermsFromMd(&doc.metadataNormalized[0], terms.data());
|
201
|
+
zLikelihood = (doc.numByTopic.array().template cast<Float>() + (this->lambda * terms).array().exp() + this->alphaEps)
|
202
|
+
* (ld.numByTopicWord.col(vid).array().template cast<Float>() + etaHelper.getEta(vid))
|
203
|
+
/ (ld.numByTopic.array().template cast<Float>() + etaHelper.getEtaSum());
|
204
|
+
|
205
|
+
sample::prefixSum(zLikelihood.data(), this->K);
|
206
|
+
return &zLikelihood[0];
|
207
|
+
}
|
208
|
+
|
209
|
+
template<typename _DocIter>
|
210
|
+
double getLLDocs(_DocIter _first, _DocIter _last) const
|
211
|
+
{
|
212
|
+
const auto K = this->K;
|
213
|
+
double ll = 0;
|
214
|
+
|
215
|
+
Eigen::Matrix<Float, -1, 1> alphas(K);
|
216
|
+
for (; _first != _last; ++_first)
|
217
|
+
{
|
218
|
+
auto& doc = *_first;
|
219
|
+
thread_local Eigen::Matrix<Float, -1, 1> terms{ this->F };
|
220
|
+
getTermsFromMd(&doc.metadataNormalized[0], terms.data());
|
221
|
+
for (Tid k = 0; k < K; ++k)
|
222
|
+
{
|
223
|
+
alphas[k] = exp(this->lambda.row(k) * terms) + this->alphaEps;
|
224
|
+
}
|
225
|
+
Float alphaSum = alphas.sum();
|
226
|
+
for (Tid k = 0; k < K; ++k)
|
227
|
+
{
|
228
|
+
if (!doc.numByTopic[k]) continue;
|
229
|
+
ll += math::lgammaT(doc.numByTopic[k] + alphas[k]) - math::lgammaT(alphas[k]);
|
230
|
+
}
|
231
|
+
ll -= math::lgammaT(doc.getSumWordWeight() + alphaSum) - math::lgammaT(alphaSum);
|
232
|
+
}
|
233
|
+
return ll;
|
234
|
+
}
|
235
|
+
|
236
|
+
double getLLRest(const _ModelState& ld) const
|
237
|
+
{
|
238
|
+
const size_t V = this->realV;
|
239
|
+
const auto K = this->K;
|
240
|
+
const auto eta = this->eta;
|
241
|
+
double ll = 0;
|
242
|
+
for (size_t k = 0; k < K; ++k)
|
243
|
+
{
|
244
|
+
ll += getIntegratedLambdaSq(this->lambda.row(k));
|
245
|
+
}
|
246
|
+
ll /= -2 * pow(this->sigma, 2);
|
247
|
+
|
248
|
+
auto lgammaEta = math::lgammaT(eta);
|
249
|
+
ll += math::lgammaT(V*eta) * K;
|
250
|
+
for (Tid k = 0; k < K; ++k)
|
251
|
+
{
|
252
|
+
ll -= math::lgammaT(ld.numByTopic[k] + V * eta);
|
253
|
+
for (Vid v = 0; v < V; ++v)
|
254
|
+
{
|
255
|
+
if (!ld.numByTopicWord(k, v)) continue;
|
256
|
+
ll += math::lgammaT(ld.numByTopicWord(k, v) + eta) - lgammaEta;
|
257
|
+
}
|
258
|
+
}
|
259
|
+
return ll;
|
260
|
+
}
|
261
|
+
|
262
|
+
void collectMinMaxMetadata()
|
263
|
+
{
|
264
|
+
size_t s = degreeByF.size();
|
265
|
+
if (mdIntercepts.size() < s)
|
266
|
+
{
|
267
|
+
mdIntercepts.resize(s, FLT_MAX);
|
268
|
+
mdMax.resize(s, FLT_MIN);
|
269
|
+
}
|
270
|
+
mdCoefs.resize(s, 0);
|
271
|
+
|
272
|
+
for (auto& doc : this->docs)
|
273
|
+
{
|
274
|
+
for (size_t i = 0; i < s; ++i)
|
275
|
+
{
|
276
|
+
mdIntercepts[i] = std::min(mdIntercepts[i], doc.metadataOrg[i]);
|
277
|
+
mdMax[i] = std::max(mdMax[i], doc.metadataOrg[i]);
|
278
|
+
}
|
279
|
+
}
|
280
|
+
for (size_t i = 0; i < s; ++i)
|
281
|
+
{
|
282
|
+
mdCoefs[i] = mdMax[i] - mdIntercepts[i];
|
283
|
+
if (mdCoefs[i] == 0) mdCoefs[i] = 1;
|
284
|
+
}
|
285
|
+
}
|
286
|
+
|
287
|
+
std::vector<Float> normalizeMetadata(const std::vector<Float>& metadata) const
|
288
|
+
{
|
289
|
+
std::vector<Float> ret(degreeByF.size());
|
290
|
+
for (size_t i = 0; i < degreeByF.size(); ++i)
|
291
|
+
{
|
292
|
+
ret[i] = mdCoefs[i] ? (metadata[i] - mdIntercepts[i]) / mdCoefs[i] : 0;
|
293
|
+
}
|
294
|
+
return ret;
|
295
|
+
}
|
296
|
+
|
297
|
+
void prepareDoc(_DocType& doc, size_t docId, size_t wordSize) const
|
298
|
+
{
|
299
|
+
BaseClass::prepareDoc(doc, docId, wordSize);
|
300
|
+
doc.metadataNormalized = normalizeMetadata(doc.metadataOrg);
|
301
|
+
}
|
302
|
+
|
303
|
+
void initGlobalState(bool initDocs)
|
304
|
+
{
|
305
|
+
BaseClass::BaseClass::initGlobalState(initDocs);
|
306
|
+
this->F = accumulate(degreeByF.begin(), degreeByF.end(), 1, [](size_t a, size_t b) {return a * (b + 1); });
|
307
|
+
if (initDocs) collectMinMaxMetadata();
|
308
|
+
else
|
309
|
+
{
|
310
|
+
// Old binary file has metadataNormalized values into `metadataOrg`
|
311
|
+
if (this->docs[0].metadataNormalized.empty()
|
312
|
+
&& !this->docs[0].metadataOrg.empty())
|
313
|
+
{
|
314
|
+
for (auto& doc : this->docs)
|
315
|
+
{
|
316
|
+
doc.metadataNormalized = doc.metadataOrg;
|
317
|
+
for (size_t i = 0; i < degreeByF.size(); ++i)
|
318
|
+
{
|
319
|
+
doc.metadataOrg[i] = mdIntercepts[i] + doc.metadataOrg[i] * mdCoefs[i];
|
320
|
+
}
|
321
|
+
}
|
322
|
+
}
|
323
|
+
}
|
324
|
+
|
325
|
+
if (initDocs)
|
326
|
+
{
|
327
|
+
this->lambda = Eigen::Matrix<Float, -1, -1>::Zero(this->K, this->F);
|
328
|
+
this->lambda.col(0).fill(log(this->alpha));
|
329
|
+
}
|
330
|
+
LBFGSpp::LBFGSParam<Float> param;
|
331
|
+
param.max_iterations = this->maxBFGSIteration;
|
332
|
+
this->solver = decltype(this->solver){ param };
|
333
|
+
}
|
334
|
+
|
335
|
+
public:
|
336
|
+
DEFINE_SERIALIZER_AFTER_BASE_WITH_VERSION(BaseClass, 0, sigma0, degreeByF, mdCoefs, mdIntercepts);
|
337
|
+
DEFINE_TAGGED_SERIALIZER_AFTER_BASE_WITH_VERSION(BaseClass, 1, 0x00010001, sigma0, degreeByF, mdCoefs, mdIntercepts, mdMax);
|
338
|
+
|
339
|
+
GDMRModel(size_t _K = 1, const std::vector<uint64_t>& _degreeByF = {},
|
340
|
+
Float defaultAlpha = 1.0, Float _sigma = 1.0, Float _sigma0 = 1.0, Float _eta = 0.01,
|
341
|
+
Float _alphaEps = 1e-10, size_t _rg = std::random_device{}())
|
342
|
+
: BaseClass(_K, defaultAlpha, _sigma, _eta, _alphaEps, _rg), sigma0(_sigma0), degreeByF(_degreeByF)
|
343
|
+
{
|
344
|
+
this->F = accumulate(degreeByF.begin(), degreeByF.end(), 1, [](size_t a, size_t b) {return a * (b + 1); });
|
345
|
+
}
|
346
|
+
|
347
|
+
GETTER(Fs, const std::vector<uint64_t>&, degreeByF);
|
348
|
+
GETTER(Sigma0, Float, sigma0);
|
349
|
+
|
350
|
+
void setSigma0(Float _sigma0) override
|
351
|
+
{
|
352
|
+
this->sigma0 = _sigma0;
|
353
|
+
}
|
354
|
+
|
355
|
+
template<bool _const = false>
|
356
|
+
_DocType& _updateDoc(_DocType& doc, const std::vector<std::string>& metadata) const
|
357
|
+
{
|
358
|
+
if (metadata.size() != degreeByF.size())
|
359
|
+
throw std::invalid_argument{ "a length of `metadata` should be equal to a length of `degrees`" };
|
360
|
+
|
361
|
+
std::transform(metadata.begin(), metadata.end(), back_inserter(doc.metadataOrg), [](const std::string& w)
|
362
|
+
{
|
363
|
+
return std::stof(w);
|
364
|
+
});
|
365
|
+
return doc;
|
366
|
+
}
|
367
|
+
|
368
|
+
size_t addDoc(const std::vector<std::string>& words, const std::vector<std::string>& metadata) override
|
369
|
+
{
|
370
|
+
auto doc = this->_makeDoc(words);
|
371
|
+
return this->_addDoc(_updateDoc(doc, metadata));
|
372
|
+
}
|
373
|
+
|
374
|
+
std::unique_ptr<DocumentBase> makeDoc(const std::vector<std::string>& words, const std::vector<std::string>& metadata) const override
|
375
|
+
{
|
376
|
+
auto doc = as_mutable(this)->template _makeDoc<true>(words);
|
377
|
+
return make_unique<_DocType>(_updateDoc(doc, metadata));
|
378
|
+
}
|
379
|
+
|
380
|
+
size_t addDoc(const std::string& rawStr, const RawDocTokenizer::Factory& tokenizer,
|
381
|
+
const std::vector<std::string>& metadata) override
|
382
|
+
{
|
383
|
+
auto doc = this->template _makeRawDoc<false>(rawStr, tokenizer);
|
384
|
+
return this->_addDoc(_updateDoc(doc, metadata));
|
385
|
+
}
|
386
|
+
|
387
|
+
std::unique_ptr<DocumentBase> makeDoc(const std::string& rawStr, const RawDocTokenizer::Factory& tokenizer,
|
388
|
+
const std::vector<std::string>& metadata) const override
|
389
|
+
{
|
390
|
+
auto doc = as_mutable(this)->template _makeRawDoc<true>(rawStr, tokenizer);
|
391
|
+
return make_unique<_DocType>(as_mutable(this)->template _updateDoc<true>(doc, metadata));
|
392
|
+
}
|
393
|
+
|
394
|
+
size_t addDoc(const std::string& rawStr, const std::vector<Vid>& words,
|
395
|
+
const std::vector<uint32_t>& pos, const std::vector<uint16_t>& len,
|
396
|
+
const std::vector<std::string>& metadata) override
|
397
|
+
{
|
398
|
+
auto doc = this->_makeRawDoc(rawStr, words, pos, len);
|
399
|
+
return this->_addDoc(_updateDoc(doc, metadata));
|
400
|
+
}
|
401
|
+
|
402
|
+
std::unique_ptr<DocumentBase> makeDoc(const std::string& rawStr, const std::vector<Vid>& words,
|
403
|
+
const std::vector<uint32_t>& pos, const std::vector<uint16_t>& len,
|
404
|
+
const std::vector<std::string>& metadata) const override
|
405
|
+
{
|
406
|
+
auto doc = this->_makeRawDoc(rawStr, words, pos, len);
|
407
|
+
return make_unique<_DocType>(as_mutable(this)->template _updateDoc<true>(doc, metadata));
|
408
|
+
}
|
409
|
+
|
410
|
+
std::vector<Float> getTopicsByDoc(const _DocType& doc) const
|
411
|
+
{
|
412
|
+
Eigen::Matrix<Float, -1, 1> alphas(this->K);
|
413
|
+
thread_local Eigen::Matrix<Float, -1, 1> terms{ this->F };
|
414
|
+
getTermsFromMd(&doc.metadataNormalized[0], terms.data());
|
415
|
+
for (Tid k = 0; k < this->K; ++k)
|
416
|
+
{
|
417
|
+
alphas[k] = exp(this->lambda.row(k) * terms) + this->alphaEps;
|
418
|
+
}
|
419
|
+
std::vector<Float> ret(this->K);
|
420
|
+
Float sum = doc.getSumWordWeight() + alphas.sum();
|
421
|
+
for (size_t k = 0; k < this->K; ++k)
|
422
|
+
{
|
423
|
+
ret[k] = (doc.numByTopic[k] + alphas[k]) / sum;
|
424
|
+
}
|
425
|
+
return ret;
|
426
|
+
}
|
427
|
+
|
428
|
+
std::vector<Float> getLambdaByTopic(Tid tid) const override
|
429
|
+
{
|
430
|
+
std::vector<Float> ret(this->F);
|
431
|
+
for (size_t f = 0; f < this->F; ++f) ret[f] = this->lambda.row(tid)[f];
|
432
|
+
return ret;
|
433
|
+
}
|
434
|
+
|
435
|
+
std::vector<Float> getTDF(const Float* metadata, bool normalize) const override
|
436
|
+
{
|
437
|
+
Eigen::Matrix<Float, -1, 1> terms{ this->F };
|
438
|
+
getTermsFromMd(metadata, terms.data(), true);
|
439
|
+
std::vector<Float> ret(this->K);
|
440
|
+
Eigen::Map<Eigen::Array<Float, -1, 1>> retMap{ ret.data(), (Eigen::Index)ret.size() };
|
441
|
+
retMap = (this->lambda * terms).array();
|
442
|
+
if (normalize)
|
443
|
+
{
|
444
|
+
retMap = (retMap - retMap.maxCoeff()).exp();
|
445
|
+
retMap /= retMap.sum();
|
446
|
+
}
|
447
|
+
return ret;
|
448
|
+
}
|
449
|
+
|
450
|
+
std::vector<Float> getTDFBatch(const Float* metadata, size_t stride, size_t cnt, bool normalize) const override
|
451
|
+
{
|
452
|
+
Eigen::Matrix<Float, -1, -1> terms{ this->F, (Eigen::Index)cnt };
|
453
|
+
for (size_t i = 0; i < cnt; ++i)
|
454
|
+
{
|
455
|
+
getTermsFromMd(metadata + stride * i, terms.col(i).data(), true);
|
456
|
+
}
|
457
|
+
std::vector<Float> ret(this->K * cnt);
|
458
|
+
Eigen::Map<Eigen::Array<Float, -1, -1>> retMap{ ret.data(), (Eigen::Index)this->K, (Eigen::Index)cnt };
|
459
|
+
retMap = (this->lambda * terms).array();
|
460
|
+
if (normalize)
|
461
|
+
{
|
462
|
+
retMap.rowwise() -= retMap.colwise().maxCoeff();
|
463
|
+
retMap = retMap.exp();
|
464
|
+
retMap.rowwise() /= retMap.colwise().sum();
|
465
|
+
}
|
466
|
+
return ret;
|
467
|
+
}
|
468
|
+
void setMdRange(const std::vector<Float>& vMin, const std::vector<Float>& vMax) override
|
469
|
+
{
|
470
|
+
mdIntercepts = vMin;
|
471
|
+
mdMax = vMax;
|
472
|
+
}
|
473
|
+
|
474
|
+
void getMdRange(std::vector<Float>& vMin, std::vector<Float>& vMax) const override
|
475
|
+
{
|
476
|
+
vMin = mdIntercepts;
|
477
|
+
if (mdMax.empty())
|
478
|
+
{
|
479
|
+
vMax = mdIntercepts;
|
480
|
+
for (size_t i = 0; i < vMax.size(); ++i) vMax[i] += mdCoefs[i];
|
481
|
+
}
|
482
|
+
else vMax = mdMax;
|
483
|
+
}
|
484
|
+
};
|
485
|
+
}
|