Skip to content

Commit 14d28d9

Browse files
committed
fix GraphWave Casting
1 parent 8a97825 commit 14d28d9

File tree

3 files changed

+1
-1
lines changed

3 files changed

+1
-1
lines changed

.DS_Store

-2 KB
Binary file not shown.

semb/.DS_Store

0 Bytes
Binary file not shown.

semb/methods/graphwave/method.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def train(self):
2121
taus_input = self.params['taus']
2222
# learns representations of dimension 4x as many time points?
2323
time_points = np.linspace(
24-
self.params['time_bounds'][0], self.params['time_bounds'][1], num=int(self.params['dim'])/4)
24+
self.params['time_bounds'][0], self.params['time_bounds'][1], num=int(self.params['dim']/4))
2525
if self.graph.number_of_nodes() > self.params['thresh']:
2626
print('Using Chebyshev polynomial approximation of heat kernel')
2727
proc = 'approx'

0 commit comments

Comments
 (0)