Update README.md
Signed-off-by: David Rotermund <54365609+davrot@users.noreply.github.com>
This commit is contained in:
parent
0bac4bf40e
commit
f9a2618e55
1 changed files with 22 additions and 0 deletions
|
@ -57,6 +57,17 @@ Spectral Coherence
|
|||
|
||||
## 6
|
||||
|
||||
{: .topic-optional}
|
||||
Don't normalize the time series!
|
||||
|
||||
i.e. don't do something like this:
|
||||
|
||||
```python
|
||||
data -= data.mean(axis=1, keepdims=True)
|
||||
data /= data.std(axis=1, keepdims=True)
|
||||
```
|
||||
Otherwise you will not classify anything.
|
||||
|
||||
![image12.png](image12.png)
|
||||
|
||||
Scaled by divison max() for every individual frequency band (Bad times happen):
|
||||
|
@ -65,6 +76,17 @@ Scaled by divison max() for every individual frequency band (Bad times happen):
|
|||
|
||||
## 7
|
||||
|
||||
{: .topic-optional}
|
||||
Don't normalize the time series!
|
||||
|
||||
i.e. don't do something like this:
|
||||
|
||||
```python
|
||||
data -= data.mean(axis=1, keepdims=True)
|
||||
data /= data.std(axis=1, keepdims=True)
|
||||
```
|
||||
Otherwise you will not classify anything.
|
||||
|
||||
![image14.png](image14.png)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue