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
If len(lines) = 4, list(range(len(lines) - 1)) would be only [0, 1, 2]
So.. Is here need to remove -1 to make sure the sample result is include the last line of file?
Hi,
If
len(lines)
= 4,list(range(len(lines) - 1))
would be only [0, 1, 2]So.. Is here need to remove
-1
to make sure the sample result is include the last line of file?from:
AWE/AnonymousWalkKernel.py
Line 403 in 6dd26b3
to:
c = Counter(np.random.choice(range(len(lines)), size = batch_size))
thanks
The text was updated successfully, but these errors were encountered: