Geocene / trainset

A lightweight web application for brushing labels onto time series data; useful for building training sets.
https://trainset.geocene.com/
MIT License
162 stars 36 forks source link

Problem with input data #142

Closed adityamishraaaa closed 5 months ago

adityamishraaaa commented 7 months ago

Hello there,

I was working on a time series data with sampling rate of 1024. I want to classify the data as 0 or 1, I have converted my data to the supported format, but still it is not supported by trainset. I have attached few columns of the data set. can you please help me out with this? trainset.csv

daterdots commented 7 months ago

It looks like the timestamps were not formatted correctly. Add that "T" between the date and time, and add the "Z" at the end. Here is a fixed CSV (which aliased your timestamps a little but, but it's a start.

image
adityamishraaaa commented 7 months ago

Thank you so much for resolving the issue. It turns out that I mistakenly uploaded the wrong CSV file. The problem actually stemmed from my usage of Pandas to convert the timestamp into ISO8601 format. Interestingly, the solution was quite simple – just adding "T" and "Z" did the trick!