You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
464 B
19 lines
464 B
6 years ago
|
# Imports
|
||
|
|
||
|
You import local files first, than spesific liba and then standart libs.
|
||
|
So you import from something very scecific to something very common.
|
||
|
It allows you to pay attention on most important things from beginning.
|
||
|
|
||
|
```
|
||
|
|
||
|
from data_provider import DataProvider
|
||
|
from anomaly_model import AnomalyModel
|
||
|
from pattern_detection_model import PatternDetectionModel
|
||
|
|
||
|
import numpy as np
|
||
|
|
||
|
from scipy.signal import argrelextrema
|
||
|
|
||
|
import pickle
|
||
|
|
||
|
```
|