Getting Started with various Tools

10 / 43

Scikit-learn

Purpose: Scikit-learn is a free software machine learning library for the Python programming language.

Home Page: https://scikit-learn.org/stable/

Documentation: https://scikit-learn.org/stable/user_guide.html

Related resources to learn: https://cloudxlab.com/course/all/?name=scikit&page=1

How to get started:

  1. In the Notebook tab on the right side of the screen, make sure to be using Python3 Kernel. If not, you may change the kernel to Python3 as follows:

    Click on Kernel -> Change Kernel -> Python3 from the menu at the top

  2. Type the following code to import Scikit-learn

    import sklearn
    
  3. Type the below code to check the version of Scikit-learn

    sklearn.__version__
    

No hints are availble for this assesment

Answer is not availble for this assesment

Loading comments...