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,27 @@
|
|
1
|
+
#pragma once
|
2
|
+
#include "PA.h"
|
3
|
+
|
4
|
+
namespace tomoto
|
5
|
+
{
|
6
|
+
template<TermWeight _tw>
|
7
|
+
struct DocumentHPA : public DocumentPA<_tw>
|
8
|
+
{
|
9
|
+
using BaseDocument = DocumentPA<_tw>;
|
10
|
+
using DocumentPA<_tw>::DocumentPA;
|
11
|
+
using WeightType = typename DocumentPA<_tw>::WeightType;
|
12
|
+
|
13
|
+
template<typename _TopicModel> void update(WeightType* ptr, const _TopicModel& mdl);
|
14
|
+
|
15
|
+
DEFINE_SERIALIZER_BASE_WITH_VERSION(BaseDocument, 0);
|
16
|
+
DEFINE_SERIALIZER_BASE_WITH_VERSION(BaseDocument, 1);
|
17
|
+
};
|
18
|
+
|
19
|
+
class IHPAModel : public IPAModel
|
20
|
+
{
|
21
|
+
public:
|
22
|
+
using DefaultDocType = DocumentHPA<TermWeight::one>;
|
23
|
+
static IHPAModel* create(TermWeight _weight, bool _exclusive = false, size_t _K1 = 1, size_t _K2 = 1,
|
24
|
+
Float _alpha = 50, Float _eta = 0.01, size_t seed = std::random_device{}(),
|
25
|
+
bool scalarRng = false);
|
26
|
+
};
|
27
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
#include "HPAModel.hpp"
|
2
|
+
|
3
|
+
namespace tomoto
|
4
|
+
{
|
5
|
+
/*template class HPAModel<TermWeight::one>;
|
6
|
+
template class HPAModel<TermWeight::idf>;
|
7
|
+
template class HPAModel<TermWeight::pmi>;*/
|
8
|
+
|
9
|
+
IHPAModel* IHPAModel::create(TermWeight _weight, bool _exclusive, size_t _K, size_t _K2, Float _alphaSum, Float _eta, size_t seed, bool scalarRng)
|
10
|
+
{
|
11
|
+
if (_exclusive)
|
12
|
+
{
|
13
|
+
//TMT_SWITCH_TW(_weight, HPAModelExclusive, _K, _K2, _alphaSum, _eta, seed);
|
14
|
+
}
|
15
|
+
else
|
16
|
+
{
|
17
|
+
TMT_SWITCH_TW(_weight, scalarRng, HPAModel, _K, _K2, _alphaSum, _eta, seed);
|
18
|
+
}
|
19
|
+
return nullptr;
|
20
|
+
}
|
21
|
+
}
|
@@ -0,0 +1,588 @@
|
|
1
|
+
#pragma once
|
2
|
+
#include "PAModel.hpp"
|
3
|
+
#include "HPA.h"
|
4
|
+
/*
|
5
|
+
Implementation of Hierarchical Pachinko Allocation using Gibbs sampling by bab2min
|
6
|
+
|
7
|
+
Mimno, D., Li, W., & McCallum, A. (2007, June). Mixtures of hierarchical topics with pachinko allocation. In Proceedings of the 24th international conference on Machine learning (pp. 633-640). ACM.
|
8
|
+
*/
|
9
|
+
|
10
|
+
namespace tomoto
|
11
|
+
{
|
12
|
+
template<TermWeight _tw>
|
13
|
+
struct ModelStateHPA : public ModelStateLDA<_tw>
|
14
|
+
{
|
15
|
+
using WeightType = typename ModelStateLDA<_tw>::WeightType;
|
16
|
+
|
17
|
+
std::array<Eigen::Matrix<WeightType, -1, -1>, 3> numByTopicWord;
|
18
|
+
std::array<Eigen::Matrix<WeightType, -1, 1>, 3> numByTopic;
|
19
|
+
std::array<Eigen::Matrix<Float, -1, 1>, 2> subTmp;
|
20
|
+
|
21
|
+
Eigen::Matrix<WeightType, -1, -1> numByTopic1_2;
|
22
|
+
|
23
|
+
DEFINE_SERIALIZER_AFTER_BASE(ModelStateLDA<_tw>, numByTopicWord, numByTopic, numByTopic1_2);
|
24
|
+
};
|
25
|
+
|
26
|
+
template<TermWeight _tw, typename _RandGen,
|
27
|
+
bool _Exclusive = false,
|
28
|
+
typename _Interface = IHPAModel,
|
29
|
+
typename _Derived = void,
|
30
|
+
typename _DocType = DocumentHPA<_tw>,
|
31
|
+
typename _ModelState = ModelStateHPA<_tw>>
|
32
|
+
class HPAModel : public LDAModel<_tw, _RandGen, 0, _Interface,
|
33
|
+
typename std::conditional<std::is_same<_Derived, void>::value, HPAModel<_tw, _RandGen, _Exclusive>, _Derived>::type,
|
34
|
+
_DocType, _ModelState>
|
35
|
+
{
|
36
|
+
protected:
|
37
|
+
using DerivedClass = typename std::conditional<std::is_same<_Derived, void>::value, HPAModel<_tw, _RandGen, _Exclusive>, _Derived>::type;
|
38
|
+
using BaseClass = LDAModel<_tw, _RandGen, 0, _Interface, DerivedClass, _DocType, _ModelState>;
|
39
|
+
friend BaseClass;
|
40
|
+
friend typename BaseClass::BaseClass;
|
41
|
+
using WeightType = typename BaseClass::WeightType;
|
42
|
+
|
43
|
+
uint64_t K2;
|
44
|
+
Float epsilon = 0.00001;
|
45
|
+
size_t iteration = 5;
|
46
|
+
|
47
|
+
//Eigen::Matrix<Float, -1, 1> alphas; // len = (K + 1)
|
48
|
+
|
49
|
+
Eigen::Matrix<Float, -1, 1> subAlphaSum; // len = K
|
50
|
+
Eigen::Matrix<Float, -1, -1> subAlphas; // len = K * (K2 + 1)
|
51
|
+
|
52
|
+
void optimizeParameters(ThreadPool& pool, _ModelState* localData, _RandGen* rgs)
|
53
|
+
{
|
54
|
+
const auto K = this->K;
|
55
|
+
for (size_t i = 0; i < iteration; ++i)
|
56
|
+
{
|
57
|
+
Float denom = this->template calcDigammaSum<>(&pool, [&](size_t i) { return this->docs[i].getSumWordWeight(); }, this->docs.size(), this->alphas.sum());
|
58
|
+
|
59
|
+
for (size_t k = 0; k <= K; ++k)
|
60
|
+
{
|
61
|
+
Float nom = this->template calcDigammaSum<>(&pool, [&](size_t i) { return this->docs[i].numByTopic[k]; }, this->docs.size(), this->alphas[k]);
|
62
|
+
this->alphas[k] = std::max(nom / denom * this->alphas[k], epsilon);
|
63
|
+
}
|
64
|
+
}
|
65
|
+
|
66
|
+
std::vector<std::future<void>> res;
|
67
|
+
for (size_t k = 0; k < K; ++k)
|
68
|
+
{
|
69
|
+
res.emplace_back(pool.enqueue([&, k](size_t)
|
70
|
+
{
|
71
|
+
for (size_t i = 0; i < iteration; ++i)
|
72
|
+
{
|
73
|
+
Float denom = this->template calcDigammaSum<>(nullptr, [&](size_t i) { return this->docs[i].numByTopic[k + 1]; }, this->docs.size(), subAlphaSum[k]);
|
74
|
+
for (size_t k2 = 0; k2 <= K2; ++k2)
|
75
|
+
{
|
76
|
+
Float nom = this->template calcDigammaSum<>(nullptr, [&](size_t i) { return this->docs[i].numByTopic1_2(k, k2); }, this->docs.size(), subAlphas(k, k2));
|
77
|
+
subAlphas(k, k2) = std::max(nom / denom * subAlphas(k, k2), epsilon);
|
78
|
+
}
|
79
|
+
subAlphaSum[k] = subAlphas.row(k).sum();
|
80
|
+
}
|
81
|
+
}));
|
82
|
+
}
|
83
|
+
for (auto& r : res) r.get();
|
84
|
+
}
|
85
|
+
|
86
|
+
std::pair<size_t, size_t> getRangeOfK(size_t k) const
|
87
|
+
{
|
88
|
+
return std::make_pair<size_t, size_t>(ceil(k * (float)K2 / this->K), ceil((k + 1) * (float)K2 / this->K));
|
89
|
+
}
|
90
|
+
|
91
|
+
template<bool _asymEta>
|
92
|
+
Float* getZLikelihoods(_ModelState& ld, const _DocType& doc, size_t docId, size_t vid) const
|
93
|
+
{
|
94
|
+
const size_t V = this->realV;
|
95
|
+
const auto K = this->K;
|
96
|
+
const auto eta = this->eta;
|
97
|
+
assert(vid < V);
|
98
|
+
auto& zLikelihood = ld.zLikelihood;
|
99
|
+
|
100
|
+
Float rootWordProb = (ld.numByTopicWord[0](0, vid) + eta) / (ld.numByTopic[0](0) + V * eta);
|
101
|
+
ld.subTmp[0] = (ld.numByTopicWord[1].col(vid).array().template cast<Float>() + eta) / (ld.numByTopic[1].array().template cast<Float>() + V * eta);
|
102
|
+
ld.subTmp[1] = (ld.numByTopicWord[2].col(vid).array().template cast<Float>() + eta) / (ld.numByTopic[2].array().template cast<Float>() + V * eta);
|
103
|
+
|
104
|
+
if (_Exclusive)
|
105
|
+
{
|
106
|
+
for (size_t k = 0; k < K; ++k)
|
107
|
+
{
|
108
|
+
auto r = getRangeOfK(k);
|
109
|
+
auto r1 = r.first, r2 = r.second;
|
110
|
+
zLikelihood.segment(r1, r2 - r1) = (doc.numByTopic[k + 1] + this->alphas[k + 1])
|
111
|
+
* (doc.numByTopic1_2.row(k).segment(r1 + 1, r2 - r1).array().transpose().template cast<Float>() + subAlphas.row(k).segment(r1 + 1, r2 - r1).array().transpose())
|
112
|
+
/ (doc.numByTopic[k + 1] + subAlphaSum[k])
|
113
|
+
* ld.subTmp[1].segment(r1, r2 - r1).array();
|
114
|
+
}
|
115
|
+
|
116
|
+
zLikelihood.segment(K2, K) = (doc.numByTopic.tail(K).array().template cast<Float>() + this->alphas.tail(K).array())
|
117
|
+
* (doc.numByTopic1_2.col(0).array().template cast<Float>() + subAlphas.col(0).array())
|
118
|
+
/ (doc.numByTopic.tail(K).array().template cast<Float>() + subAlphaSum.array().template cast<Float>())
|
119
|
+
* ld.subTmp[0].array();
|
120
|
+
|
121
|
+
zLikelihood[K2 + K] = (doc.numByTopic[0] + this->alphas[0]) * rootWordProb;
|
122
|
+
}
|
123
|
+
else
|
124
|
+
{
|
125
|
+
for (size_t k = 0; k < K; ++k)
|
126
|
+
{
|
127
|
+
zLikelihood.segment(K2 * k, K2) = (doc.numByTopic[k + 1] + this->alphas[k + 1])
|
128
|
+
* (doc.numByTopic1_2.row(k).tail(K2).array().transpose().template cast<Float>() + subAlphas.row(k).tail(K2).array().transpose())
|
129
|
+
/ (doc.numByTopic[k + 1] + subAlphaSum[k])
|
130
|
+
* ld.subTmp[1].array();
|
131
|
+
}
|
132
|
+
|
133
|
+
zLikelihood.segment(K2 * K, K) = (doc.numByTopic.tail(K).array().template cast<Float>() + this->alphas.tail(K).array())
|
134
|
+
* (doc.numByTopic1_2.col(0).array().template cast<Float>() + subAlphas.col(0).array())
|
135
|
+
/ (doc.numByTopic.tail(K).array().template cast<Float>() + subAlphaSum.array().template cast<Float>())
|
136
|
+
* ld.subTmp[0].array();
|
137
|
+
|
138
|
+
zLikelihood[K2 * K + K] = (doc.numByTopic[0] + this->alphas[0]) * rootWordProb;
|
139
|
+
}
|
140
|
+
sample::prefixSum(zLikelihood.data(), zLikelihood.size());
|
141
|
+
return &zLikelihood[0];
|
142
|
+
}
|
143
|
+
|
144
|
+
template<int _inc>
|
145
|
+
inline void addWordTo(_ModelState& ld, _DocType& doc, uint32_t pid, Vid vid, Tid z1, Tid z2) const
|
146
|
+
{
|
147
|
+
assert(vid < this->realV);
|
148
|
+
constexpr bool _dec = _inc < 0 && _tw != TermWeight::one;
|
149
|
+
typename std::conditional<_tw != TermWeight::one, float, int32_t>::type weight
|
150
|
+
= _tw != TermWeight::one ? doc.wordWeights[pid] : 1;
|
151
|
+
|
152
|
+
updateCnt<_dec>(doc.numByTopic[z1], _inc * weight);
|
153
|
+
if (z1)
|
154
|
+
{
|
155
|
+
updateCnt<_dec>(doc.numByTopic1_2(z1 - 1, z2), _inc * weight);
|
156
|
+
updateCnt<_dec>(ld.numByTopic1_2(z1 - 1, z2), _inc * weight);
|
157
|
+
}
|
158
|
+
|
159
|
+
if (!z1)
|
160
|
+
{
|
161
|
+
updateCnt<_dec>(ld.numByTopic[0][0], _inc * weight);
|
162
|
+
updateCnt<_dec>(ld.numByTopicWord[0](0, vid), _inc * weight);
|
163
|
+
|
164
|
+
}
|
165
|
+
else if (!z2)
|
166
|
+
{
|
167
|
+
updateCnt<_dec>(ld.numByTopic[1][z1 - 1], _inc * weight);
|
168
|
+
updateCnt<_dec>(ld.numByTopicWord[1](z1 - 1, vid), _inc * weight);
|
169
|
+
}
|
170
|
+
else
|
171
|
+
{
|
172
|
+
updateCnt<_dec>(ld.numByTopic[2][z2 - 1], _inc * weight);
|
173
|
+
updateCnt<_dec>(ld.numByTopicWord[2](z2 - 1, vid), _inc * weight);
|
174
|
+
}
|
175
|
+
}
|
176
|
+
|
177
|
+
template<ParallelScheme _ps, bool _infer, typename _ExtraDocData>
|
178
|
+
void sampleDocument(_DocType& doc, const _ExtraDocData& edd, size_t docId, _ModelState& ld, _RandGen& rgs, size_t iterationCnt, size_t partitionId = 0) const
|
179
|
+
{
|
180
|
+
size_t b = 0, e = doc.words.size();
|
181
|
+
if (_ps == ParallelScheme::partition)
|
182
|
+
{
|
183
|
+
b = edd.chunkOffsetByDoc(partitionId, docId);
|
184
|
+
e = edd.chunkOffsetByDoc(partitionId + 1, docId);
|
185
|
+
}
|
186
|
+
|
187
|
+
size_t vOffset = (_ps == ParallelScheme::partition && partitionId) ? edd.vChunkOffset[partitionId - 1] : 0;
|
188
|
+
|
189
|
+
const auto K = this->K;
|
190
|
+
for (size_t w = b; w < e; ++w)
|
191
|
+
{
|
192
|
+
if (doc.words[w] >= this->realV) continue;
|
193
|
+
addWordTo<-1>(ld, doc, w, doc.words[w] - vOffset, doc.Zs[w], doc.Z2s[w]);
|
194
|
+
Float* dist;
|
195
|
+
if (this->etaByTopicWord.size())
|
196
|
+
{
|
197
|
+
THROW_ERROR_WITH_INFO(exception::Unimplemented, "Unimplemented features");
|
198
|
+
}
|
199
|
+
else
|
200
|
+
{
|
201
|
+
dist = getZLikelihoods<false>(ld, doc, docId, doc.words[w] - vOffset);
|
202
|
+
}
|
203
|
+
if (_Exclusive)
|
204
|
+
{
|
205
|
+
auto z = sample::sampleFromDiscreteAcc(dist, dist + K2 + K + 1, rgs);
|
206
|
+
if (z < K2)
|
207
|
+
{
|
208
|
+
doc.Zs[w] = (z * K / K2) + 1;
|
209
|
+
doc.Z2s[w] = z + 1;
|
210
|
+
}
|
211
|
+
else if (z < K2 + K)
|
212
|
+
{
|
213
|
+
doc.Zs[w] = z - K2 + 1;
|
214
|
+
doc.Z2s[w] = 0;
|
215
|
+
}
|
216
|
+
else
|
217
|
+
{
|
218
|
+
doc.Zs[w] = 0;
|
219
|
+
doc.Z2s[w] = 0;
|
220
|
+
}
|
221
|
+
}
|
222
|
+
else
|
223
|
+
{
|
224
|
+
auto z = sample::sampleFromDiscreteAcc(dist, dist + K * K2 + K + 1, rgs);
|
225
|
+
if (z < K * K2)
|
226
|
+
{
|
227
|
+
doc.Zs[w] = (z / K2) + 1;
|
228
|
+
doc.Z2s[w] = (z % K2) + 1;
|
229
|
+
}
|
230
|
+
else if (z < K * K2 + K)
|
231
|
+
{
|
232
|
+
doc.Zs[w] = z - K * K2 + 1;
|
233
|
+
doc.Z2s[w] = 0;
|
234
|
+
}
|
235
|
+
else
|
236
|
+
{
|
237
|
+
doc.Zs[w] = 0;
|
238
|
+
doc.Z2s[w] = 0;
|
239
|
+
}
|
240
|
+
}
|
241
|
+
addWordTo<1>(ld, doc, w, doc.words[w] - vOffset, doc.Zs[w], doc.Z2s[w]);
|
242
|
+
}
|
243
|
+
}
|
244
|
+
|
245
|
+
template<typename _ExtraDocData>
|
246
|
+
void distributePartition(ThreadPool& pool, const _ModelState& globalState, _ModelState* localData, const _ExtraDocData& edd) const
|
247
|
+
{
|
248
|
+
}
|
249
|
+
|
250
|
+
template<ParallelScheme _ps, typename _ExtraDocData>
|
251
|
+
void mergeState(ThreadPool& pool, _ModelState& globalState, _ModelState& tState, _ModelState* localData, _RandGen*, const _ExtraDocData& edd) const
|
252
|
+
{
|
253
|
+
std::vector<std::future<void>> res;
|
254
|
+
|
255
|
+
tState = globalState;
|
256
|
+
globalState = localData[0];
|
257
|
+
for (size_t i = 1; i < pool.getNumWorkers(); ++i)
|
258
|
+
{
|
259
|
+
globalState.numByTopic[0] += localData[i].numByTopic[0] - tState.numByTopic[0];
|
260
|
+
globalState.numByTopic[1] += localData[i].numByTopic[1] - tState.numByTopic[1];
|
261
|
+
globalState.numByTopic[2] += localData[i].numByTopic[2] - tState.numByTopic[2];
|
262
|
+
globalState.numByTopic1_2 += localData[i].numByTopic1_2 - tState.numByTopic1_2;
|
263
|
+
globalState.numByTopicWord[0] += localData[i].numByTopicWord[0] - tState.numByTopicWord[0];
|
264
|
+
globalState.numByTopicWord[1] += localData[i].numByTopicWord[1] - tState.numByTopicWord[1];
|
265
|
+
globalState.numByTopicWord[2] += localData[i].numByTopicWord[2] - tState.numByTopicWord[2];
|
266
|
+
}
|
267
|
+
|
268
|
+
// make all count being positive
|
269
|
+
if (_tw != TermWeight::one)
|
270
|
+
{
|
271
|
+
globalState.numByTopic[0] = globalState.numByTopic[0].cwiseMax(0);
|
272
|
+
globalState.numByTopic[1] = globalState.numByTopic[1].cwiseMax(0);
|
273
|
+
globalState.numByTopic[2] = globalState.numByTopic[2].cwiseMax(0);
|
274
|
+
globalState.numByTopic1_2 = globalState.numByTopic1_2.cwiseMax(0);
|
275
|
+
globalState.numByTopicWord[0] = globalState.numByTopicWord[0].cwiseMax(0);
|
276
|
+
globalState.numByTopicWord[1] = globalState.numByTopicWord[1].cwiseMax(0);
|
277
|
+
globalState.numByTopicWord[2] = globalState.numByTopicWord[2].cwiseMax(0);
|
278
|
+
}
|
279
|
+
|
280
|
+
for (size_t i = 0; i < pool.getNumWorkers(); ++i)
|
281
|
+
{
|
282
|
+
res.emplace_back(pool.enqueue([&, this, i](size_t threadId)
|
283
|
+
{
|
284
|
+
localData[i] = globalState;
|
285
|
+
}));
|
286
|
+
}
|
287
|
+
for (auto& r : res) r.get();
|
288
|
+
}
|
289
|
+
|
290
|
+
std::vector<uint64_t> _getTopicsCount() const
|
291
|
+
{
|
292
|
+
std::vector<uint64_t> cnt(1 + this->K + K2);
|
293
|
+
for (auto& doc : this->docs)
|
294
|
+
{
|
295
|
+
for (size_t i = 0; i < doc.Zs.size(); ++i)
|
296
|
+
{
|
297
|
+
if (doc.words[i] >= this->realV) continue;
|
298
|
+
if (doc.Zs[i] == 0 && doc.Z2s[i] == 0)
|
299
|
+
{
|
300
|
+
++cnt[0];
|
301
|
+
}
|
302
|
+
else if (doc.Zs[i] && doc.Z2s[i] == 0)
|
303
|
+
{
|
304
|
+
++cnt[doc.Zs[i]];
|
305
|
+
}
|
306
|
+
else
|
307
|
+
{
|
308
|
+
++cnt[this->K + doc.Z2s[i]];
|
309
|
+
}
|
310
|
+
}
|
311
|
+
}
|
312
|
+
return cnt;
|
313
|
+
}
|
314
|
+
|
315
|
+
template<typename _DocIter>
|
316
|
+
double getLLDocs(_DocIter _first, _DocIter _last) const
|
317
|
+
{
|
318
|
+
const auto K = this->K;
|
319
|
+
const auto alphaSum = this->alphas.sum();
|
320
|
+
|
321
|
+
double ll = 0;
|
322
|
+
ll = math::lgammaT(alphaSum);
|
323
|
+
for (size_t k = 0; k < K; ++k) ll -= math::lgammaT(this->alphas[k]);
|
324
|
+
ll *= std::distance(_first, _last);
|
325
|
+
for (; _first != _last; ++_first)
|
326
|
+
{
|
327
|
+
auto& doc = *_first;
|
328
|
+
ll -= math::lgammaT(doc.getSumWordWeight() + alphaSum);
|
329
|
+
for (Tid k = 0; k <= K; ++k)
|
330
|
+
{
|
331
|
+
ll += math::lgammaT(doc.numByTopic[k] + this->alphas[k]);
|
332
|
+
}
|
333
|
+
}
|
334
|
+
return ll;
|
335
|
+
}
|
336
|
+
|
337
|
+
double getLLRest(const _ModelState& ld) const
|
338
|
+
{
|
339
|
+
const size_t V = this->realV;
|
340
|
+
const auto K = this->K;
|
341
|
+
const auto eta = this->eta;
|
342
|
+
|
343
|
+
double ll = 0;
|
344
|
+
for (Tid k = 0; k < K; ++k)
|
345
|
+
{
|
346
|
+
ll += math::lgammaT(subAlphaSum[k]);
|
347
|
+
ll -= math::lgammaT(ld.numByTopic1_2.row(k).sum() + subAlphaSum[k]);
|
348
|
+
for (Tid k2 = 0; k2 <= K2; ++k2)
|
349
|
+
{
|
350
|
+
ll -= math::lgammaT(subAlphas(k, k2));
|
351
|
+
ll += math::lgammaT(ld.numByTopic1_2(k, k2) + subAlphas(k, k2));
|
352
|
+
}
|
353
|
+
}
|
354
|
+
ll += (math::lgammaT(V*eta) - math::lgammaT(eta)*V) * (K2 + K + 1);
|
355
|
+
|
356
|
+
ll -= math::lgammaT(ld.numByTopic[0][0] + V * eta);
|
357
|
+
for (Vid v = 0; v < V; ++v)
|
358
|
+
{
|
359
|
+
ll += math::lgammaT(ld.numByTopicWord[0](0, v) + eta);
|
360
|
+
}
|
361
|
+
for (Tid k = 0; k < K; ++k)
|
362
|
+
{
|
363
|
+
ll -= math::lgammaT(ld.numByTopic[1][k] + V * eta);
|
364
|
+
for (Vid v = 0; v < V; ++v)
|
365
|
+
{
|
366
|
+
ll += math::lgammaT(ld.numByTopicWord[1](k, v) + eta);
|
367
|
+
}
|
368
|
+
}
|
369
|
+
for (Tid k2 = 0; k2 < K2; ++k2)
|
370
|
+
{
|
371
|
+
ll -= math::lgammaT(ld.numByTopic[2][k2] + V * eta);
|
372
|
+
for (Vid v = 0; v < V; ++v)
|
373
|
+
{
|
374
|
+
ll += math::lgammaT(ld.numByTopicWord[2](k2, v) + eta);
|
375
|
+
}
|
376
|
+
}
|
377
|
+
return ll;
|
378
|
+
}
|
379
|
+
|
380
|
+
void prepareDoc(_DocType& doc, size_t docId, size_t wordSize) const
|
381
|
+
{
|
382
|
+
doc.numByTopic.init(nullptr, this->K + 1);
|
383
|
+
doc.numByTopic1_2 = Eigen::Matrix<WeightType, -1, -1>::Zero(this->K, K2 + 1);
|
384
|
+
doc.Zs = tvector<Tid>(wordSize);
|
385
|
+
doc.Z2s = tvector<Tid>(wordSize);
|
386
|
+
if (_tw != TermWeight::one) doc.wordWeights.resize(wordSize);
|
387
|
+
}
|
388
|
+
|
389
|
+
void initGlobalState(bool initDocs)
|
390
|
+
{
|
391
|
+
const size_t V = this->realV;
|
392
|
+
this->globalState.zLikelihood = Eigen::Matrix<Float, -1, 1>::Zero(1 + this->K + this->K * K2);
|
393
|
+
if (initDocs)
|
394
|
+
{
|
395
|
+
this->globalState.numByTopic1_2 = Eigen::Matrix<WeightType, -1, -1>::Zero(this->K, K2 + 1);
|
396
|
+
this->globalState.numByTopic[0] = Eigen::Matrix<WeightType, -1, 1>::Zero(1);
|
397
|
+
this->globalState.numByTopic[1] = Eigen::Matrix<WeightType, -1, 1>::Zero(this->K);
|
398
|
+
this->globalState.numByTopic[2] = Eigen::Matrix<WeightType, -1, 1>::Zero(K2);
|
399
|
+
this->globalState.numByTopicWord[0] = Eigen::Matrix<WeightType, -1, -1>::Zero(1, V);
|
400
|
+
this->globalState.numByTopicWord[1] = Eigen::Matrix<WeightType, -1, -1>::Zero(this->K, V);
|
401
|
+
this->globalState.numByTopicWord[2] = Eigen::Matrix<WeightType, -1, -1>::Zero(K2, V);
|
402
|
+
}
|
403
|
+
}
|
404
|
+
|
405
|
+
struct Generator
|
406
|
+
{
|
407
|
+
std::uniform_int_distribution<Tid> theta, theta2;
|
408
|
+
std::discrete_distribution<> level;
|
409
|
+
};
|
410
|
+
|
411
|
+
Generator makeGeneratorForInit(const _DocType*) const
|
412
|
+
{
|
413
|
+
return Generator{
|
414
|
+
std::uniform_int_distribution<Tid>{1, (Tid)(this->K)},
|
415
|
+
std::uniform_int_distribution<Tid>{1, (Tid)(K2)},
|
416
|
+
std::discrete_distribution<>{1.0, 1.0, 1.0},
|
417
|
+
};
|
418
|
+
}
|
419
|
+
|
420
|
+
template<bool _Infer>
|
421
|
+
void updateStateWithDoc(Generator& g, _ModelState& ld, _RandGen& rgs, _DocType& doc, size_t i) const
|
422
|
+
{
|
423
|
+
auto w = doc.words[i];
|
424
|
+
switch (g.level(rgs))
|
425
|
+
{
|
426
|
+
case 0:
|
427
|
+
doc.Zs[i] = 0;
|
428
|
+
doc.Z2s[i] = 0;
|
429
|
+
break;
|
430
|
+
case 1:
|
431
|
+
doc.Zs[i] = g.theta(rgs);
|
432
|
+
doc.Z2s[i] = 0;
|
433
|
+
break;
|
434
|
+
default:
|
435
|
+
if (_Exclusive)
|
436
|
+
{
|
437
|
+
doc.Z2s[i] = g.theta2(rgs);
|
438
|
+
doc.Zs[i] = (doc.Z2s[i] - 1) * this->K / K2 + 1;
|
439
|
+
}
|
440
|
+
else
|
441
|
+
{
|
442
|
+
doc.Zs[i] = g.theta(rgs);
|
443
|
+
doc.Z2s[i] = g.theta2(rgs);
|
444
|
+
}
|
445
|
+
}
|
446
|
+
addWordTo<1>(ld, doc, i, w, doc.Zs[i], doc.Z2s[i]);
|
447
|
+
}
|
448
|
+
|
449
|
+
public:
|
450
|
+
DEFINE_SERIALIZER_AFTER_BASE_WITH_VERSION(BaseClass, 0, K2, subAlphas, subAlphaSum);
|
451
|
+
DEFINE_TAGGED_SERIALIZER_AFTER_BASE_WITH_VERSION(BaseClass, 1, 0x00010001, K2, subAlphas, subAlphaSum);
|
452
|
+
|
453
|
+
HPAModel(size_t _K1 = 1, size_t _K2 = 1, Float _alpha = 0.1, Float _eta = 0.01, size_t _rg = std::random_device{}())
|
454
|
+
: BaseClass(_K1, _alpha, _eta, _rg), K2(_K2)
|
455
|
+
{
|
456
|
+
if (_K2 == 0 || _K2 >= 0x80000000) THROW_ERROR_WITH_INFO(std::runtime_error, text::format("wrong K2 value (K2 = %zd)", _K2));
|
457
|
+
this->alphas = Eigen::Matrix<Float, -1, 1>::Constant(_K1 + 1, _alpha);
|
458
|
+
subAlphas = Eigen::Matrix<Float, -1, -1>::Constant(_K1, _K2 + 1, _alpha);
|
459
|
+
subAlphaSum = Eigen::Matrix<Float, -1, 1>::Constant(_K1, (_K2 + 1) * _alpha);
|
460
|
+
this->optimInterval = 1;
|
461
|
+
}
|
462
|
+
|
463
|
+
GETTER(K2, size_t, K2);
|
464
|
+
GETTER(DirichletEstIteration, size_t, iteration);
|
465
|
+
|
466
|
+
void setDirichletEstIteration(size_t iter) override
|
467
|
+
{
|
468
|
+
if (!iter) throw std::invalid_argument("iter must > 0");
|
469
|
+
iteration = iter;
|
470
|
+
}
|
471
|
+
|
472
|
+
Float getSubAlpha(Tid k1, Tid k2) const override
|
473
|
+
{
|
474
|
+
if (_Exclusive)
|
475
|
+
{
|
476
|
+
if (k2 && k1 != (k2 - 1) * this->K / K2) return 0;
|
477
|
+
}
|
478
|
+
return subAlphas(k1, k2);
|
479
|
+
}
|
480
|
+
|
481
|
+
std::vector<Float> getSubAlpha(Tid k1) const override
|
482
|
+
{
|
483
|
+
std::vector<Float> ret(K2 + 1);
|
484
|
+
Eigen::Map<Eigen::VectorXf>{ret.data(), (Eigen::Index)ret.size()} = subAlphas.row(k1).transpose();
|
485
|
+
return ret;
|
486
|
+
}
|
487
|
+
|
488
|
+
std::vector<Float> getSubTopicBySuperTopic(Tid k) const override
|
489
|
+
{
|
490
|
+
assert(k < this->K);
|
491
|
+
Float sum = this->globalState.numByTopic1_2.row(k).sum() + subAlphaSum[k];
|
492
|
+
Eigen::Matrix<Float, -1, 1> ret = (this->globalState.numByTopic1_2.row(k).array().template cast<Float>() + subAlphas.row(k).array()) / sum;
|
493
|
+
return { ret.data() + 1, ret.data() + K2 + 1 };
|
494
|
+
}
|
495
|
+
|
496
|
+
std::vector<std::pair<Tid, Float>> getSubTopicBySuperTopicSorted(Tid k, size_t topN) const override
|
497
|
+
{
|
498
|
+
return extractTopN<Tid>(getSubTopicBySuperTopic(k), topN);
|
499
|
+
}
|
500
|
+
|
501
|
+
std::vector<Float> _getWidsByTopic(Tid k) const
|
502
|
+
{
|
503
|
+
const size_t V = this->realV;
|
504
|
+
std::vector<Float> ret(V);
|
505
|
+
size_t level = 0;
|
506
|
+
if (k >= 1)
|
507
|
+
{
|
508
|
+
++level;
|
509
|
+
k -= 1;
|
510
|
+
if (k >= this->K)
|
511
|
+
{
|
512
|
+
++level;
|
513
|
+
k -= this->K;
|
514
|
+
}
|
515
|
+
}
|
516
|
+
Float sum = this->globalState.numByTopic[level][k] + V * this->eta;
|
517
|
+
auto r = this->globalState.numByTopicWord[level].row(k);
|
518
|
+
for (size_t v = 0; v < V; ++v)
|
519
|
+
{
|
520
|
+
ret[v] = (r[v] + this->eta) / sum;
|
521
|
+
}
|
522
|
+
return ret;
|
523
|
+
}
|
524
|
+
|
525
|
+
std::vector<Float> getTopicsByDoc(const _DocType& doc) const
|
526
|
+
{
|
527
|
+
std::vector<Float> ret(1 + this->K + K2);
|
528
|
+
Float sum = doc.getSumWordWeight() + this->alphas.sum();
|
529
|
+
ret[0] = (doc.numByTopic[0] + this->alphas[0]) / sum;
|
530
|
+
for (size_t k = 0; k < this->K; ++k)
|
531
|
+
{
|
532
|
+
ret[k + 1] = (doc.numByTopic1_2(k, 0) + subAlphas(k, 0)) / sum;
|
533
|
+
}
|
534
|
+
for (size_t k = 0; k < K2; ++k)
|
535
|
+
{
|
536
|
+
ret[k + this->K + 1] = doc.numByTopic1_2.col(k + 1).sum() / sum;
|
537
|
+
}
|
538
|
+
return ret;
|
539
|
+
}
|
540
|
+
|
541
|
+
std::vector<Float> getSubTopicsByDoc(const DocumentBase* doc) const override
|
542
|
+
{
|
543
|
+
throw std::runtime_error{ "not applicable" };
|
544
|
+
}
|
545
|
+
|
546
|
+
std::vector<std::pair<Tid, Float>> getSubTopicsByDocSorted(const DocumentBase* doc, size_t topN) const override
|
547
|
+
{
|
548
|
+
throw std::runtime_error{ "not applicable" };
|
549
|
+
}
|
550
|
+
|
551
|
+
void setWordPrior(const std::string& word, const std::vector<Float>& priors) override
|
552
|
+
{
|
553
|
+
THROW_ERROR_WITH_INFO(exception::Unimplemented, "HPAModel doesn't provide setWordPrior function.");
|
554
|
+
}
|
555
|
+
|
556
|
+
std::vector<uint64_t> getCountBySuperTopic() const override
|
557
|
+
{
|
558
|
+
std::vector<uint64_t> cnt(this->K);
|
559
|
+
for (auto& doc : this->docs)
|
560
|
+
{
|
561
|
+
for (size_t i = 0; i < doc.Zs.size(); ++i)
|
562
|
+
{
|
563
|
+
if (doc.words[i] >= this->realV) continue;
|
564
|
+
if (doc.Zs[i] && doc.Z2s[i] == 0)
|
565
|
+
{
|
566
|
+
++cnt[doc.Zs[i] - 1];
|
567
|
+
}
|
568
|
+
}
|
569
|
+
}
|
570
|
+
return cnt;
|
571
|
+
}
|
572
|
+
};
|
573
|
+
|
574
|
+
template<TermWeight _tw>
|
575
|
+
template<typename _TopicModel>
|
576
|
+
void DocumentHPA<_tw>::update(WeightType * ptr, const _TopicModel & mdl)
|
577
|
+
{
|
578
|
+
this->numByTopic.init(ptr, mdl.getK() + 1);
|
579
|
+
this->numByTopic1_2 = Eigen::Matrix<WeightType, -1, -1>::Zero(mdl.getK(), mdl.getK2() + 1);
|
580
|
+
for (size_t i = 0; i < this->Zs.size(); ++i)
|
581
|
+
{
|
582
|
+
if (this->words[i] >= mdl.getV()) continue;
|
583
|
+
this->numByTopic[this->Zs[i]] += _tw != TermWeight::one ? this->wordWeights[i] : 1;
|
584
|
+
if (this->Zs[i]) this->numByTopic1_2(this->Zs[i] - 1, this->Z2s[i]) += _tw != TermWeight::one ? this->wordWeights[i] : 1;
|
585
|
+
}
|
586
|
+
}
|
587
|
+
|
588
|
+
}
|