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
I was running DECI on my own dataset. According to examples/multi_investment_sales_attribution.ipynb, I was able to output a binary adjacency matrix from my trained model.
I am wondering if it is possible to access the weighted adjacency matrix the model actually optimized during the training process, instead of only the binary matrix.
Thank you and look forward to your reply!
The text was updated successfully, but these errors were encountered:
In order to access to the parameters learned of the underlying independent Bernoulli distribution, you can compute the mean sem instead of the mode one. That is sem_mean = sem_module().mean instead of sem_mode = sem_module().mode and obtain the parameters of the Bernoulli's by computing sem_mean.graph.
Hi team,
I was running DECI on my own dataset. According to
examples/multi_investment_sales_attribution.ipynb
, I was able to output a binary adjacency matrix from my trained model.I am wondering if it is possible to access the weighted adjacency matrix the model actually optimized during the training process, instead of only the binary matrix.
Thank you and look forward to your reply!
The text was updated successfully, but these errors were encountered: