Search found 1417 matches

by shooltz[BayesFusion]
Tue Mar 07, 2023 8:36 pm
Forum: SMILE
Topic: Bar Chart Display
Replies: 6
Views: 12531

Re: Bar Chart Display

Please check your PMs.
by shooltz[BayesFusion]
Mon Mar 06, 2023 2:27 pm
Forum: GeNIe
Topic: cost of observation
Replies: 3
Views: 2795

Re: cost of observation

You can reduce the max entropy/cost ratio (the dropdown in the upper-right corner of the diagnosis window), then use the E/C slider to move the alpha to a very low value. You should see your observations appear back in black (because alpha close to zero should make the cost influence vanish in the e...
by shooltz[BayesFusion]
Fri Mar 03, 2023 8:10 pm
Forum: GeNIe
Topic: BayesBox and BayesMobile released
Replies: 6
Views: 23348

Re: BayesBox and BayesMobile released

Is it (or when will it be) possible to run the diagnosis function in BayesMobile for Discrete Models? Just to clarify: BayesMobile main functionality is actually running diagnosis with discrete models. You can create a diagnostic model in GeNIe, test the diagnostic output in GeNIe, then upload the ...
by shooltz[BayesFusion]
Fri Mar 03, 2023 6:37 pm
Forum: SMILE
Topic: Bar Chart Display
Replies: 6
Views: 12531

Re: Bar Chart Display

seems GeNie doesn't much care for working through a ~32k node network... If GeNIe performs inadequately, maybe you can share your model? Send me a private forum message if this is possible. We will profile and pinpoint the hotspots. but is there a known network size limit? It's quite hard to establ...
by shooltz[BayesFusion]
Thu Mar 02, 2023 6:40 pm
Forum: GeNIe
Topic: cost of observation
Replies: 3
Views: 2795

Re: cost of observation

NOT BENEFICIAL is displayed when the diagnostic value of the observation is negative. The negative value can be calculated when the observation has an associated cost. The actual formula is V = cross-entropy - alpha * costs where alpha is the entropy/cost ratio, which you can modify in GeNIe's diagn...
by shooltz[BayesFusion]
Thu Mar 02, 2023 6:25 pm
Forum: SMILE
Topic: Bar Chart Display
Replies: 6
Views: 12531

Re: Bar Chart Display

You can now set the barchart view for the nodes. In C++, use DSL_screenInfo's data members barchartActive, barchartWidth and barchartHeight. DSL_node *node = ... DSL_screenInfo &scr = node->Info().Screen(); scr.barchartActive = true; scr.barchartWidth = 200; scr.barchartHeight = 500; PySMILE has...
by shooltz[BayesFusion]
Wed Feb 22, 2023 3:58 pm
Forum: GeNIe
Topic: BayesBox and BayesMobile released
Replies: 6
Views: 23348

Re: BayesBox and BayesMobile released

You can load your own models into BayesMobile after $9.99 in-app purchase (payments are handled by Apple Store). Click on the "Use Your Model" option on the main application screen. Please note that the .xdsl file should be on your device already.
by shooltz[BayesFusion]
Wed Nov 02, 2022 1:46 pm
Forum: SMILE
Topic: Memmory related failures in smile engine
Replies: 6
Views: 4633

Re: Memmory related failures in smile engine

If you can, send me a link or a .zip with the complete project to my email address. We'll try to reproduce/fix the problem.
by shooltz[BayesFusion]
Mon Oct 31, 2022 8:43 pm
Forum: GeNIe
Topic: Sensitivity analysis in GeNIe v 4
Replies: 6
Views: 3572

Re: Sensitivity analysis in GeNIe v 4

This is an interesting idea and we have made a note of it but it is unlikely we will provide a connection between SMILE and SAFE toolbox/R Sensobol very soon. Given that you have SMILE and the other packages, you will have to prepare the input for the external packages using R. Sorry for not being i...
by shooltz[BayesFusion]
Fri Oct 28, 2022 8:28 pm
Forum: SMILE
Topic: Memmory related failures in smile engine
Replies: 6
Views: 4633

Re: Memmory related failures in smile engine

I sent an email with a download link to the account you're using on this forum.
by shooltz[BayesFusion]
Fri Oct 28, 2022 12:52 pm
Forum: SMILE
Topic: rSMILE 2.0.8
Replies: 5
Views: 4939

Re: rSMILE 2.0.8

You should pass the full .zip file name to install.packages and use the 'type' parameter: > install.packages("C:/Users/your-user-id/Downloads/rSMILE_2.0.8.zip", repos = NULL, type = "win.binary") package 'rSMILE' successfully unpacked and MD5 sums checked The example above assume...
by shooltz[BayesFusion]
Thu Oct 27, 2022 10:44 pm
Forum: GeNIe
Topic: Sensitivity analysis in GeNIe v 4
Replies: 6
Views: 3572

Re: Sensitivity analysis in GeNIe v 4

is it possible to call the hybrid network in R using rSMILE and then connect it to a global sensitivity analysis package in R
We don't have any experience with R's sensitivity analysis packages. Can you post a link to the package you're referring to?
by shooltz[BayesFusion]
Thu Oct 27, 2022 12:39 pm
Forum: GeNIe
Topic: Sensitivity analysis in GeNIe v 4
Replies: 6
Views: 3572

Re: Sensitivity analysis in GeNIe v 4

In GeNIe 4.0 we have modified the inference algorithm for the hybrid models. Instead of a complete discretized copy (which you can get in GeNIe 3.x), we use 'virtualized' CPTs for equation nodes. Additionally, we always take into account all possible reductions in the CPTs, such as the presence of t...