Package stallone.api.hmm

Examples of stallone.api.hmm.ParameterEstimationException


                hidden.setPout(t, j, model.getPout(itraj, t, j));
                //System.out.println("  pout "+t+" "+j+": "+model.getPout(itraj, t, j));
            }
            if (!hidden.checkPout(t))
            {
                throw(new ParameterEstimationException(
                        " \n\n======== Parameter Estimation Exception ========\n"
                        + "At trajectory "+itraj+", timestep "+t+"\n"
                        + "Observation = "+model.getObs(itraj, t)+"\n\n"
                        + "HMM parameters: \n"+model.getParameters()+"\n"
                        + "pout = "+DoublesPrimitive.util.toString(hidden.getPout(t),"\t")+"\n"
View Full Code Here

TOP

Related Classes of stallone.api.hmm.ParameterEstimationException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.