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
Seed. Seed is usually implemented by XOR-ing: sys.rand ^ seed if seed is provided or without any XOR if not provided.
if XOR is not implemented yet and it takes time to implement we can implement it without seed for now.
Shuffle. Optional, as using sys.rand makes it shuffled by default. If we need shuffle=False at some point we might consider using sorting and sys.id instead. But I'm not sure shuffle=False is very practical in real applications.
The text was updated successfully, but these errors were encountered:
See original issue: #603
Some improvements we may want to be implemented:
Seed. Seed is usually implemented by XOR-ing: sys.rand ^ seed if seed is provided or without any XOR if not provided.
if XOR is not implemented yet and it takes time to implement we can implement it without seed for now.
Shuffle. Optional, as using sys.rand makes it shuffled by default. If we need shuffle=False at some point we might consider using sorting and sys.id instead. But I'm not sure shuffle=False is very practical in real applications.
The text was updated successfully, but these errors were encountered: