Search found 1417 matches

by shooltz[BayesFusion]
Mon Jun 30, 2008 4:59 pm
Forum: SMILE
Topic: Using SMILE for Influence Diagrams
Replies: 6
Views: 7736

Re: Using SMILE for Influence Diagrams

Am I missing something? You can use DSL_ALG_ID_SHACHTER algorithm - it'll find the best policy at SMILE level. It's the equivalent of 'Find best policy' selection from the Network|Algorithm in GeNIe. The code in the tutorial invokes the default influence diagram algorithm DSL_ALG_ID_COOPERSOLVING (...
by shooltz[BayesFusion]
Mon Jun 30, 2008 11:51 am
Forum: GeNIe
Topic: Import a test set
Replies: 2
Views: 4852

Re: Import a test set

I've trained my network with a trainings set. Now I want to test it with the test set. Is there a possibility to import the complete test set and compute it or have I to choose the evidence for each node by hand? The closest thing would be using Data|Copy Cases command, which would create the set o...
by shooltz[BayesFusion]
Thu Jun 26, 2008 4:02 pm
Forum: SMILE
Topic: Outcomes
Replies: 1
Views: 3758

Re: Outcomes

RemoveOutcome will fail if you have just two states/choices - SMILE always keeps the network in consistent state, and discrete node with just one outcome certainly breaks the consistency. SetNumberOfOutcomes will fail if node has children. This is rather obscure method, mainly used by file I/O :) If...
by shooltz[BayesFusion]
Wed Jun 25, 2008 10:42 am
Forum: SMILE
Topic: Setting observed probabilities for a node
Replies: 4
Views: 6941

Re: Setting observed probabilities for a node

ausi wrote:Is this possible?
It is not possible with current SMILE implementation.
by shooltz[BayesFusion]
Fri Jun 20, 2008 7:08 pm
Forum: SMILE
Topic: IndexToCoordinates
Replies: 1
Views: 3888

Re: IndexToCoordinates

I believe you were hit by a serious bug in the SMILE API design. DSL_intArray (and other DSL_xxxArrays) has NumItems and GetSize, which can report different values. In your case, DSL_intArray::GetSize is the method to call.

Don't ask why it was design this way - nobody knows :)
by shooltz[BayesFusion]
Thu Jun 19, 2008 2:51 pm
Forum: GeNIe
Topic: Very long training Time with smaller network
Replies: 39
Views: 39994

Christian wrote:Old Training Time: 1864 minutes
New Training time: 1348 minutes
If you're still interested in EM, most recent GeNIe build (2.0.3092.0) should perform even better.
by shooltz[BayesFusion]
Wed Jun 18, 2008 12:13 pm
Forum: GeNIe
Topic: data representation
Replies: 4
Views: 6305

Re: data representation

Your data uses comma (not decimal dot) - GeNIe treats the values as text, not numbers, so discretization is not possible.
by shooltz[BayesFusion]
Wed Jun 18, 2008 11:52 am
Forum: GeNIe
Topic: data representation
Replies: 4
Views: 6305

Re: data representation

Now my question is how i should represent this data. Is the solution to see each value as another state, what means 60 states for each node, or should I divide them into intervals? The data looks continous, so you should discretize it. The choice of intervals depends of course on the problem domain.
by shooltz[BayesFusion]
Wed Jun 18, 2008 11:51 am
Forum: SMILE
Topic: DSL_textParser was not declared in htis scope
Replies: 6
Views: 9952

Re: Wiki and Tutorials need update for DSL_textParser

parseval wrote:May be we can update this. Thank you. :lol:
Yes, you can update this. GeNIe/SMILE wiki is open to user edits.
by shooltz[BayesFusion]
Tue Jun 17, 2008 6:36 pm
Forum: GeNIe
Topic: Negative Value of Information
Replies: 4
Views: 6920

Re: Negative Value of Information - Network

On my machine VOI is calculated as -2.84e-014. This value is very close to zero and is probably a result of precision loss in VOI algorithm.
by shooltz[BayesFusion]
Tue Jun 17, 2008 1:38 pm
Forum: GeNIe
Topic: Negative Value of Information
Replies: 4
Views: 6920

Re: Negative Value of Information

Can you post your model so we can investigate?
by shooltz[BayesFusion]
Mon Jun 16, 2008 6:15 pm
Forum: SMILE
Topic: CPT size of variables
Replies: 1
Views: 3966

Re: CPT size of variables

How many values are possible in one temporal node in SMILE/GeNIe The only limit is available memory, and this depends on the OS and hardware the program is running on. (or what is the max. network size to load it to GeNie)? Since GeNIe is a Win32 binary, it's user-mode address space is limited to 2...
by shooltz[BayesFusion]
Fri Jun 13, 2008 11:52 am
Forum: SMILE
Topic: calculating inferences
Replies: 5
Views: 6710

Re: calculating inferences

Sorry, this is SMILE support forum - your question is off-topic. We'll be glad to answer any questions related to SMILE/GeNIe.
by shooltz[BayesFusion]
Thu Jun 12, 2008 1:30 pm
Forum: SMILE
Topic: calculating inferences
Replies: 5
Views: 6710

Re: calculating inferences

I had read out that, but tell me is it necessary to implement that algorithm for calculating inferences? I'm not quite sure what's your actual question. JT-based algorithm is one (arguably most commonly used) way to implement exact BN inference, but there are other exact algorithms. And if we imple...
by shooltz[BayesFusion]
Thu Jun 12, 2008 12:24 pm
Forum: SMILE
Topic: calculating inferences
Replies: 5
Views: 6710

Re: calculating inferences

For notes on implementing algorithms based on junction tree, try "Inference in Belief Networks: A Procedural Guide" by Huang and Darwiche.