JavierAntoran / Bayesian-Neural-Networks

Pytorch implementations of Bayes By Backprop, MC Dropout, SGLD, the Local Reparametrization Trick, KF-Laplace, SG-HMC and more
MIT License
1.83k stars 302 forks source link

Panda not reading the first row #8

Open caxelrud opened 4 years ago

caxelrud commented 4 years ago

Minor bug. Instead of: data = pd.read_csv('housing.data', header=0, delimiter="\s+").values Use: data = pd.read_csv('housing.data', header=None, delimiter="\s+").values

JavierAntoran commented 3 years ago

Thanks for flagging this! It looks to be a pandas version issue. We are looking into it.