Page 3 of 3

Re: Introduction to Machine Learning and TensorFlow With Python

Posted: Thu Jun 09, 2022 5:52 pm
by Eli
Nature paper, recent breakthrough:

https://www.nature.com/articles/s41586-022-04714-0

Re: Introduction to Machine Learning and TensorFlow With Python

Posted: Mon Aug 22, 2022 2:22 pm
by Eli

Re: Introduction to Machine Learning and TensorFlow With Python

Posted: Thu Sep 15, 2022 5:51 am
by Eli

Re: Introduction to Machine Learning and TensorFlow With Python

Posted: Thu Sep 15, 2022 7:48 pm
by Eli

Re: Introduction to Machine Learning and TensorFlow With Python

Posted: Sun Oct 16, 2022 9:06 pm
by Eli

Re: Introduction to Machine Learning and TensorFlow With Python

Posted: Mon Dec 05, 2022 11:59 pm
by Eli


Re: Introduction to Machine Learning and TensorFlow With Python

Posted: Thu Jan 26, 2023 3:58 am
by Eli
Hi @abdulmakuya

Welcome to TSSFL Stack. This topic may be of interest to you!

Re: Introduction to Machine Learning and TensorFlow With Python

Posted: Wed May 31, 2023 2:15 pm
by Eli
Installing TensorFlow and Keras on Ubuntu Linux 22.04 in 2023:

You may need to upgrade setuptools before doing so:

  1. pip3 install ––upgrade setuptools

  1. #Upgrade pip
  2. pip install --upgrade pip
  3. #Install tf
  4. pip install --upgrade tensorflow
  5. #Install keras
  6. pip install --upgrade keras


We could install keras, tensorflow, and any other python packages with specific python version.

For example, to install a package with the Python3.12 pip, run the command:

  1. $ python3.12 -m pip3 install <package_name>


Re: Introduction to Machine Learning with TensorFlow and Keras

Posted: Thu Sep 14, 2023 11:40 pm
by Eli