There's an issue that I was experiencing in which I'd run X, y = processor.load_go_data(num_samples=1000), but X and y would end up being the same values (both of them were features, neither contained values).
As far as I can tell, this PR should fix the issue and actually make the data loader work.
There's an issue that I was experiencing in which I'd run
X, y = processor.load_go_data(num_samples=1000)
, butX
andy
would end up being the same values (both of them were features, neither contained values).As far as I can tell, this PR should fix the issue and actually make the data loader work.