-
Notifications
You must be signed in to change notification settings - Fork 8
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
[ENH] Add the ability to find Proper Possibly Directed Paths #112
Conversation
Signed-off-by: Aryan Roy <[email protected]>
Signed-off-by: Adam Li <[email protected]>
for more information, see https://pre-commit.ci
The CIs should now work. You can also test locally ofc with pytest. |
Signed-off-by: Aryan Roy <[email protected]>
Signed-off-by: Aryan Roy <[email protected]>
for more information, see https://pre-commit.ci
Signed-off-by: Aryan Roy <[email protected]>
for more information, see https://pre-commit.ci
Signed-off-by: Aryan Roy <[email protected]>
Signed-off-by: Aryan Roy <[email protected]>
for more information, see https://pre-commit.ci
@adam2392 I have completed the implementation and it seems to be correct. However, there is one problem. The output is a list of dictionaries. And the dictionaries can be in any order inside the list which is why the test may fail right now. How do I compare them in an order agnostic way? I know the brute force way which is to compare every element of the expected output to every element of the actual output. Was wondering if there is a better way. |
Signed-off-by: Aryan Roy <[email protected]>
for more information, see https://pre-commit.ci
Is there any inspiration from network's method for testing https://github.com/networkx/networkx/blob/main/networkx/algorithms/tests/test_simple_paths.py |
They are returning a set of tuples. I am assuming the order of tuples inside a set won't matter during comparison because of it's hashibality. However, I cannot store dictionaries inside sets. Either I change my implementation to store paths in sets(tuple()) or I can do the tests using the brute force method I described above. What do you want me to do? |
Is there any technical reason to do dictionaries instead of triples that I'm missing? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just left a few comments to hopefully push in the right direction
Sorry for the late reply.
Not really, I just did not think of using tuples at the time. I think it would be easy to go from List to Set. A better approach in terms of memory as well. |
Signed-off-by: Aryan Roy <[email protected]>
for more information, see https://pre-commit.ci
Signed-off-by: Aryan Roy <[email protected]>
Signed-off-by: Aryan Roy <[email protected]>
for more information, see https://pre-commit.ci
@adam2392 I just realised, since in this implementation, all the first nodes of all the paths are in X, this finds all the proper possibly directed paths, doesn't it? |
Signed-off-by: Aryan Roy <[email protected]>
Perhaps it's easier to implement just the function wrt a single node rather than a set of nodes. Do we need the functionality with X as a set? Wdyt? |
The paper assumes everywhere that X will be a set. And the current implementation already covers and tests X being a set. It seems to me that changing the implementation now to only support a single node in X would be wasted effort. |
Signed-off-by: Aryan Roy <[email protected]>
Yes I believe so. |
@adam2392 I believe the PR is complete. Can you do one last round of review? (PS. The failing test is due to some environment issue with some existing test) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Few short comments, but otw, it's looking good
Co-authored-by: Adam Li <[email protected]> Signed-off-by: Aryan Roy <[email protected]>
Signed-off-by: Aryan Roy <[email protected]>
for more information, see https://pre-commit.ci
Signed-off-by: Aryan Roy <[email protected]>
@adam2392 I have incorporated all of your suggestions. Can you take another look? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM except two minor nits
Signed-off-by: Aryan Roy <[email protected]>
Done! |
@adam2392 This can be optimised further by switching to a stack based implementation rather than recursion. We can add this to the TODO list. |
Thanks @aryan26roy ! |
Add the ability to find Proper Possibly Directed Paths to allow integration with DoWhy.
Fixes #111
Changes proposed in this pull request:
Before submitting
section of the
CONTRIBUTING
docs.Writing docstrings section of the
CONTRIBUTING
docs.After submitting