-
Notifications
You must be signed in to change notification settings - Fork 4
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
Hello, could you tell me how to calculate this value, std_split ? #1
Comments
Hello, |
Thank you very much for your reply.
…------------------ 原始邮件 ------------------
发件人: "benibaeumle/FSS-Algorithm" ***@***.***>;
发送时间: 2022年4月13日(星期三) 下午5:32
***@***.***>;
***@***.******@***.***>;
主题: Re: [benibaeumle/FSS-Algorithm] Hello, could you tell me how to calculate this value, std_split ? (Issue #1)
Hello,
in their paper the authors just write Next, we calculate the standard deviation value of these adjacent discrepancies. At last, we can separate the data into subclasses by splitting at the sequence that has difference larger than half of the computed standard deviation..
Unfortunately, I have no justified argument for you on how to best choose a value for std_split. The obvious thing is, with higher values you sample fewer time series as you pack more and more distinct time series into the same subclass.
Maybe visualizing the adjacent discrepancies along with different split values might give you an indication.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Hello, this sentence“we can separate the data into subclasses by splitting at the sequence that has difference larger than half of the computed standard deviation” means that remove the part greater than standard deviation and the rest time series as the sample time series.Am I right? |
Hello, this method FastShapeletCandidates is to get shapelet candidates of one class, right? |
I am not sure if I understand you correctly. Please, see the paper chapter 3.1 for how this particular step is computed (I do not have Latex support when answering here, so having a look on the paper should be more comfortable for you). But in words, what is computed is:
The result after computing the 8 steps above is the set of subclasses. |
Yes. |
Thanks a lot. |
Hello,how should I understand the last split point and the current split point in step 7? |
See here. |
Thanks a lot.In your demo,the data set ,fordA_sample, will generate 6300 shapelets.Do you know how to remove those that may overlap shapelets to reduce time complexity? |
std_split : float
the standard deviation from the mean to subdivide the time series of a class into subclasses.
The text was updated successfully, but these errors were encountered: