-
Notifications
You must be signed in to change notification settings - Fork 199
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
Fix examples/Discovery_LUCAS.ipynb #15
Comments
Yes, I should fix the example ! Thanks for the feedback ! |
I'm not sure this is related, but I am looking for an explanation of how the NUM_LUCAS.csv file was generated and can't find it. Do you have that listed somewhere? |
Hi, |
@Diviyan-Kalainathan Thanks for the quick reply! Okay so from that I see now that the example is about recreating the answer graph just using examples sampled from it. The original LUCAS data is all binary and this new dataset assumes guassians at every node (the sampled data looks standardized). That being said, what constraints on the data input are there for effectively using your library? I have a causal problem I am trying to solve and like most real-world data, the input is of mixed types. Some numerical, some categorical. Would you still recommend your library for exploring the dependencies or should I be looking for a different technique? I apologize in advance if that is already covered in your README and I just missed it. |
Hi, Best regards, |
It should be fixed, sorry for the delay, but we really wanted to fix all the issues on dataset management before fixing this issue. |
I will be closing this issue, as it should be solved. Don't hesitate to reopen it if the bug still persists in the latest version. |
Cgnn.predict(data, graph=ugraph, nb_runs=16, train_epochs=1500, test_epochs=1000)
CGNN predict function doesn't acceptnb_runs
,train_epochs
andtest_epochs
anymore. It has to be called like this:Cgnn = CGNN(nb_runs=16, train_epochs=1500, test_epochs=1000)
Cgnn.predict(data, graph=ugraph)
The text was updated successfully, but these errors were encountered: