Passed
Push — master ( cf9bea...be9f2b )
by Simon
02:13
created

tests._test_classes.test_classes()   A

Complexity

Conditions 1

Size

Total Lines 5
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nop 0
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
    insight._get_data_type()
16
    hydra = Hydra()
17
    iota = Iota()
18