Passed
Push — master ( 57810b...fc102b )
by Simon
02:13
created

tests.test_classes   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 17
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 10
dl 0
loc 17
rs 10
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A test_classes() 0 4 1
1
# Author: Simon Blanke
2
# Email: [email protected]
3
# License: MIT License
4
5
from hyperactive import Hyperactive, Hydra, Iota, Insight, MetaLearn
6
from sklearn.datasets import load_iris
7
8
data = load_iris()
9
X = data.data
10
y = data.target
11
12
13
def test_classes():
14
    insight = Insight(X, y)
15
    hydra = Hydra()
16
    iota = Iota()
17