Search in sources :

Example 1 with LatentFactorModel

use of dr.inference.model.LatentFactorModel in project beast-mcmc by beast-dev.

the class FactorOperatorParser method parseXMLObject.

@Override
public Object parseXMLObject(XMLObject xo) throws XMLParseException {
    CoercionMode mode = CoercionMode.parseMode(xo);
    String scaleFactorTemp = (String) xo.getAttribute(SCALE_FACTOR);
    double scaleFactor = Double.parseDouble(scaleFactorTemp);
    String weightTemp = (String) xo.getAttribute(WEIGHT);
    double weight = Double.parseDouble(weightTemp);
    DiagonalMatrix diffusionMatrix;
    diffusionMatrix = (DiagonalMatrix) xo.getChild(DiagonalMatrix.class);
    LatentFactorModel LFM = (LatentFactorModel) xo.getChild(LatentFactorModel.class);
    boolean randomScan = xo.getAttribute(RANDOM_SCAN, true);
    return new FactorOperator(LFM, weight, randomScan, diffusionMatrix, scaleFactor, mode);
}
Also used : DiagonalMatrix(dr.inference.model.DiagonalMatrix) FactorOperator(dr.inference.operators.FactorOperator) LatentFactorModel(dr.inference.model.LatentFactorModel) CoercionMode(dr.inference.operators.CoercionMode)

Example 2 with LatentFactorModel

use of dr.inference.model.LatentFactorModel in project beast-mcmc by beast-dev.

the class LatentFactorLiabilityGibbsOperatorParser method parseXMLObject.

@Override
public Object parseXMLObject(XMLObject xo) throws XMLParseException {
    double weight = xo.getDoubleAttribute(WEIGHT);
    LatentFactorModel lfm = (LatentFactorModel) xo.getChild(LatentFactorModel.class);
    OrderedLatentLiabilityLikelihood liabilityLikelihood = (OrderedLatentLiabilityLikelihood) xo.getChild(OrderedLatentLiabilityLikelihood.class);
    return new LatentFactorLiabilityGibbsOperator(weight, lfm, liabilityLikelihood);
}
Also used : LatentFactorLiabilityGibbsOperator(dr.inference.operators.LatentFactorLiabilityGibbsOperator) OrderedLatentLiabilityLikelihood(dr.evomodel.continuous.OrderedLatentLiabilityLikelihood) LatentFactorModel(dr.inference.model.LatentFactorModel)

Example 3 with LatentFactorModel

use of dr.inference.model.LatentFactorModel in project beast-mcmc by beast-dev.

the class LatentFactorModelPrecisionGibbsOperatorParser method parseXMLObject.

@Override
public Object parseXMLObject(XMLObject xo) throws XMLParseException {
    String weightTemp = (String) xo.getAttribute(WEIGHT);
    double weight = Double.parseDouble(weightTemp);
    LatentFactorModel LFM = (LatentFactorModel) xo.getChild(LatentFactorModel.class);
    DistributionLikelihood prior = (DistributionLikelihood) xo.getChild(DistributionLikelihood.class);
    boolean randomScan = xo.getAttribute(RANDOM_SCAN, true);
    return new LatentFactorModelPrecisionGibbsOperator(LFM, prior, weight, randomScan);
}
Also used : LatentFactorModel(dr.inference.model.LatentFactorModel) LatentFactorModelPrecisionGibbsOperator(dr.inference.operators.LatentFactorModelPrecisionGibbsOperator) DistributionLikelihood(dr.inference.distribution.DistributionLikelihood)

Example 4 with LatentFactorModel

use of dr.inference.model.LatentFactorModel in project beast-mcmc by beast-dev.

the class LoadingsGibbsOperatorParser method parseXMLObject.

@Override
public Object parseXMLObject(XMLObject xo) throws XMLParseException {
    String weightTemp = (String) xo.getAttribute(WEIGHT);
    double weight = Double.parseDouble(weightTemp);
    LatentFactorModel LFM = (LatentFactorModel) xo.getChild(LatentFactorModel.class);
    DistributionLikelihood prior = (DistributionLikelihood) xo.getChild(DistributionLikelihood.class);
    MomentDistributionModel prior2 = (MomentDistributionModel) xo.getChild(MomentDistributionModel.class);
    DistributionLikelihood cutoffPrior = null;
    if (xo.hasChildNamed(CUTOFF_PRIOR)) {
        cutoffPrior = (DistributionLikelihood) xo.getChild(CUTOFF_PRIOR).getChild(DistributionLikelihood.class);
    }
    boolean randomScan = xo.getAttribute(RANDOM_SCAN, true);
    int numThreads = xo.getAttribute(NUM_THREADS, 4);
    MatrixParameterInterface loadings = null;
    if (xo.getChild(MatrixParameterInterface.class) != null) {
        loadings = (MatrixParameterInterface) xo.getChild(MatrixParameterInterface.class);
    }
    DistributionLikelihood WorkingPrior = null;
    if (xo.getChild(WORKING_PRIOR) != null) {
        System.out.println("here");
        WorkingPrior = (DistributionLikelihood) xo.getChild(WORKING_PRIOR).getChild(DistributionLikelihood.class);
    }
    boolean multiThreaded = xo.getAttribute(MULTI_THREADED, false);
    if (prior != null)
        //To change body of implemented methods use File | Settings | File Templates.
        return new LoadingsGibbsOperator(LFM, prior, weight, randomScan, WorkingPrior, multiThreaded, numThreads);
    else
        return new LoadingsGibbsTruncatedOperator(LFM, prior2, weight, randomScan, loadings, cutoffPrior);
}
Also used : MatrixParameterInterface(dr.inference.model.MatrixParameterInterface) LatentFactorModel(dr.inference.model.LatentFactorModel) MomentDistributionModel(dr.inference.distribution.MomentDistributionModel) LoadingsGibbsOperator(dr.inference.operators.LoadingsGibbsOperator) DistributionLikelihood(dr.inference.distribution.DistributionLikelihood) LoadingsGibbsTruncatedOperator(dr.inference.operators.LoadingsGibbsTruncatedOperator)

Example 5 with LatentFactorModel

use of dr.inference.model.LatentFactorModel in project beast-mcmc by beast-dev.

the class FactorGibbsOperatorParser method parseXMLObject.

@Override
public Object parseXMLObject(XMLObject xo) throws XMLParseException {
    String weightTemp = (String) xo.getAttribute(WEIGHT);
    double weight = Double.parseDouble(weightTemp);
    DiagonalMatrix diffusionMatrix;
    diffusionMatrix = (DiagonalMatrix) xo.getChild(DiagonalMatrix.class);
    LatentFactorModel LFM = (LatentFactorModel) xo.getChild(LatentFactorModel.class);
    boolean randomScan = xo.getAttribute(RANDOM_SCAN, true);
    return new FactorGibbsOperator(LFM, weight, randomScan, diffusionMatrix);
}
Also used : DiagonalMatrix(dr.inference.model.DiagonalMatrix) LatentFactorModel(dr.inference.model.LatentFactorModel) FactorGibbsOperator(dr.inference.operators.FactorGibbsOperator)

Aggregations

LatentFactorModel (dr.inference.model.LatentFactorModel)17 DistributionLikelihood (dr.inference.distribution.DistributionLikelihood)6 DiagonalMatrix (dr.inference.model.DiagonalMatrix)6 AdaptationMode (dr.inference.operators.AdaptationMode)5 MomentDistributionModel (dr.inference.distribution.MomentDistributionModel)3 CoercionMode (dr.inference.operators.CoercionMode)3 OrderedLatentLiabilityLikelihood (dr.evomodel.continuous.OrderedLatentLiabilityLikelihood)2 MatrixParameterInterface (dr.inference.model.MatrixParameterInterface)2 FullyConjugateMultivariateTraitLikelihood (dr.evomodel.continuous.FullyConjugateMultivariateTraitLikelihood)1 GibbsSampleFromTreeInterface (dr.evomodel.continuous.GibbsSampleFromTreeInterface)1 TreeDataLikelihood (dr.evomodel.treedatalikelihood.TreeDataLikelihood)1 IntegratedFactorAnalysisLikelihood (dr.evomodel.treedatalikelihood.continuous.IntegratedFactorAnalysisLikelihood)1 MatrixParameter (dr.inference.model.MatrixParameter)1 FactorGibbsOperator (dr.inference.operators.FactorGibbsOperator)1 FactorIndependenceOperator (dr.inference.operators.FactorIndependenceOperator)1 FactorOperator (dr.inference.operators.FactorOperator)1 LatentFactorLiabilityGibbsOperator (dr.inference.operators.LatentFactorLiabilityGibbsOperator)1 LatentFactorModelPrecisionGibbsOperator (dr.inference.operators.LatentFactorModelPrecisionGibbsOperator)1 LoadingsGibbsOperator (dr.inference.operators.LoadingsGibbsOperator)1 LoadingsGibbsTruncatedOperator (dr.inference.operators.LoadingsGibbsTruncatedOperator)1