for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
# Author: Simon Blanke
# Email: [email protected]
# License: MIT License
from hyperactive import Hyperactive, Hydra, Iota, Insight, MetaLearn
from sklearn.datasets import load_iris
data = load_iris()
X = data.data
y = data.target
def test_classes():
insight = Insight(X, y)
insight._get_data_type()
hydra = Hydra()
iota = Iota()