I used np.genfromtxt to load a txt file.
Below is the code
datasets = np.genfromtxt('X&YTrainingsets1.txt',delimiter="")
It happens that I got an error
ValueError: Some errors were detected !
Line #1162 (got 5 columns instead of 7)
Line #1163 (got 2 columns instead of 7)
So I had to look through the txt file and I found this. So how do I solve this problem?. Thanks