Search found 1473 matches

by shooltz[BayesFusion]
Fri Mar 28, 2008 4:39 pm
Forum: GeNIe
Topic: Error when running Cooper's algorithm
Replies: 8
Views: 22041

I would like to know exactly the conditions that produce this error message. how can I see how close I am to the limitations?

This message is emitted when BN inference fails inside Cooper algorithm. It's not possible to predict "how close" you're to successful BN inference given the number of ...
by shooltz[BayesFusion]
Fri Mar 28, 2008 3:29 pm
Forum: GeNIe
Topic: Error when running Cooper's algorithm
Replies: 8
Views: 22041

Re: Error when running Cooper's algorithm

The most likely reason is the complexity of the network. The ID influence algorithm converts ID to BN, then performs BN inference. If resulting BN network is very complex, then it may not be possible to successully perform BN inference.
by shooltz[BayesFusion]
Fri Mar 21, 2008 5:23 pm
Forum: GeNIe
Topic: Very long training Time with smaller network
Replies: 39
Views: 91837

Oh, thats sad. But when I am using smile.net and running this on Windows using the x64 Version of DotNet then this smile.net version should also running in 64 bit mode and so I should be able to use the bigger memory?

Smile.net is just thin wrapper over Win32 version of SMILE. The only benefit of ...
by shooltz[BayesFusion]
Fri Mar 21, 2008 3:56 pm
Forum: GeNIe
Topic: Very long training Time with smaller network
Replies: 39
Views: 91837

Christian wrote:By the way, I have a x64 bit OS (Vista) and more than 4GB RAM. Can I now build networks that have a size more than 4GB using Genie / Smile.net?
You can't. The only 64-bit SMILE version we have at the moment is for Linux.
by shooltz[BayesFusion]
Tue Mar 18, 2008 8:31 pm
Forum: GeNIe
Topic: Very long training Time with smaller network
Replies: 39
Views: 91837

Christian wrote:I am taking about the ones going from top to right :lol:
You mean the diagonals? :)
by shooltz[BayesFusion]
Tue Mar 18, 2008 8:26 pm
Forum: SMILE
Topic: ReadFile and WriteFile retvals
Replies: 2
Views: 9376

Re: ReadFile and WriteFile retvals

What are the return values of ReadFile and WriteFile?

This entry has some basic information on error handling:

http://genie.sis.pitt.edu/wiki/Application_Programmers_Manual:_Error_Handling

DSL_OKAY is #defined to zero, so it seems that WriteFile does the job. Are you sure your filename isn't ...
by shooltz[BayesFusion]
Tue Mar 18, 2008 4:45 pm
Forum: GeNIe
Topic: Very long training Time with smaller network
Replies: 39
Views: 91837

AFAIK if you set missing value to 80% then randomly 80% of the data is missing. But that is not the true data source. Row 1-8 has 100% data and row 9 to 13 about 20%.

if you set the missing value to 80% then everywhere data is missing, not only node 9 to 13. At least this is what I interpret the ...
by shooltz[BayesFusion]
Tue Mar 18, 2008 4:22 pm
Forum: GeNIe
Topic: Very long training Time with smaller network
Replies: 39
Views: 91837

Christian wrote:When you write the software that eliminates about 80 percent of the dataset, maybe you can just extend Genie? Something like "only generate x% data for row x".
How is this different from existing "Missing values (%)" option in "Generate data" dialog?
by shooltz[BayesFusion]
Mon Mar 17, 2008 11:27 am
Forum: SMILE
Topic: smile.net in Excel (VBA)
Replies: 3
Views: 11103

by shooltz[BayesFusion]
Mon Mar 17, 2008 11:20 am
Forum: SMILE
Topic: Doubt using SMILE
Replies: 6
Views: 14956

GetFirstNode and GetNextNode will do the trick. Read more at:

http://genie.sis.pitt.edu/wiki/Referenc ... SL_network
by shooltz[BayesFusion]
Fri Mar 14, 2008 12:29 pm
Forum: SMILE
Topic: Doubt using SMILE
Replies: 6
Views: 14956

Please be more specific. What exactly is the 'index' you're referring to? A node handle, perhaps?
by shooltz[BayesFusion]
Wed Mar 12, 2008 1:17 pm
Forum: SMILE
Topic: Doubt using SMILE
Replies: 6
Views: 14956

Re: Doubt using SMILE

First you need to decide if you're going to use native C++ or one of .Net languages.
by shooltz[BayesFusion]
Tue Mar 04, 2008 9:43 pm
Forum: SMILE
Topic: jsmile on linux
Replies: 2
Views: 9072

Re: jsmile on linux

On the other hand, if you just want to use (and not build) jSMILE, you can try downloading the Linux binaries. I'm not sure if your Red Hat system can use the .so included in the package, but at least give it a try.
by shooltz[BayesFusion]
Tue Mar 04, 2008 6:48 pm
Forum: SMILE
Topic: jsmile on linux
Replies: 2
Views: 9072

Re: jsmile on linux

The jSMILE sources contain *nix build scripts, but we don't support gcc 2.96 (there's no core C++ SMILE for that platform).
by shooltz[BayesFusion]
Mon Mar 03, 2008 5:24 pm
Forum: SMILE
Topic: JSmile and Exist
Replies: 1
Views: 7511

Re: JSmile and Exist

Is there an easy way to get loadfile to access an xml object directly?

I assume you're referring to Network.readFile in your original post. Since this is just a thin wrapper over C++ SMILE method, it's not possible to perform network I/O without going to filesystem level. I'd go for file located ...