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,74 @@
|
|
1
|
+
#pragma once
|
2
|
+
#include "LDA.h"
|
3
|
+
|
4
|
+
namespace tomoto
|
5
|
+
{
|
6
|
+
template<TermWeight _tw>
|
7
|
+
struct DocumentHDP : public DocumentLDA<_tw>
|
8
|
+
{
|
9
|
+
/*
|
10
|
+
For DocumentHDP, the topic in numByTopic, Zs indicates 'table id', not 'topic id'.
|
11
|
+
To get real 'topic id', check the topic field of numTopicByTable.
|
12
|
+
*/
|
13
|
+
using BaseDocument = DocumentLDA<_tw>;
|
14
|
+
using DocumentLDA<_tw>::DocumentLDA;
|
15
|
+
using WeightType = typename DocumentLDA<_tw>::WeightType;
|
16
|
+
struct TableTopicInfo
|
17
|
+
{
|
18
|
+
WeightType num;
|
19
|
+
Tid topic;
|
20
|
+
|
21
|
+
TableTopicInfo(WeightType _num = 0, Tid _topic = 0) : num(_num), topic(_topic)
|
22
|
+
{
|
23
|
+
}
|
24
|
+
|
25
|
+
operator const bool() const
|
26
|
+
{
|
27
|
+
return num > (WeightType)1e-2;
|
28
|
+
}
|
29
|
+
|
30
|
+
void serializerWrite(std::ostream& writer) const
|
31
|
+
{
|
32
|
+
serializer::writeMany(writer, topic);
|
33
|
+
}
|
34
|
+
|
35
|
+
void serializerRead(std::istream& reader)
|
36
|
+
{
|
37
|
+
serializer::readMany(reader, topic);
|
38
|
+
}
|
39
|
+
};
|
40
|
+
std::vector<TableTopicInfo> numTopicByTable;
|
41
|
+
|
42
|
+
DEFINE_SERIALIZER_AFTER_BASE_WITH_VERSION(BaseDocument, 0, numTopicByTable);
|
43
|
+
DEFINE_TAGGED_SERIALIZER_AFTER_BASE_WITH_VERSION(BaseDocument, 1, 0x00010001, numTopicByTable);
|
44
|
+
|
45
|
+
size_t getNumTable() const
|
46
|
+
{
|
47
|
+
return std::count_if(numTopicByTable.begin(), numTopicByTable.end(), [](const TableTopicInfo& e) { return (bool)e; });
|
48
|
+
}
|
49
|
+
|
50
|
+
// add a new table into doc and return the new table's idx
|
51
|
+
size_t addNewTable(Tid tid)
|
52
|
+
{
|
53
|
+
return insertIntoEmpty(numTopicByTable, TableTopicInfo( 0, tid ));
|
54
|
+
}
|
55
|
+
|
56
|
+
template<typename _TopicModel> void update(WeightType* ptr, const _TopicModel& mdl);
|
57
|
+
};
|
58
|
+
|
59
|
+
class IHDPModel : public ILDAModel
|
60
|
+
{
|
61
|
+
public:
|
62
|
+
using DefaultDocType = DocumentHDP<TermWeight::one>;
|
63
|
+
static IHDPModel* create(TermWeight _weight, size_t _K = 1,
|
64
|
+
Float alpha = 0.1, Float eta = 0.01, Float gamma = 0.1, size_t seed = std::random_device{}(),
|
65
|
+
bool scalarRng = false);
|
66
|
+
|
67
|
+
virtual Float getGamma() const = 0;
|
68
|
+
virtual size_t getTotalTables() const = 0;
|
69
|
+
virtual size_t getLiveK() const = 0;
|
70
|
+
virtual bool isLiveTopic(Tid tid) const = 0;
|
71
|
+
|
72
|
+
virtual std::unique_ptr<ILDAModel> convertToLDA(float topicThreshold, std::vector<Tid>& newK) const = 0;
|
73
|
+
};
|
74
|
+
}
|
@@ -0,0 +1,13 @@
|
|
1
|
+
#include "HDPModel.hpp"
|
2
|
+
|
3
|
+
namespace tomoto
|
4
|
+
{
|
5
|
+
/*template class HDPModel<TermWeight::one>;
|
6
|
+
template class HDPModel<TermWeight::idf>;
|
7
|
+
template class HDPModel<TermWeight::pmi>;*/
|
8
|
+
|
9
|
+
IHDPModel* IHDPModel::create(TermWeight _weight, size_t _K, Float _alpha , Float _eta, Float _gamma, size_t seed, bool scalarRng)
|
10
|
+
{
|
11
|
+
TMT_SWITCH_TW(_weight, scalarRng, HDPModel, _K, _alpha, _eta, _gamma, seed);
|
12
|
+
}
|
13
|
+
}
|
@@ -0,0 +1,592 @@
|
|
1
|
+
#pragma once
|
2
|
+
#include "LDAModel.hpp"
|
3
|
+
#include "HDP.h"
|
4
|
+
|
5
|
+
/*
|
6
|
+
Implementation of HDP using Gibbs sampling by bab2min
|
7
|
+
|
8
|
+
* Teh, Y. W., Jordan, M. I., Beal, M. J., & Blei, D. M. (2005). Sharing clusters among related groups: Hierarchical Dirichlet processes. In Advances in neural information processing systems (pp. 1385-1392).
|
9
|
+
* Newman, D., Asuncion, A., Smyth, P., & Welling, M. (2009). Distributed algorithms for topic models. Journal of Machine Learning Research, 10(Aug), 1801-1828.
|
10
|
+
*/
|
11
|
+
|
12
|
+
namespace tomoto
|
13
|
+
{
|
14
|
+
template<TermWeight _tw>
|
15
|
+
struct ModelStateHDP : public ModelStateLDA<_tw>
|
16
|
+
{
|
17
|
+
Eigen::Matrix<Float, -1, 1> tableLikelihood, topicLikelihood;
|
18
|
+
Eigen::Matrix<int32_t, -1, 1> numTableByTopic;
|
19
|
+
size_t totalTable = 0;
|
20
|
+
|
21
|
+
DEFINE_SERIALIZER_AFTER_BASE(ModelStateLDA<_tw>, numTableByTopic, totalTable);
|
22
|
+
};
|
23
|
+
|
24
|
+
template<TermWeight _tw, typename _RandGen,
|
25
|
+
typename _Interface = IHDPModel,
|
26
|
+
typename _Derived = void,
|
27
|
+
typename _DocType = DocumentHDP<_tw>,
|
28
|
+
typename _ModelState = ModelStateHDP<_tw>>
|
29
|
+
class HDPModel : public LDAModel<_tw, _RandGen, 0, _Interface,
|
30
|
+
typename std::conditional<std::is_same<_Derived, void>::value, HDPModel<_tw, _RandGen>, _Derived>::type,
|
31
|
+
_DocType, _ModelState>
|
32
|
+
{
|
33
|
+
protected:
|
34
|
+
using DerivedClass = typename std::conditional<std::is_same<_Derived, void>::value, HDPModel<_tw, _RandGen>, _Derived>::type;
|
35
|
+
using BaseClass = LDAModel<_tw, _RandGen, 0, _Interface, DerivedClass, _DocType, _ModelState>;
|
36
|
+
friend BaseClass;
|
37
|
+
friend typename BaseClass::BaseClass;
|
38
|
+
using WeightType = typename BaseClass::WeightType;
|
39
|
+
|
40
|
+
Float gamma;
|
41
|
+
|
42
|
+
template<typename _NumFunc>
|
43
|
+
static Float estimateConcentrationParameter(_NumFunc ns, Float tableCnt, size_t size, Float alpha, _RandGen& rgs)
|
44
|
+
{
|
45
|
+
Float a = 1, b = 1;
|
46
|
+
for (size_t i = 0; i < 10; ++i)
|
47
|
+
{
|
48
|
+
Float sumLogW = 0;
|
49
|
+
Float sumS = 0;
|
50
|
+
for (size_t j = 0; j < size; ++j)
|
51
|
+
{
|
52
|
+
Float w = math::beta_distribution<Float>{ alpha + 1, (Float)ns(j) }(rgs);
|
53
|
+
Float s = std::bernoulli_distribution{ ns(j) / (ns(j) + alpha) }(rgs) ? 1 : 0;
|
54
|
+
sumLogW += log(w);
|
55
|
+
sumS += s;
|
56
|
+
}
|
57
|
+
a += tableCnt - sumS;
|
58
|
+
b -= sumLogW;
|
59
|
+
alpha = std::gamma_distribution<Float>{ a, 1 / b }(rgs);
|
60
|
+
}
|
61
|
+
return alpha;
|
62
|
+
}
|
63
|
+
|
64
|
+
void optimizeParameters(ThreadPool& pool, _ModelState* localData, _RandGen* rgs)
|
65
|
+
{
|
66
|
+
size_t tableCnt = 0;
|
67
|
+
for (auto& doc : this->docs)
|
68
|
+
{
|
69
|
+
tableCnt += doc.getNumTable();
|
70
|
+
}
|
71
|
+
|
72
|
+
this->alpha = estimateConcentrationParameter([this](size_t s)
|
73
|
+
{
|
74
|
+
return this->docs[s].getSumWordWeight();
|
75
|
+
}, tableCnt, this->docs.size(), this->alpha, *rgs);
|
76
|
+
|
77
|
+
gamma = estimateConcentrationParameter([this](size_t)
|
78
|
+
{
|
79
|
+
return this->globalState.totalTable;
|
80
|
+
}, this->getLiveK(), 1, gamma, *rgs);
|
81
|
+
}
|
82
|
+
|
83
|
+
size_t addTopic(_ModelState& ld) const
|
84
|
+
{
|
85
|
+
const size_t V = this->realV;
|
86
|
+
size_t pos;
|
87
|
+
for (pos = 0; pos < ld.numTableByTopic.size(); ++pos)
|
88
|
+
{
|
89
|
+
if (!ld.numTableByTopic[pos]) break;
|
90
|
+
}
|
91
|
+
|
92
|
+
if (pos >= ld.numByTopic.size())
|
93
|
+
{
|
94
|
+
size_t oldSize = ld.numByTopic.size(), newSize = pos + 1;
|
95
|
+
ld.numTableByTopic.conservativeResize(newSize);
|
96
|
+
ld.numTableByTopic.tail(newSize - oldSize).setZero();
|
97
|
+
ld.numByTopic.conservativeResize(newSize);
|
98
|
+
ld.numByTopic.tail(newSize - oldSize).setZero();
|
99
|
+
ld.numByTopicWord.conservativeResize(newSize, Eigen::NoChange);
|
100
|
+
ld.numByTopicWord.block(oldSize, 0, newSize - oldSize, V).setZero();
|
101
|
+
}
|
102
|
+
else
|
103
|
+
{
|
104
|
+
ld.numByTopic[pos] = 0;
|
105
|
+
ld.numByTopicWord.row(pos).setZero();
|
106
|
+
}
|
107
|
+
return pos;
|
108
|
+
}
|
109
|
+
|
110
|
+
void calcWordTopicProb(_ModelState& ld, Vid vid) const
|
111
|
+
{
|
112
|
+
const size_t V = this->realV;
|
113
|
+
const auto K = ld.numByTopic.size();
|
114
|
+
assert(vid < V);
|
115
|
+
auto& zLikelihood = ld.zLikelihood;
|
116
|
+
zLikelihood.resize(K + 1);
|
117
|
+
zLikelihood.head(K) = (ld.numByTopicWord.col(vid).array().template cast<Float>() + this->eta)
|
118
|
+
/ (ld.numByTopic.array().template cast<Float>() + V * this->eta);
|
119
|
+
zLikelihood[K] = 1. / V;
|
120
|
+
}
|
121
|
+
|
122
|
+
Float* getTableLikelihoods(_ModelState& ld, _DocType& doc, Vid vid) const
|
123
|
+
{
|
124
|
+
assert(vid < this->realV);
|
125
|
+
const size_t T = doc.numTopicByTable.size();
|
126
|
+
const auto K = ld.numByTopic.size();
|
127
|
+
Float acc = 0;
|
128
|
+
ld.tableLikelihood.resize(T + 1);
|
129
|
+
for (size_t t = 0; t < T; ++t)
|
130
|
+
{
|
131
|
+
ld.tableLikelihood[t] = acc += doc.numTopicByTable[t].num * ld.zLikelihood[doc.numTopicByTable[t].topic];
|
132
|
+
}
|
133
|
+
Float pNewTable = ld.zLikelihood[K] / (gamma + ld.totalTable);
|
134
|
+
ld.tableLikelihood[T] = acc += this->alpha * pNewTable;
|
135
|
+
return &ld.tableLikelihood[0];
|
136
|
+
}
|
137
|
+
|
138
|
+
Float* getTopicLikelihoods(_ModelState& ld) const
|
139
|
+
{
|
140
|
+
const size_t V = this->realV;
|
141
|
+
const auto K = ld.numByTopic.size();
|
142
|
+
ld.topicLikelihood.resize(K + 1);
|
143
|
+
ld.topicLikelihood.head(K) = ld.zLikelihood.head(K).array().template cast<Float>() * ld.numTableByTopic.array().template cast<Float>();
|
144
|
+
ld.topicLikelihood[K] = ld.zLikelihood[K] * gamma;
|
145
|
+
sample::prefixSum(ld.topicLikelihood.data(), ld.topicLikelihood.size());
|
146
|
+
return &ld.topicLikelihood[0];
|
147
|
+
}
|
148
|
+
|
149
|
+
template<int _inc>
|
150
|
+
inline void addOnlyWordTo(_ModelState& ld, _DocType& doc, uint32_t pid, Vid vid, Tid tid) const
|
151
|
+
{
|
152
|
+
assert(tid < ld.numTableByTopic.size());
|
153
|
+
assert(vid < this->realV);
|
154
|
+
|
155
|
+
if (_inc > 0 && tid >= doc.numByTopic.size())
|
156
|
+
{
|
157
|
+
size_t oldSize = doc.numByTopic.size();
|
158
|
+
doc.numByTopic.conservativeResize(tid + 1);
|
159
|
+
doc.numByTopic.tail(tid + 1 - oldSize).setZero();
|
160
|
+
}
|
161
|
+
constexpr bool _dec = _inc < 0 && _tw != TermWeight::one;
|
162
|
+
typename std::conditional<_tw != TermWeight::one, float, int32_t>::type weight
|
163
|
+
= _tw != TermWeight::one ? doc.wordWeights[pid] : 1;
|
164
|
+
|
165
|
+
updateCnt<_dec>(doc.numByTopic[tid], _inc * weight);
|
166
|
+
updateCnt<_dec>(ld.numByTopic[tid], _inc * weight);
|
167
|
+
updateCnt<_dec>(ld.numByTopicWord(tid, vid), _inc * weight);
|
168
|
+
}
|
169
|
+
|
170
|
+
template<int _inc>
|
171
|
+
inline void addWordTo(_ModelState& ld, _DocType& doc, uint32_t pid, Vid vid, size_t tableId, Tid tid) const
|
172
|
+
{
|
173
|
+
addOnlyWordTo<_inc>(ld, doc, pid, vid, tid);
|
174
|
+
constexpr bool _dec = _inc < 0 && _tw != TermWeight::one;
|
175
|
+
typename std::conditional<_tw != TermWeight::one, float, int32_t>::type weight
|
176
|
+
= _tw != TermWeight::one ? doc.wordWeights[pid] : 1;
|
177
|
+
|
178
|
+
if (_inc < 0) assert(doc.numTopicByTable[tableId].num > 0);
|
179
|
+
updateCnt<_dec>(doc.numTopicByTable[tableId].num, _inc * weight);
|
180
|
+
if (_inc < 0 && !doc.numTopicByTable[tableId]) // deleting table
|
181
|
+
{
|
182
|
+
size_t topic = doc.numTopicByTable[tableId].topic;
|
183
|
+
updateCnt<_dec>(ld.numTableByTopic[topic], _inc);
|
184
|
+
ld.totalTable += _inc;
|
185
|
+
|
186
|
+
if (!ld.numTableByTopic[topic]) // delete topic
|
187
|
+
{
|
188
|
+
//printf("Deleted Topic #%zd\n", topic);
|
189
|
+
}
|
190
|
+
}
|
191
|
+
}
|
192
|
+
|
193
|
+
template<ParallelScheme _ps, bool _infer, typename _ExtraDocData>
|
194
|
+
void sampleDocument(_DocType& doc, const _ExtraDocData& edd, size_t docId, _ModelState& ld, _RandGen& rgs, size_t iterationCnt, size_t partitionId = 0) const
|
195
|
+
{
|
196
|
+
// sample a table for each word
|
197
|
+
for (size_t w = 0; w < doc.words.size(); ++w)
|
198
|
+
{
|
199
|
+
if (doc.words[w] >= this->realV) continue;
|
200
|
+
addWordTo<-1>(ld, doc, w, doc.words[w], doc.Zs[w], doc.numTopicByTable[doc.Zs[w]].topic);
|
201
|
+
calcWordTopicProb(ld, doc.words[w]);
|
202
|
+
auto topicDist = getTopicLikelihoods(ld);
|
203
|
+
auto dist = getTableLikelihoods(ld, doc, doc.words[w]);
|
204
|
+
doc.Zs[w] = sample::sampleFromDiscreteAcc(dist, dist + doc.numTopicByTable.size() + 1, rgs);
|
205
|
+
if (doc.Zs[w] == doc.numTopicByTable.size()) // create new table
|
206
|
+
{
|
207
|
+
size_t K = ld.numByTopic.size();
|
208
|
+
Tid newTopic = sample::sampleFromDiscreteAcc(topicDist, topicDist + K + (_infer ? 0 : 1), rgs);
|
209
|
+
if (newTopic == K) // create new topic
|
210
|
+
{
|
211
|
+
newTopic = addTopic(ld);
|
212
|
+
//printf("New Topic #%zd\n", newTopic);
|
213
|
+
}
|
214
|
+
doc.Zs[w] = doc.addNewTable(newTopic);
|
215
|
+
++ld.numTableByTopic[newTopic];
|
216
|
+
++ld.totalTable;
|
217
|
+
}
|
218
|
+
addWordTo<1>(ld, doc, w, doc.words[w], doc.Zs[w], doc.numTopicByTable[doc.Zs[w]].topic);
|
219
|
+
}
|
220
|
+
|
221
|
+
// sample a topic for each table
|
222
|
+
for (size_t t = 0; t < doc.getNumTable(); ++t)
|
223
|
+
{
|
224
|
+
auto& curTable = doc.numTopicByTable[t];
|
225
|
+
if (!curTable) continue;
|
226
|
+
--ld.numTableByTopic[curTable.topic];
|
227
|
+
size_t K = ld.numByTopic.size();
|
228
|
+
ld.zLikelihood.resize(K + 1);
|
229
|
+
ld.zLikelihood.setZero();
|
230
|
+
for (size_t w = 0; w < doc.words.size(); ++w)
|
231
|
+
{
|
232
|
+
if (doc.words[w] >= this->realV) continue;
|
233
|
+
if (doc.Zs[w] != t) continue;
|
234
|
+
addOnlyWordTo<-1>(ld, doc, w, doc.words[w], curTable.topic);
|
235
|
+
ld.zLikelihood.head(K).array() += ((ld.numByTopicWord.col(doc.words[w]).array().template cast<Float>() + this->eta)
|
236
|
+
/ (ld.numByTopic.array().template cast<Float>() + this->realV * this->eta)).log();
|
237
|
+
ld.zLikelihood[K] += log(1. / this->realV);
|
238
|
+
}
|
239
|
+
|
240
|
+
// turn off dead topics
|
241
|
+
for (size_t k = 0; k < K; ++k)
|
242
|
+
{
|
243
|
+
if (!ld.numTableByTopic[k]) ld.zLikelihood[k] = -INFINITY;
|
244
|
+
}
|
245
|
+
|
246
|
+
ld.zLikelihood = (ld.zLikelihood.array() - ld.zLikelihood.maxCoeff()).exp();
|
247
|
+
auto topicDist = getTopicLikelihoods(ld);
|
248
|
+
Tid newTopic = sample::sampleFromDiscreteAcc(topicDist, topicDist + K + (_infer ? 0 : 1), rgs);
|
249
|
+
if (newTopic == K) // create new topic
|
250
|
+
{
|
251
|
+
newTopic = addTopic(ld);
|
252
|
+
//printf("New Topic #%zd\n", newTopic);
|
253
|
+
}
|
254
|
+
curTable.topic = newTopic;
|
255
|
+
for (size_t w = 0; w < doc.words.size(); ++w)
|
256
|
+
{
|
257
|
+
if (doc.words[w] >= this->realV) continue;
|
258
|
+
if (doc.Zs[w] != t) continue;
|
259
|
+
addOnlyWordTo<1>(ld, doc, w, doc.words[w], curTable.topic);
|
260
|
+
}
|
261
|
+
++ld.numTableByTopic[curTable.topic];
|
262
|
+
}
|
263
|
+
}
|
264
|
+
|
265
|
+
void updateGlobalInfo(ThreadPool& pool, _ModelState* localData)
|
266
|
+
{
|
267
|
+
std::vector<std::future<void>> res;
|
268
|
+
auto& K = this->K;
|
269
|
+
K = 0;
|
270
|
+
for (size_t i = 0; i < pool.getNumWorkers(); ++i)
|
271
|
+
{
|
272
|
+
K = std::max(K, (Tid)localData[i].numByTopic.size());
|
273
|
+
}
|
274
|
+
|
275
|
+
// synchronize topic size of all documents
|
276
|
+
for (size_t i = 0; i < pool.getNumWorkers(); ++i)
|
277
|
+
{
|
278
|
+
res.emplace_back(pool.enqueue([&, this](size_t threadId, size_t b, size_t e)
|
279
|
+
{
|
280
|
+
for (size_t j = b; j < e; ++j)
|
281
|
+
{
|
282
|
+
auto& doc = this->docs[j];
|
283
|
+
if (doc.numByTopic.size() >= K) continue;
|
284
|
+
size_t oldSize = doc.numByTopic.size();
|
285
|
+
doc.numByTopic.conservativeResize(K);
|
286
|
+
doc.numByTopic.tail(K - oldSize).setZero();
|
287
|
+
}
|
288
|
+
}, this->docs.size() * i / pool.getNumWorkers(), this->docs.size() * (i + 1) / pool.getNumWorkers()));
|
289
|
+
}
|
290
|
+
for (auto& r : res) r.get();
|
291
|
+
}
|
292
|
+
|
293
|
+
template<ParallelScheme _ps, typename _ExtraDocData>
|
294
|
+
void mergeState(ThreadPool& pool, _ModelState& globalState, _ModelState& tState, _ModelState* localData, _RandGen*, const _ExtraDocData& edd) const
|
295
|
+
{
|
296
|
+
std::vector<std::future<void>> res;
|
297
|
+
const size_t V = this->realV;
|
298
|
+
auto K = this->K;
|
299
|
+
|
300
|
+
if (K > globalState.numByTopic.size())
|
301
|
+
{
|
302
|
+
size_t oldSize = globalState.numByTopic.size();
|
303
|
+
globalState.numByTopic.conservativeResize(K);
|
304
|
+
globalState.numByTopic.tail(K - oldSize).setZero();
|
305
|
+
globalState.numTableByTopic.conservativeResize(K);
|
306
|
+
globalState.numTableByTopic.tail(K - oldSize).setZero();
|
307
|
+
globalState.numByTopicWord.conservativeResize(K, Eigen::NoChange);
|
308
|
+
globalState.numByTopicWord.block(oldSize, 0, K - oldSize, V).setZero();
|
309
|
+
}
|
310
|
+
|
311
|
+
tState = globalState;
|
312
|
+
for (size_t i = 0; i < pool.getNumWorkers(); ++i)
|
313
|
+
{
|
314
|
+
size_t locK = localData[i].numByTopic.size();
|
315
|
+
globalState.numByTopic.head(locK)
|
316
|
+
+= localData[i].numByTopic.head(locK) - tState.numByTopic.head(locK);
|
317
|
+
globalState.numTableByTopic.head(locK)
|
318
|
+
+= localData[i].numTableByTopic.head(locK) - tState.numTableByTopic.head(locK);
|
319
|
+
globalState.numByTopicWord.block(0, 0, locK, V)
|
320
|
+
+= localData[i].numByTopicWord.block(0, 0, locK, V) - tState.numByTopicWord.block(0, 0, locK, V);
|
321
|
+
}
|
322
|
+
|
323
|
+
// make all count being positive
|
324
|
+
if (_tw != TermWeight::one)
|
325
|
+
{
|
326
|
+
globalState.numByTopic = globalState.numByTopic.cwiseMax(0);
|
327
|
+
globalState.numByTopicWord = globalState.numByTopicWord.cwiseMax(0);
|
328
|
+
}
|
329
|
+
|
330
|
+
globalState.totalTable = accumulate(this->docs.begin(), this->docs.end(), 0, [](size_t sum, const _DocType& doc)
|
331
|
+
{
|
332
|
+
return sum + doc.getNumTable();
|
333
|
+
});
|
334
|
+
|
335
|
+
for (size_t i = 0; i < pool.getNumWorkers(); ++i)
|
336
|
+
{
|
337
|
+
res.emplace_back(pool.enqueue([&, this, i](size_t threadId)
|
338
|
+
{
|
339
|
+
localData[i] = globalState;
|
340
|
+
}));
|
341
|
+
}
|
342
|
+
for (auto& r : res) r.get();
|
343
|
+
}
|
344
|
+
|
345
|
+
/* this LL calculation is based on https://github.com/blei-lab/hdp/blob/master/hdp/state.cpp */
|
346
|
+
template<typename _DocIter>
|
347
|
+
double getLLDocs(_DocIter _first, _DocIter _last) const
|
348
|
+
{
|
349
|
+
const auto alpha = this->alpha;
|
350
|
+
double ll = 0;
|
351
|
+
|
352
|
+
for (; _first != _last; ++_first)
|
353
|
+
{
|
354
|
+
auto& doc = *_first;
|
355
|
+
ll += doc.getNumTable() * log(alpha) - math::lgammaT(doc.getSumWordWeight() + alpha) + math::lgammaT(alpha);
|
356
|
+
for (auto& nt : doc.numTopicByTable)
|
357
|
+
{
|
358
|
+
if (nt) ll += math::lgammaT(nt.num);
|
359
|
+
}
|
360
|
+
}
|
361
|
+
return ll;
|
362
|
+
}
|
363
|
+
|
364
|
+
double getLLRest(const _ModelState& ld) const
|
365
|
+
{
|
366
|
+
const size_t V = this->realV;
|
367
|
+
const auto K = this->K;
|
368
|
+
const auto eta = this->eta;
|
369
|
+
double ll = 0;
|
370
|
+
// table partition ll
|
371
|
+
size_t liveK = 0;
|
372
|
+
for (Tid k = 0; k < K; ++k)
|
373
|
+
{
|
374
|
+
if (!isLiveTopic(k)) continue;
|
375
|
+
ll += math::lgammaT(ld.numTableByTopic[k]);
|
376
|
+
++liveK;
|
377
|
+
}
|
378
|
+
|
379
|
+
ll += liveK * log(gamma) - math::lgammaT(ld.totalTable + gamma) + math::lgammaT(gamma);
|
380
|
+
|
381
|
+
// topic word ll
|
382
|
+
ll += liveK * math::lgammaT(V * eta);
|
383
|
+
|
384
|
+
for (Tid k = 0; k < K; ++k)
|
385
|
+
{
|
386
|
+
if (!isLiveTopic(k)) continue;
|
387
|
+
ll -= math::lgammaT(ld.numByTopic[k] + V * eta);
|
388
|
+
for (Vid v = 0; v < V; ++v)
|
389
|
+
{
|
390
|
+
if (!ld.numByTopicWord(k, v)) continue;
|
391
|
+
ll += math::lgammaT(ld.numByTopicWord(k, v) + eta) - math::lgammaT(eta);
|
392
|
+
}
|
393
|
+
}
|
394
|
+
return ll;
|
395
|
+
}
|
396
|
+
|
397
|
+
|
398
|
+
void initGlobalState(bool initDocs)
|
399
|
+
{
|
400
|
+
const size_t V = this->realV;
|
401
|
+
const auto K = this->K;
|
402
|
+
if (initDocs)
|
403
|
+
{
|
404
|
+
this->globalState.numByTopic = Eigen::Matrix<WeightType, -1, 1>::Zero(K);
|
405
|
+
this->globalState.numTableByTopic = Eigen::Matrix<int32_t, -1, 1>::Zero(K);
|
406
|
+
this->globalState.numByTopicWord = Eigen::Matrix<WeightType, -1, -1>::Zero(K, V);
|
407
|
+
}
|
408
|
+
}
|
409
|
+
|
410
|
+
void prepareDoc(_DocType& doc, size_t docId, size_t wordSize) const
|
411
|
+
{
|
412
|
+
doc.numByTopic.init(nullptr, this->K);
|
413
|
+
doc.numTopicByTable.clear();
|
414
|
+
doc.Zs = tvector<Tid>(wordSize);
|
415
|
+
if (_tw != TermWeight::one) doc.wordWeights.resize(wordSize);
|
416
|
+
}
|
417
|
+
|
418
|
+
template<bool _Infer>
|
419
|
+
void updateStateWithDoc(typename BaseClass::Generator& g, _ModelState& ld, _RandGen& rgs, _DocType& doc, size_t i) const
|
420
|
+
{
|
421
|
+
// generate tables for each topic when inferring
|
422
|
+
if (_Infer)
|
423
|
+
{
|
424
|
+
if (i < this->K)
|
425
|
+
{
|
426
|
+
Tid t = i;
|
427
|
+
if (isLiveTopic(i))
|
428
|
+
{
|
429
|
+
t = doc.addNewTable(i);
|
430
|
+
}
|
431
|
+
else
|
432
|
+
{
|
433
|
+
t = std::uniform_int_distribution<size_t>{ 0, doc.getNumTable() - 1 }(rgs);
|
434
|
+
}
|
435
|
+
++ld.numTableByTopic[doc.numTopicByTable[t].topic];
|
436
|
+
++ld.totalTable;
|
437
|
+
doc.Zs[i] = t;
|
438
|
+
}
|
439
|
+
else doc.Zs[i] = std::uniform_int_distribution<size_t>{ 0, doc.getNumTable() - 1 }(rgs);
|
440
|
+
}
|
441
|
+
// generate tables following CRP
|
442
|
+
else
|
443
|
+
{
|
444
|
+
Tid t;
|
445
|
+
std::vector<double> dist;
|
446
|
+
dist.emplace_back(this->alpha);
|
447
|
+
for (auto& d : doc.numTopicByTable) dist.emplace_back(d.num);
|
448
|
+
std::discrete_distribution<Tid> ddist{ dist.begin(), dist.end() };
|
449
|
+
t = ddist(rgs);
|
450
|
+
if (t == 0)
|
451
|
+
{
|
452
|
+
// new table
|
453
|
+
Tid k = g.theta(rgs);
|
454
|
+
t = doc.addNewTable(k);
|
455
|
+
++ld.numTableByTopic[k];
|
456
|
+
++ld.totalTable;
|
457
|
+
}
|
458
|
+
else
|
459
|
+
{
|
460
|
+
t -= 1;
|
461
|
+
}
|
462
|
+
doc.Zs[i] = t;
|
463
|
+
}
|
464
|
+
addWordTo<1>(ld, doc, i, doc.words[i], doc.Zs[i], doc.numTopicByTable[doc.Zs[i]].topic);
|
465
|
+
}
|
466
|
+
|
467
|
+
std::vector<uint64_t> _getTopicsCount() const
|
468
|
+
{
|
469
|
+
std::vector<uint64_t> cnt(this->K);
|
470
|
+
for (auto& doc : this->docs)
|
471
|
+
{
|
472
|
+
for (size_t i = 0; i < doc.Zs.size(); ++i)
|
473
|
+
{
|
474
|
+
if (doc.words[i] < this->realV) ++cnt[doc.numTopicByTable[doc.Zs[i]].topic];
|
475
|
+
}
|
476
|
+
}
|
477
|
+
return cnt;
|
478
|
+
}
|
479
|
+
|
480
|
+
public:
|
481
|
+
DEFINE_SERIALIZER_AFTER_BASE_WITH_VERSION(BaseClass, 0, gamma);
|
482
|
+
DEFINE_TAGGED_SERIALIZER_AFTER_BASE_WITH_VERSION(BaseClass, 1, 0x00010001, gamma);
|
483
|
+
|
484
|
+
HDPModel(size_t initialK = 2, Float _alpha = 0.1, Float _eta = 0.01, Float _gamma = 0.1, size_t _rg = std::random_device{}())
|
485
|
+
: BaseClass(initialK, _alpha, _eta, _rg), gamma(_gamma)
|
486
|
+
{
|
487
|
+
if (_gamma <= 0) THROW_ERROR_WITH_INFO(std::runtime_error, text::format("wrong gamma value (gamma = %f)", _gamma));
|
488
|
+
}
|
489
|
+
|
490
|
+
size_t getTotalTables() const override
|
491
|
+
{
|
492
|
+
return accumulate(this->docs.begin(), this->docs.end(), 0, [](size_t sum, const _DocType& doc)
|
493
|
+
{
|
494
|
+
return sum + doc.getNumTable();
|
495
|
+
});
|
496
|
+
}
|
497
|
+
|
498
|
+
size_t getLiveK() const override
|
499
|
+
{
|
500
|
+
return this->globalState.numTableByTopic.count();
|
501
|
+
}
|
502
|
+
|
503
|
+
GETTER(Gamma, Float, gamma);
|
504
|
+
|
505
|
+
bool isLiveTopic(Tid tid) const override
|
506
|
+
{
|
507
|
+
return this->globalState.numTableByTopic[tid];
|
508
|
+
}
|
509
|
+
|
510
|
+
void setWordPrior(const std::string& word, const std::vector<Float>& priors) override
|
511
|
+
{
|
512
|
+
THROW_ERROR_WITH_INFO(exception::Unimplemented, "HDPModel doesn't provide setWordPrior function.");
|
513
|
+
}
|
514
|
+
|
515
|
+
std::vector<Float> getTopicsByDoc(const _DocType& doc) const
|
516
|
+
{
|
517
|
+
std::vector<Float> ret(this->K);
|
518
|
+
Eigen::Map<Eigen::Matrix<Float, -1, 1>> { ret.data(), this->K }.array() = doc.numByTopic.array().template cast<Float>() / doc.getSumWordWeight();
|
519
|
+
return ret;
|
520
|
+
}
|
521
|
+
|
522
|
+
std::unique_ptr<ILDAModel> convertToLDA(float topicThreshold, std::vector<Tid>& newK) const override
|
523
|
+
{
|
524
|
+
auto cnt = _getTopicsCount();
|
525
|
+
std::vector<std::pair<uint64_t, size_t>> cntIdx;
|
526
|
+
float sum = (float)std::accumulate(cnt.begin(), cnt.end(), 0);
|
527
|
+
for (size_t i = 0; i < cnt.size(); ++i)
|
528
|
+
{
|
529
|
+
cntIdx.emplace_back(cnt[i], i);
|
530
|
+
}
|
531
|
+
std::sort(cntIdx.rbegin(), cntIdx.rend());
|
532
|
+
|
533
|
+
size_t liveK = 0;
|
534
|
+
newK.clear();
|
535
|
+
newK.resize(cntIdx.size(), -1);
|
536
|
+
for (size_t i = 0; i < cntIdx.size(); ++i)
|
537
|
+
{
|
538
|
+
if (i && cntIdx[i].first / sum <= topicThreshold) break;
|
539
|
+
newK[cntIdx[i].second] = i;
|
540
|
+
liveK++;
|
541
|
+
}
|
542
|
+
|
543
|
+
auto lda = make_unique<LDAModel<_tw, _RandGen>>(liveK, 0.1f, this->eta);
|
544
|
+
lda->dict = this->dict;
|
545
|
+
|
546
|
+
for (auto& doc : this->docs)
|
547
|
+
{
|
548
|
+
auto d = lda->_makeDoc(std::vector<std::string>{});
|
549
|
+
for(auto w : doc.words) d.words.emplace_back(w);
|
550
|
+
lda->_addDoc(d);
|
551
|
+
}
|
552
|
+
|
553
|
+
lda->prepare(true, this->minWordCf, this->minWordDf, this->removeTopN);
|
554
|
+
|
555
|
+
auto selectFirst = [&](const std::pair<size_t, size_t>& p) { return std::max(p.first / sum - topicThreshold, 0.f); };
|
556
|
+
std::discrete_distribution<size_t> randomTopic{
|
557
|
+
makeTransformIter(cntIdx.begin(), selectFirst),
|
558
|
+
makeTransformIter(cntIdx.end(), selectFirst)
|
559
|
+
};
|
560
|
+
|
561
|
+
std::mt19937_64 rng;
|
562
|
+
|
563
|
+
for (size_t i = 0; i < this->docs.size(); ++i)
|
564
|
+
{
|
565
|
+
for (size_t j = 0; j < this->docs[i].Zs.size(); ++j)
|
566
|
+
{
|
567
|
+
size_t newTopic = newK[this->docs[i].numTopicByTable[this->docs[i].Zs[j]].topic];
|
568
|
+
while (newTopic == (Tid)-1) newTopic = newK[randomTopic(rng)];
|
569
|
+
lda->docs[i].Zs[j] = newTopic;
|
570
|
+
}
|
571
|
+
}
|
572
|
+
|
573
|
+
lda->resetStatistics();
|
574
|
+
lda->optimizeParameters(*(ThreadPool*)nullptr, nullptr, nullptr);
|
575
|
+
|
576
|
+
return lda;
|
577
|
+
}
|
578
|
+
};
|
579
|
+
|
580
|
+
template<TermWeight _tw>
|
581
|
+
template<typename _TopicModel>
|
582
|
+
void DocumentHDP<_tw>::update(WeightType * ptr, const _TopicModel & mdl)
|
583
|
+
{
|
584
|
+
this->numByTopic.init(ptr, mdl.getK());
|
585
|
+
for (size_t i = 0; i < this->Zs.size(); ++i)
|
586
|
+
{
|
587
|
+
if (this->words[i] >= mdl.getV()) continue;
|
588
|
+
numTopicByTable[this->Zs[i]].num += _tw != TermWeight::one ? this->wordWeights[i] : 1;
|
589
|
+
this->numByTopic[numTopicByTable[this->Zs[i]].topic] += _tw != TermWeight::one ? this->wordWeights[i] : 1;
|
590
|
+
}
|
591
|
+
}
|
592
|
+
}
|