MACHINE LEARNING

APPLICATION OF SUPERVISED LEARNING

MACHINE LEARNINGHARD QUESTIONS

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
What is the use of this code? print (digits.DESCR)
A
This will print the description of digits.
B
print numbers
C
none of this
D
None of the above
Explanation: 

Detailed explanation-1: -The sklearn. datasets package embeds some small toy datasets as introduced in the Getting Started section. This package also features helpers to fetch larger datasets commonly used by the machine learning community to benchmark algorithms on data that comes from the ‘real world’.

Detailed explanation-2: -In [11]: from sklearn.datasets import load digits import pandas as pd import matplotlib.pyplot as plt %matplotlib inline. In [2]: mnist = load digits() In [3]: type(mnist) mnist. keys() In [5]: DataFrame(mnist. In [6]: DataFrame(mnist. In [13]: plt. In [27]: 22-Jun-2019

There is 1 question to complete.