/gradient-descent

Aula de TEIA3 sobre Gradient

Primary LanguagePython

Packages

  • Pip

      python -m pip install -U pip
    
  • Scikit-Learn

      pip install scikit-learn
    

    In order to check your installation you can use:

      python -m pip show scikit-learn  # to see which version and where scikit-learn is installed
      python -m pip freeze  # to see all packages installed in the active virtualenv
      python -c "import sklearn; sklearn.show_versions()"
    
  • NumPy

      pip install numpy
    
  • Pandas

      pip install pandas
    
  • Matplotlib

      pip install matplotlib