This script modifies the new UCR Time-Series Archive to make it backwards compatible with previous versions and enable older code and scripts to run without modifications.
- Modifies class enumeration to be consistent across all datasets
- Case 1: Class enumeration starts from "0" instead of "1" (which is the case in the majority of the datasets)
- Case 2: Binary classes are "-1" and "1" instead of "1" and "2" (which is the case in the majority of the binary datasets)
- Case 3. Class enumeration starts from "3" instead of "1" (which is the case in the majority of the datasets)
- Fills missing values through linear interpolation
- Resamples shorter time series to reach the longest time series (i.e., makes all time series of same length)
- Ensures z-normalized datasets
- Saves files using ',' as delimiter and with same numeric precision as the original dataset
- Create a new directory (e.g., DATASETSNEW). We assume DATASETSOLD contains the current UCR Archive.
- Remove desktop.ini file
- Remove *.ini files from subdirectories
- Remove *.md files from subdirectories
- Remove *.tsv suffixes from TRAIN and TEST files in each subdirectory
- Copy directory structure from DATASETSOLD to DATASETSNEW
- Run the LoadandFixUCRArchive.m script in Matlab IDE
mkdir DATASETSNEW
cd DATASETSOLD
rm -rf desktop.ini
find . -type f -name '*.ini' -delete
find . -type f -name '*.md' -delete
find . -name '*.tsv' -exec sh -c 'mv "$0" "${0%%.tsv}"' {} \;
find * -type d | cpio -pd ../DATASETSNEW
cd ..
Open Matlab and run LoadandFixUCRArchive