Search found 1417 matches

by shooltz[BayesFusion]
Thu Dec 06, 2007 1:55 pm
Forum: SMILE
Topic: Can SMILE process a .DSL file generated by GeNIe?
Replies: 4
Views: 8870

My best guess is that your program tried to continue after ReadFile returned the error code. The call to FindNode returned NULL (network was empty) and later you invoked DSL_node::Value method on NULL pointer, which gave you the segfault. I suggest checking the return values - you may hit similiar p...
by shooltz[BayesFusion]
Wed Dec 05, 2007 5:42 pm
Forum: GeNIe
Topic: Genie crashes if Probability table gets over 4.X million
Replies: 3
Views: 6893

Christian wrote:So if I would use a 64bit Windows it should work with a bigger network?
No difference, since GeNIe is 32-bit binary.
by shooltz[BayesFusion]
Wed Dec 05, 2007 3:41 pm
Forum: GeNIe
Topic: Genie crashes if Probability table gets over 4.X million
Replies: 3
Views: 6893

Re: Genie crashes if Probability table gets over 4.X million

Using 5-state nodes I can create a model with 10 incoming arcs, so the child node has CPT with ~49 million entries. Each entry is 8 bytes, so the total memory consumed is around 400 mb. Adding another incoming arc would make it 5 times larger, close to the 2GB user address space limit for 32-bit pro...
by shooltz[BayesFusion]
Wed Dec 05, 2007 1:32 pm
Forum: SMILE
Topic: Can SMILE process a .DSL file generated by GeNIe?
Replies: 4
Views: 8870

Re: Can SMILE process a .DSL file generated by GeNIe?

XDSL files created by GeNIe: you should be able to load them without any issues on any platform - as long as you call global function EnableXdslFormat before DSL_network::ReadFile. If EnableXdslFormat is not called, you'll get DSL_FILE_FORMAT_ERROR (-46) from ReadFile. DSL files created by GeNIe: th...
by shooltz[BayesFusion]
Wed Dec 05, 2007 2:19 am
Forum: SMILE
Topic: Compiling SMILE in 64 bit OS and machines
Replies: 4
Views: 9828

The missing library (libssp.so.0) contains the code for stack smashing protection (hence the 'ssp' in the name). Can you check if you actually have such file on your system?
by shooltz[BayesFusion]
Tue Dec 04, 2007 12:35 pm
Forum: SMILE
Topic: Compiling SMILE in 64 bit OS and machines
Replies: 4
Views: 9828

It looks like our 64-bit Linux system enables the stack-smashing protection by default. More info here:

http://en.wikipedia.org/wiki/Stack-smashing_protection

Try adding "-fstack-protector" or "-fstack-protector-all" to your CCFLAGS.
by shooltz[BayesFusion]
Wed Nov 28, 2007 9:27 pm
Forum: GeNIe
Topic: Continuous variables
Replies: 23
Views: 28387

Re: Continuous variables

We have the implementation for continous (equation-based) variables. It's still in the early stages and there's no direct way of creating them in GeNIe (there's a magic key combination, though :) )