Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 988 Bytes

File metadata and controls

32 lines (25 loc) · 988 Bytes

Tensorflow Training

Getting Started

  • Step 1: Download and install the Anaconda environment: https://www.anaconda.com/download/ (make sure the PATH are correctly set if you are using Windows)

  • Step 2: Create the conda environment

conda create -n tf_training python=3.5 
  • Step 3: Activate the environment and install the libraries:
activate tf_training

and

    conda install jupyter
    conda install numpy
    conda install pandas
    conda install scikit-learn
    conda install matplotlib
    conda install keras
    conda install h5py
    pip install --upgrade tensorflow 
  • Step 4: Launch Anaconda Navigator, select the tf_training environment, run the Jupyter notebook and enjoy...

Further resources