Exercises
Try to work through the following exercises:
- Create a synthetic dataset with 100,000 elements with values from -10 to 10 and construct an iSAX index with 4 segments, a cardinality of 64, and a threshold value of
1000
. How much time did it take your machine to create the iSAX index? Are there any overflows? - Create a synthetic dataset with 100,000 elements with values from -1 to 1 and construct an iSAX index with 4 segments, a cardinality of 64, and a threshold value of
1000
. How much time did it take your machine to create that iSAX index? - Create a synthetic dataset with 500,000 elements with values from 0 to 10 and construct an iSAX index with 4 segments, a cardinality of 64, and a threshold value of
1000
. How much time did it take your machine to create the iSAX index? - Create a synthetic dataset with 500,000 elements with values from 0 to 10 and construct an iSAX index with 4 segments, a cardinality of 64, and a threshold value of
1000
. How many splits...