ANKIT RATHORE
ANKIT RATHORE
Thank you so so so very much, sir. Your efforts are so very laudable.
I DON'T UNDERSTAND THE EXPLANATION GIVEN BELOW THE CODE: IT IS IN THE HANDSON ML AGERON BOOK->CHAPTER 3->MNIST CLASSIFICATION->MULTILABEL CLASSIFICATION.. >>> y_train_knn_pred = cross_val_predict(knn_clf, X_train, y_train, cv=3) >>> f1_score(y_train, y_train_knn_pred,...
Sir, could you please explain how does the code work: split = StratifiedShuffleSplit(n_splits = 1, test_size = 0.2, random_state = 42) for train_set, test_index in split.split(housing, housing["income_cat"]): strat_train_set = housing.loc[train_index]...
Please if you could also explain how the values are loaded to the variables train_set and test_set each time the loop executes.... Please sir sorry for the inconvenience but I...
Really Really highly obliged sir...
sir but I the for loop, i.e. for train_index, test_index in split.split(housing, housing["income_cat"]): , you said each time a tuple is assigned to the duo variables and each value is...
cmap=plt.cm.gray, cmap=mpl.cm.binary and cmap=plt.get_cmap("gray") I just wanted to ask that what is the difference between all these three and the other functions. Please help me out sir I searched a...
sir could you please help me with the graph in the figure 2-9... how does it represent the various strata for the categories of the median income please sir..What does...
sir could you also explain this line with a bit detail : ``` for train_index,test_index in split.split(housing,housing["income_cat"]): strat_train_set = housing.loc[train_index] strat_test_set = housing.loc[test_index] ``` what is exactly happening in the...
cmap=plt.cm.gray, cmap=mpl.cm.binary and cmap=plt.get_cmap("gray") i just wanted to ask that what is the difference between all these three and the other functions. Please help me out sir I searched a...