[AMIEQueue] Add progress bar for each generation #45
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR modifies the
AMIEQueue
such that it reports the mining progress using a progress bar (if-verbose
).I've used the most active Java CLI progress bar I cound find (https://github.com/ctongfei/progressbar).
One (minor?) issue is that AMIE's logging conflicts with the line breaks, yielding some lines with both progressbar and AMIE logging. I think the only solution would be to use some logging module and redirect the different output types to different files.
I've also used a heuristic to set how often the progress bar should be updated. It seems to work on my small experiments, but I will still test it with bigger datasets.
I'm not sure yet about the overhead added by this (i) if verbose is not set, (ii) if verbose is set.