We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The Interchange Format for Bayesian Networks (BIF) is commonly used as an interchange format, like the UAI.
We need an implementation of at least a parser for this format.
The text was updated successfully, but these errors were encountered:
There is already some code for xmlbif, though it is a bit different to the rest of parsers:
XMLBIFParser parser = new XMLBIFParser(); FileInputStream fio = new FileInputStream(bnetFile); SparseModel net = parser.parse(fio);
Sorry, something went wrong.
From what I understood, this is XMLBIF format. I'm talking about non-XML BIF format.
cbonesana
Successfully merging a pull request may close this issue.
The Interchange Format for Bayesian Networks (BIF) is commonly used as an interchange format, like the UAI.
We need an implementation of at least a parser for this format.
The text was updated successfully, but these errors were encountered: