getNoisyExpandedDefinition() in Dynamic Bayesian Network

The engine.
Post Reply
giliandrea92
Posts: 3
Joined: Sat Aug 29, 2020 6:01 am

getNoisyExpandedDefinition() in Dynamic Bayesian Network

Post by giliandrea92 »

Good day,

I'm writing my thesis and i'm using the java wrapper of Smile for my capstone Project.

I need to know if exists the temporal analogous function of getNoisyExpandedDefinition when exists a temporal arc between a noisy max node and his parents . I suppose it exists because GeNIe does this calculation when the user select t=1 and expand the Cpt in the GUI but i can't find this function in the wrapper, can you help me ?

Andrea.
shooltz[BayesFusion]
Site Admin
Posts: 1417
Joined: Mon Nov 26, 2007 5:51 pm

Re: getNoisyExpandedDefinition() in Dynamic Bayesian Network

Post by shooltz[BayesFusion] »

This feature is not available. There are two possible workarounds. You can either

- change noisyMAX node to CPT and use Network.getNodeTemporalDefinition

or

- keep the noisyMAX type and use Network.unroll to obtain the unrolled network, then locate the unrolled noisyMAX node and call getNoisyExpandedDefintion
Post Reply