Search found 1464 matches

by shooltz[BayesFusion]
Wed Jun 18, 2025 10:39 am
Forum: SMILE
Topic: error message regarding /lib64/libm.so.6
Replies: 5
Views: 682

Re: error message regarding /lib64/libm.so.6

Correct, the .so file from the .tar.gz archive is for the scenario where you do not use pip.
by shooltz[BayesFusion]
Tue Jun 17, 2025 2:02 pm
Forum: SMILE
Topic: error message regarding /lib64/libm.so.6
Replies: 5
Views: 682

Re: error message regarding /lib64/libm.so.6

I have sent you a download link using private forum message.
by shooltz[BayesFusion]
Mon Jun 16, 2025 12:13 pm
Forum: SMILE
Topic: how default probability number in the network with only categorical variable is set?
Replies: 3
Views: 981

Re: how default probability number in the network with only categorical variable is set?

Later we call the EM algorithm for parameter learning on this constructed network `cate_net`, the initial numbers like 0.5, 0.5, 0, 0 etc does not matter right?

If you have the complete dataset (no missing entries), the choice of initial parameters does not matter, unless you set the equivalent ...
by shooltz[BayesFusion]
Mon Jun 16, 2025 12:09 pm
Forum: SMILE
Topic: My example of simulating categorical model and parameter learning
Replies: 3
Views: 989

Re: My example of simulating categorical model and parameter learning

If you are attempting to learn parameters using a dataset without missing data, the selection of initial parameters (uniformize vs randomize vs keep original) does not matter - the node probabilities are calculated by counting records in the data. Just instantiate the EM object and call em.Learn ...
by shooltz[BayesFusion]
Mon Jun 16, 2025 12:05 pm
Forum: SMILE
Topic: error message regarding /lib64/libm.so.6
Replies: 5
Views: 682

Re: error message regarding /lib64/libm.so.6

Which Linux distro runs on your cluster?
by shooltz[BayesFusion]
Fri Jun 13, 2025 3:16 pm
Forum: SMILE
Topic: Help needed for my example of simulate continuous model and parameter learning. Parameter learning wrong.
Replies: 3
Views: 1010

Re: Help needed for my example of simulate continuous model and parameter learning. Parameter learning wrong.

I tried to learn parameter for the predefined network structure. Why is the parameter learned wrong?

You have found a bug in SMILE. Depending on the order of node creation, the equations created by the continuous parameter learning may be incorrect. If you modify your program to create nodes in ...
by shooltz[BayesFusion]
Fri Jun 13, 2025 12:43 pm
Forum: SMILE
Topic: My example of simulating categorical model and parameter learning
Replies: 3
Views: 989

Re: My example of simulating categorical model and parameter learning

Your code is correct.

One possible issue is your choice of options for EM. When the dataset is complete (no missing data elements), the parameter learning uses case counting and obtains the CPT parameters after one pass over the data. When the dataset has missing entries, we generally recommend ...
by shooltz[BayesFusion]
Thu Jun 12, 2025 11:37 am
Forum: SMILE
Topic: question regarding the multidimensional arrays represented as flat array
Replies: 1
Views: 893

Re: question regarding the multidimensional arrays represented as flat array

But, how to understand this statement "The order of the coordinates reflects the order in which the arcs to the node were created. The most significant (leftmost) coordinate will represent the state of the first parent. The state of the node itself corresponds to the least significant (rightmost ...
by shooltz[BayesFusion]
Thu Jun 12, 2025 11:32 am
Forum: SMILE
Topic: how default probability number in the network with only categorical variable is set?
Replies: 3
Views: 981

Re: how default probability number in the network with only categorical variable is set?

A = create_cpt_node(cate_net, "A", "A", ['a1', 'a2', 'a3'], 10, 20)

The create_cpt_node function defined in the tutorial first creates the chance node, which by default has two outcomes and its CPT is { 0.5, 0.5 }. If there are more than two outcome ids, the Network.add_outcome is called to add ...
by shooltz[BayesFusion]
Fri May 16, 2025 1:30 pm
Forum: GeNIe
Topic: zero avoidance in discretization apparently does not work properly
Replies: 5
Views: 59330

Re: zero avoidance in discretization apparently does not work properly

We were not able to reproduce your scenario exactly, but I think we know the root cause of the issue.

GeNIe (or, more precisely, SMILE) caches the discretized CPTs for equations. These cached CPTs are not invalidated when zero avoidance flag changes. Therefore, if you update beliefs and ...
by shooltz[BayesFusion]
Fri May 09, 2025 5:52 pm
Forum: GeNIe
Topic: zero avoidance in discretization apparently does not work properly
Replies: 5
Views: 59330

Re: zero avoidance in discretization apparently does not work properly

One more thing: the zero avoidance will be actually used only if the node equation contains probability distributions. What is the equation of the "Sospetto romp..." node?
by shooltz[BayesFusion]
Fri May 09, 2025 5:29 pm
Forum: GeNIe
Topic: Font size of axes values
Replies: 3
Views: 26498

Re: Font size of axes values

We have added a network property to control the sizes of axis labels in node barchart. The next GeNIe release will go public next week, and you will be able to specify the point size of the font.

Regarding the screenshot use in the presentation - you can use the Copy command in GeNIe, then paste ...
by shooltz[BayesFusion]
Tue May 06, 2025 11:31 am
Forum: GeNIe
Topic: zero avoidance in discretization apparently does not work properly
Replies: 5
Views: 59330

Re: zero avoidance in discretization apparently does not work properly

Your second screenshot shows the CPT with zero avoidance - there are no zeroes.