Skip to content

Commit 06249fd

Browse files
Update other/iris/iris.jl
Co-authored-by: Carlo Lucibello <carlo.lucibello@gmail.com>
1 parent d6d1121 commit 06249fd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

other/iris/iris.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ end
4444

4545
function get_processed_data(args)
4646

47-
iris = Iris()
48-
labels = iris.targets |> Matrix |> vec
49-
features = iris.features |> Matrix |> permutedims
47+
iris = Iris(as_df=false)
48+
labels = iris.targets |> vec
49+
features = iris.features
5050

5151
## Subract mean, divide by std dev for normed mean of 0 and std dev of 1.
5252
normed_features = normalise(features, dims=2)

0 commit comments

Comments
 (0)