Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (6.5k points)

1 Answer

0 votes
by (11.3k points)
edited by

Machine Learning in python is primarily implemented via the use of the sci-kit learn library present for importing in Python. You can import this library in the following manner.

from sklearn import datasets

Where 'sklearn' is the library and you're importing the 'datasets' function to specifically use dataset functions. 

You can implement, for instance, these functions in the following way:

iris = datasets.load_iris()

You can look into, more about ML in Python explained in this video by Intellipaat if you're starting out with the concept:

Browse Categories

...