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

Graphviz issue 233 #251

Open
wants to merge 15 commits into
base: main
Choose a base branch
from
Open

Graphviz issue 233 #251

wants to merge 15 commits into from

Conversation

chbe-helix
Copy link

GraphViz Beta Update Pull Request.

Update includes all code developed to visualize the core factor graph data structure of GraphPPL. This PR resolved issue 233.

We need feedback on the version number and implementation before this is merged. During this time we will run a few additional tests to assure compatibility with GraphPPL v4.3.3.

@albertpod
Copy link
Member

Awesome @chbe-helix and @FraserP117! Thanks! We will start testing after IWAI!

@bvdmitri
Copy link
Member

bvdmitri commented Sep 6, 2024

Amazing work, also will have more time after IWAI

@wouterwln
Copy link
Member

I reviewed some of the code. There seems to be something wrong with the extension loading; I cannot access the structures from the extension when I load GPPL. I'll push a commit refactoring the code a bit, but let's discuss @bvdmitri and @FraserP117 how we can elegantly solve this. We should be able to come up with smth now that we're all in Oxford anyway. Dummy visualizations I was able to cook up look 1000 times nicer than what the current viz looks like though! Thanks guys!

Also on a side note, do you mind renaming the file/module to GraphPPLGraphVizExt? This way, should Julia ever change their extension functionality and expose them, it's clear that this is an extension and to what package it belongs.

Once again, thanks for the work guys!

@FraserP117
Copy link

FraserP117 commented Sep 9, 2024 via email


These types afford a trade-off between a relatively fast and a relatively 'principled' iteration strategy (respectfully).
"""
abstract type TraversalStrategy end
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This type should be available when we load GraphPPL and GraphViz, I don't really see a quick fix for this but I'm sure we can find something out

"""
abstract type TraversalStrategy end
struct SimpleIteration <: TraversalStrategy end
struct BFSTraversal <: TraversalStrategy end
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

BTW I really like this strategy type dispatch so I really want to keep this, great work

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I like it too, but since we cannot access them from the extension maybe just use Symbols instead, e.g. :simple_iteration and :bfs_traversal (which can be converted to their corresponding structures if necessary and yes it will be type-unstable but this is not performance critical code and the type-instability will be negligible )

Copy link
Member

@bvdmitri bvdmitri Sep 18, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

e.g. something similar to

convert_symbol_strategy_to_struct(::Val{:simple_iteration}) = SimpleIteration()
convert_symbol_strategy_to_struct(::Val{:bfs_traversal}) = BFSTraversal()

function plot(; strategy = :simple_iteration)
    strategy_struct = convert_symbol_strategy_to_struct(Val(strategy))
    ...
end

I'm think Plots use similar design too

Copy link

codecov bot commented Sep 9, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 90.61%. Comparing base (c97718a) to head (e49dcb5).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #251   +/-   ##
=======================================
  Coverage   90.61%   90.61%           
=======================================
  Files          15       15           
  Lines        2121     2121           
=======================================
  Hits         1922     1922           
  Misses        199      199           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@chbe-helix
Copy link
Author

I reviewed some of the code. There seems to be something wrong with the extension loading; I cannot access the structures from the extension when I load GPPL. I'll push a commit refactoring the code a bit, but let's discuss @bvdmitri and @FraserP117 how we can elegantly solve this. We should be able to come up with smth now that we're all in Oxford anyway. Dummy visualizations I was able to cook up look 1000 times nicer than what the current viz looks like though! Thanks guys!

Also on a side note, do you mind renaming the file/module to GraphPPLGraphVizExt? This way, should Julia ever change their extension functionality and expose them, it's clear that this is an extension and to what package it belongs.

Once again, thanks for the work guys!

Sure! I'll make the update now

@bvdmitri
Copy link
Member

There seems to be something wrong with the extension loading; I cannot access the structures from the extension when I load GPPL.

Yes, because it is not possible by design of the extensions. Newly defined structures are local to the extensions and cannot be accessed from outside (without nasty hacks that can be broken in the next versions of Julia). Extensions can only add methods to the existing names using existing names but cannot define new names for the outside world.

This type should be available when we load GraphPPL and GraphViz, I don't really see a quick fix for this but I'm sure we can find something out

maybe something like plot(..., strategy = :simple) and plot(..., strategy = :bfs). Symbol can be converted to TraversalStrategy and const-propagation should make it type-stable and even if its not its shouldn't be a big issue since this code is not performance critical and most of the time will be spent in the plotting anyway.

