:78 Function create_function() is deprecated [8192]

Fixed future implementation of first and second network.

Erik Spence [2017-09-22 15:55:52]
Fixed future implementation of first and second network.
Filename
code/first_network.py
code/second_network.py
diff --git a/code/first_network.py b/code/first_network.py
index 009887a..8baa7ac 100644
--- a/code/first_network.py
+++ b/code/first_network.py
@@ -18,9 +18,9 @@ network.  Use 'build_model' to train the network.
 #######################################################################


+from __future__ import print_function
 import numpy as np
 import numpy.random as npr
-from __future__ import print_function


 #######################################################################
diff --git a/code/second_network.py b/code/second_network.py
index 602369a..f892b8c 100644
--- a/code/second_network.py
+++ b/code/second_network.py
@@ -20,9 +20,9 @@ network.
 #######################################################################


+from __future__ import print_function
 import numpy as np
 import numpy.random as npr
-from __future__ import print_function


 #######################################################################
ViewGit