Skip to content
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

How to set the new parameter values to the algorithm #19

Open
dpkkumar01 opened this issue Aug 4, 2017 · 1 comment
Open

How to set the new parameter values to the algorithm #19

dpkkumar01 opened this issue Aug 4, 2017 · 1 comment

Comments

@dpkkumar01
Copy link

I would like to modify the below parameters in my algorithm.

'precision'(4): # how many sections to categorize values,
'lag_window_size'(2% of the series length): # lagging window size,
'future_window_size'(2% of the series length): # future window size,
'chunk_size'(2): # chunk size.

How to pack and pass the above parameters in "algorithm_params" variable.

Thanks in advance.

@brennv
Copy link
Contributor

brennv commented Sep 28, 2017

You can pass these as arguments to the BitmapDetector, the default arguments are:

BitmapDetector(time_series, baseline_time_series=None, precision=None, 
               lag_window_size=None, future_window_size=None, chunk_size=None)

If the arguments aren't specified then the constants in src/luminol/constants.py are used.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants