Spaces:
Sleeping
Sleeping
Jensen-holm
commited on
Commit
·
d23d936
1
Parent(s):
d824bdc
railway did not like my type hinting
Browse files- dataset/iris.py +1 -3
dataset/iris.py
CHANGED
@@ -1,9 +1,7 @@
|
|
1 |
from sklearn.datasets import load_iris
|
2 |
from sklearn.preprocessing import OneHotEncoder, StandardScaler
|
3 |
-
import numpy as np
|
4 |
|
5 |
-
|
6 |
-
def iris() -> tuple[np.array]:
|
7 |
"""
|
8 |
returns a tuple of numpy arrays containing the
|
9 |
iris dataset split into training and testing sets
|
|
|
1 |
from sklearn.datasets import load_iris
|
2 |
from sklearn.preprocessing import OneHotEncoder, StandardScaler
|
|
|
3 |
|
4 |
+
def iris():
|
|
|
5 |
"""
|
6 |
returns a tuple of numpy arrays containing the
|
7 |
iris dataset split into training and testing sets
|