Total Complexity | 1 |
Total Lines | 18 |
Duplicated Lines | 0 % |
Changes | 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 |