You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.
The XY graph for capturing the relationship with parents and child data points are really helpful. But most of the time, we create a new child node by combining two (or more) parent nodes. In the current version, I can see
Multiple points can share the same parent.
Is it possible to include multiple parents to the same child so that the "family tree" can be traced during the experiment?
The text was updated successfully, but these errors were encountered:
It's indeed something we are interested in doing for future versions. My only worry is about readability. If each point has 2 parents, the whole ancestors tree can contain thousands of points in the early generations, which will make the plot hard to read. So there are several ways to do it:
either highlight all the ancestors
highlight the most recent N ancestors (but we have to hardcode a limit N somewhere)
only highlight direct parents if there is more than one parent
For your use-case, how many datapoints do you have typically, over how many generations?
Hi @danthe3rd
My experiments are on NeuroEvolution and relatively small, up to 64 generations and population ranging from 32 - 128 candidates. And this could be an interesting tool to analyze one experiment at a time also.
As you rightly pointed out, if all ancestors are highlighted, readability may be an issue. Right now, the highlighting is done as a thick line. What if, with multiple parents, the highlighting it still thick, but as the distance in X-axis increases, the alpha-factor (opacity) is reduced? This way, the immediate parents can be easily visualized and far away ancestors are highlighted with less visual clutter?
Oh that sounds like a good solution!
More generically (because the X axis can be arbitrary, and not always increasing), we could divide the alpha factor by the number of parents (or a function of it) - which would preserve the current behavior for cases with 1 parent or less.
I'll give it a try in the coming weeks and let you know later :)
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The XY graph for capturing the relationship with parents and child data points are really helpful. But most of the time, we create a new child node by combining two (or more) parent nodes. In the current version, I can see
Is it possible to include multiple parents to the same child so that the "family tree" can be traced during the experiment?
The text was updated successfully, but these errors were encountered: