willkurt / csv2tensor

A simple utility to transform a CSV file into a Torch7 Tensor

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missing first element from column

dsanders3000 opened this issue · comments

This seems to miss out the first row for each column no matter how I config it.

I have a small dataset of 10080 rows (single column), only 10079 will ever be turned into a tensor.

I've tried:

tx_tens1, tx = csv2tensor.load("tx.csv")
tx_tens2, tx = csv2tensor.load("tx.csv",{exclude={"label"}})
tx_tens3 = csv2tensor.load("tx.csv",{include={"label"}})