Machine Learning Programming Workshop

Prepared By: Cheong Shiu Hong (FTFNCE)


Requirements for this Workshop:


  • Python Programming

  • Anaconda 3 for Built-in Dependencies for Machine Learning

  • Jupyter Notebook as Programming Environment

  • Tensorflow (Used in Session 3 & 4)



Installing Tensorflow:

1) Open Anaconda Prompt

2) Type in "pip install tensorflow==2.0.0-alpha0"

3) You should get this:


Restart Anaconda/Jupyter Notebook and Test if you can import:

In [1]:
import tensorflow as tf
In [2]:
print(tf.__version__)
2.0.0-alpha0
In [3]:
import tensorflow.keras as K
In [4]:
print(K.__version__) # tf means Tensorflow Backend
2.2.4-tf