@FraserP117
Copy link

Interesting. Thanks @bvdmitri and @wouterwln. @chbe-helix, Kobus and I will be meeting this week to discuss/address this. Apologies for the delay on my part.

I think @bvdmitri's suggestion of a "Symbol" substitution is probably best for now. I do like the type dispatching and I'd like to have it in the long run. On that, it seems - from your comments - that these types would have to be defined in base GraphPPL.jl (outside of the extension). Is that correct?

I will do some investigating now.

@FraserP117
Copy link

Greetings @bvdmitri and all,

I'd just like to ask a few clarifications and to indicate our direction. 

Thanks again @bvdmitri, for your comments regarding suggested improvements. The first of these was "Do not use include("../ext/GraphPPLGraphVizExt.jl"), but instead overload some of the methods from GraphViz e.g GraphViz.load(model) could internally call generate_dot on the underlying graph .". I use This "include" statement in the two test files that I wrote. Now I am not sure where to go from here; I don't actually use any GraphViz.jl methods; everything is constructed by means of the dot""" string macro from GraphViz.jl. Consequently, I don't think there is anything from GraphViz.jl to "overload" in the manner you describe. Perhaps this all just comes down to my ignorance regarding Julia module conventions. I'm sure there'a a way around this but I can't see one just now.

Regarding node naming, yes we will be revising the way we do this to make sure they don't get too big and unwieldy. We'll ultimately have a way to modulate their "verbosity".

I will have a look at default layouts now and perhaps just implement dot as the default instead of neato.

Once these issues have been addressed - and if there are no more issues to address - we think that this will conclude Phase 1 and we will begin implementing Phase 2 (an as, yet under-specified phase). We have several plans but we think FFG notation might be the go for Phase 2, in addition to more verbosity modulation options like node naming and plate notation.

Thanks!

@bvdmitri
Copy link
Member

bvdmitri commented Nov 6, 2024

Ah, thats completely normal @FraserP117 that you aren't familiar with Julia extension system.

The problem with include("../ext/GraphPPLGraphVizExt.jl") is that it relies on internal Julia implementation of package extensions, it may change in the future versions of Julia (and it does change indeed as many people report issues in the Julia repository, but ultimately they're simply doing it wrong).

Instead of writing

include("../ext/GraphPPLGraphVizExt.jl")  # Include your module

using .GraphPPLGraphVizExt: generate_dot, show_gv, dot_string_to_pdf, SimpleIteration, BFSTraversal
# ...
gppl_model = RxInfer.getmodel(rxi_model)
# ...
gen_dot_result = generate_dot(model_graph = gppl_model; kwargs...)

The GraphPPLGraphVizExt name may or may not be available in future Julia versions and its very internal to the extension. So we should avoid using it explicitly. Instead we should overload some of the methods from the packages that we rely on. See the example below.

using GraphViz
gen_dot_result = GraphViz.load(RxInfer.getmodel(rxi_model)) # also looks much nicer and less code

In order to achieve this you should implement a new method in the GraphPPLGraphVizExt.jl file that would look something like:

import GraphViz: load

function GraphViz.load(gppl_model::GraphPPL.Model; kwargs...)
    # here is the code that uses `generate_dot` internally without need to expose it outside
    return generate_dot(model_graph = gppl_model; kwargs...)
end

This is the correct way of implementing extensions in Julia. Let me know if you have any further issues with this, but it should certainly work.

@FraserP117
Copy link

Thank you @bvdmitri.

That makes a lot more sense to me now and I see what you mean.

I have made a new branch "graphviz_issue_233_node_naming", intended to settle the initial convention for node naming. At the moment, it only hosts my attempt to overload GraphViz.load. I have re-defined/overloaded GraphViz.load inside the extension and I've attempted to use the new convention in test/visualization_tests_233_v2.jl.

I appear to be missing something - again, my ignorance with Julia is letting me down here - Julia is not recognising my overloaded version of GraphViz.load just yet. I will play around, research and see what I can do. Hopefully this will be added and the node naming will be sorted by the beginning of next week: @chbe-helix, Kobus and I are thinking that the default node naming convention should simply be {node_id}_{node_name} - taking care to treat certain node_name edge cases properly. We can dream up ways to modulate the verbosity of a node - including its actual value/s - later, perhaps in Phase 2.

Many thanks, talk soon.

Fraser

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants