-
Notifications
You must be signed in to change notification settings - Fork 572
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
data format of UCR2018 #27
Comments
I am not quite sure which format is now available, I will get back to you once I re-check the UCR archive. |
Hi Sir, I have the same question here. Do you have any updates about the data format? thanks! |
more specifically, I see the errors are: python3 main.py TSC Coffee fcn _itr_8 |
i had the same problem and solved it by using Coffee_TRAIN.txt and Coffee_TEST.txt instead of the once with .ts format. Then if you go to line 33 of utils.py u can see [data = np.loadtxt(filename, delimiter=' ,')]. Here you just need to swap the "," with a double spacebar, since the txt file has a different separator for parseing. Now i have different error but at least you can solve that one XD |
I think the problem is that the UCR dataset was updated in 2018, which changed the formatting (and added new datasets). I found the old dataset through this link, which appears to work. Hope this helps anyone running into this! |
I’m glad to here from you. Thanks a lot!
Best wishes,
Dan
On 10/28/2020 14:52, Andrew wrote:
I think the problem is that the UCR dataset was updated in 2018, which changed the formatting. I tried out the old dataset, which appears to work. Here is the link to download the old dataset (the password is "attempttoclassify"). Hope this helps anyone running into this issue!
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
I managed to run the baselines on UCR dataset in the data formt arff with the following modifications:
Hope this could be helpful for someone else ;-) |
hello, I have found the data in .tsv format. This is the website https://www.cs.ucr.edu/~eamonn/time_series_data_2018/ |
In utils.py, there is "pd.read_csv(..._TRAIN.tsv)",but there is now only data of ts format provided on the official website. Then there is obvious error for "y_train = df_train.values[:,0]" if data of ts format is used. Can you add some comment about the data shape? I'm really quite confused.
The text was updated successfully, but these errors were encountered: