Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

2. Attach Monitor, Keyboard/Mouse to Laptop and Power On. <done>

23. Investigate Deep Learning Software to load. (Anaconda, CUDA, TensorFlow, PyTorch, Keras,...)

4. Download Anaconda3 Individual Edition Windows 64 via link https://anaconda.com/download

    (includes Numpy, Scipy, MatPlotLib, Pandas, NLTK, SKlearn)

    (can still be updated i.e. conda install numpy,...)

    Open Anaconda3 Command Prompt type ipython at prompt (If you want to test)

    import numpy as np

    import matplotlib.pyplot as plt

    a = np.random.randn(1000)

    plt.plot(a)

    plt.show()

    plt.hist(a, bins = 15)

    plt.show()
5. Install Deep Learning Libraries: Tensorflow, Keras,

Open Anaconda3 Command Prompt type ipython at prompt (If you haven't already)

pip install tensorflow