Skip to content
New issue

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

Parser for BIF format #50

Open
cbonesana opened this issue Jan 25, 2021 · 2 comments · Fixed by #51
Open

Parser for BIF format #50

cbonesana opened this issue Jan 25, 2021 · 2 comments · Fixed by #51
Assignees
Labels
enhancement New feature or request

Comments

@cbonesana
Copy link
Member

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.

@cbonesana cbonesana added enhancement New feature or request java Pull requests that update Java code labels Jan 25, 2021
@cbonesana cbonesana self-assigned this Jan 25, 2021
@rcabanasdepaz
Copy link
Collaborator

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);

@cbonesana
Copy link
Member Author

From what I understood, this is XMLBIF format. I'm talking about non-XML BIF format.

@cbonesana cbonesana linked a pull request Jan 25, 2021 that will close this issue
@cbonesana cbonesana removed the java Pull requests that update Java code label Jan 26, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants