Difference between revisions of "Geron Chap 10 Introduction to Artificial Neural Networks with Keras"

From wikidb
Jump to: navigation, search
(Installing TensorFlow 2)
(A Fashion MNIST Dataset Example)
 
(One intermediate revision by the same user not shown)
Line 27: Line 27:
 
   '2.11.0'
 
   '2.11.0'
 
   >>>
 
   >>>
 +
 +
= A Fashion MNIST Dataset Example =
 +
 +
* [[Geron Chap 10 Building an Image Classifier Using the Sequential API 20221231]]
 +
 +
Alternative
 +
 +
* [[Geron Chap 10 Use Jupyter Colab Notebook to Build Image Classifier 20231007]]

Latest revision as of 20:34, 7 January 2023

Installing TensorFlow 2

  • p 296 - told me to got to Chapter 2
  • p 45 chapter 2 - I came back
  • p 297
 $ cd $ML_PATH

 $ ls
     Housing.ipynb  tfenv

 $ source tfenv/bin/activate
     ml$ 

 ml$ python3 -m pip install -U tensorflow

TensorFlow Install Log 20221231

 ml$ python3

Python3 Startup Log 20221231

 >>> from tensorflow import keras
 >>> tf.__version__
 '2.11.0'
 >>> keras.__version__
 '2.11.0'
 >>>

A Fashion MNIST Dataset Example

Alternative