Skip to content

Commit

Permalink
updates by Saniya
Browse files Browse the repository at this point in the history
  • Loading branch information
SaniyaKhullar committed May 1, 2024
1 parent c58154b commit 7f2460f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/PriorGraphNetwork.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class PriorGraphNetwork:

def __init__(self, **kwargs): # define default values for constants

self.edge_values_for_degree = False # we instead consider a threshold by default (for counting edges into our degrees)
self.edge_values_for_degree = True # we instead add edges instead of using a threseshold by default (for counting edges into our degrees)
self.consider_self_loops = False # no self loops considered
self.verbose = True # printing out statements
self.pseudocount_for_degree = 1e-3 # to ensure that we do not have any 0 degrees for any node in our matrix.
Expand Down

0 comments on commit 7f2460f

Please sign in to comment.