From f594ae26ec96745761a279f6c365b7680cf185b9 Mon Sep 17 00:00:00 2001 From: Zoli Veres Date: Fri, 12 Aug 2022 20:42:53 +0300 Subject: [PATCH] Fixed wrong import The code at it's current version is not running, it needs `vertical_data` to be imported --- Chapter_6/Ch6_final.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Chapter_6/Ch6_final.py b/Chapter_6/Ch6_final.py index 3c06055d5..d23f9bc91 100644 --- a/Chapter_6/Ch6_final.py +++ b/Chapter_6/Ch6_final.py @@ -1,6 +1,6 @@ import numpy as np import nnfs -from nnfs.datasets import spiral_data +from nnfs.datasets import vertical_data nnfs.init()