Your browser does not support JavaScript!

Introduction to Machine Learning

Showing 1-75 of 163 answers

4To get the best value for k, choose the value of k that offers the least accuracy Maximum
  • True
  • False Correct
A better way to visualize is to start the x-axis at 45 and increase the y-range axis's
  • True
  • False Correct
A broken value, representing the likelihood of an observation belonging to a given class, can also be the result of a classification difficulty
  • True
  • False Correct
A dependent variable class in the Scikit-learn library can help you precisely create an instance of this class and use the heights and weights lists to build a linear regression model with the fit() function LinearRegression class
  • True
  • False Correct
A good application of Python programming is determining if a particular credit card transaction is fraudulent
  • True
  • False Correct
A hard margin means that an SVM is very rigid in classification and tries to work extremely well in the training set, causing overfitting
  • True Correct
  • False
A high Gamma value indicates that every point has a far reach
  • True
  • False Correct
A higher C will aim for the widest margin possible, but it will result in some points being classified incorrectly
  • True
  • False Correct
A model that detects fraudulent credit card use, for example, would be trained using a dataset that included labeled data points of known fraudulent and valid charges
  • True Correct
  • False
A more sensible strategy would be to use the confusion matrix
  • True Correct
  • False
A NumPy object is created in the same way that a NumPy array is created
  • True
  • False Correct
A NumPy slice generates a reference rather than a copy of the original array
  • True Correct
  • False
A polynomial regression line may not always be the optimal method for effectively capturing the relationships between the characteristics and labels
  • True
  • False Correct
A positive correlation exists when one variable increases as the other increases or when one variable decreases while the other decreases
  • True Correct
  • False
A relationship between two variables is said to have a positive correlation when both variables move in lockstep
  • True Correct
  • False
A running number shows how cells were performed when they were run
  • True Correct
  • False
A state-based matplotlib interface called matplotlibfigure offers an implicit plotting method that is similar to MATLAB Matplotlibpyplot
  • True
  • False Correct
A straight line attempting to connect all the locations has a strong variance because it doesn't cut through all the points
  • True
  • False Correct
All points can be separated linearly, nor can they be separated using the kernel tricks
  • True
  • False Correct
Although printing the predictions alongside the test set's original diagnoses is useful, it does not give a clear sense of how well the model predicts if a tumor is malignant
  • True Correct
  • False
An overfitted model's main drawback is that it will struggle to handle brand-new, untested data
  • True Correct
  • False
Anaconda is a web-based editor for working with Python projects
  • True
  • False Correct
Anaconda is an open source package management system and environment management system for installing multiple versions of software packages and their dependencies and switching easily between them
  • True
  • False Correct
Another important element to keep in mind is that the outcome of the slicing is determined by how you slice it
  • True Correct
  • False
Another option for dealing with Isnull in your dataset is to delete the rows that contain them NaNs
  • True
  • False Correct
Any dimension can be used to calculate the distance between two places using the Euclidean distance() function
  • True Correct
  • False
Applying a trained model to data is what fit() and transform() are designed to do predict()
  • True
  • False Correct
Because it will generate dramatically different RSS for varied datasets, the curved line exhibits a great amount of fluctuation
  • True Correct
  • False
Because the bars could overlap, it's crucial to be able to tell them apart by setting their alpha to 05 (making them translucent)
  • True Correct
  • False
Because the data distribution in datasets might not be uniform, your test set might be difficult to anticipate, making it impossible to determine whether your model is inefficient
  • True
  • False Correct
Because the RSS is consistent across datasets, a straight line has a minimal variance
  • True Correct
  • False
Boolean indexing is a mechanism for selecting the number of rows to print
  • True
  • False Correct
Boolean indexing is a method that lets you select how many rows to print
  • True
  • False Correct
By default, Matplotlib will decide on the colors for each slice of the pie
  • True Correct
  • False
By estimating property prices based on several features, you will discover a variation on simple linear regression known as multiple linear regression
  • True Correct
  • False
Clustering helps in forecasting the future by estimating the relationship between variables
  • True
  • False Correct
Depending on the inputs, the plot() function may or may not construct connecting lines when drawing points
  • True
  • False Correct
Each cell in a Jupyter Notecourse can be run independently
  • True Correct
  • False
Factor plots are frequently used to show how one variable affects the value of another Scatter plot
  • True
  • False Correct
For instance, when you flip a coin, the probability of getting a head is 1
  • True Correct
  • False
For SVM, the right line is the one that has the widest margins, with each margin touching at least a point in each class
  • True Correct
  • False
Fortify() initializes a ggplot object that can be used to declare the input data frame for a graphic and specify the plot aesthetics intended to be common throughout all subsequent layers unless specifically overridden Ggplot()
  • True
  • False Correct
If the DataFrame is too long, you can use the head() function to accomplish this
  • True Correct
  • False
If the random state parameter of the train_test_curve() function is not supplied, you will receive a different training and testing set each time you call this function
  • True
  • False Correct
If you wish to extract specific rows and columns from a DataFrame, you'll need to use the index property
  • True
  • False Correct
In a Jupyter Notecourse, each cell can be run individually
  • True Correct
  • False
In bar charting, the colors will be recycled because there are more slices than the colors you requested Pie charting
  • True
  • False Correct
In data cleansing, no encoding is required if the collection already contains all numerical values
  • True Correct
  • False
In general, most DataFrame operations do not change the original DataFrame
  • True Correct
  • False
In machine learning, regression identifies which set of categories a new observation belongs to based on training data containing the observed categories
  • True
  • False Correct
In mathematics, accuracy is calculated by dividing the total number of guesses by the total number of correct forecasts or prediction
  • True Correct
  • False
In matplob, you can easily connect the three elements better by dragging the plot with your keyboard
  • True
  • False Correct
In Pandas, slicing may be applied to both Series and DataFrames
  • True Correct
  • False
In slicing by number, start:end means extracts row start through row-end but includes the end row, slicing by value includes the end row
  • True
  • False Correct
In the KNN model, the score is higher at the conclusion of the k-runs
  • True
  • False Correct
Instead of writing the index of each row and column at the center of the number, a better method to visualize slicing is to write it between the numbers
  • True Correct
  • False
It is not possible to draw a straight line to separate two sets of points However, you can make this set of points linearly separable with some manipulation
  • True Correct
  • False
It is unclear at what value the linear regression line intercepts the x-axis Y-axis
  • True
  • False Correct
It means that you have a 50% chance of landing a head when you state that the odds of landing a head are 1
  • True Correct
  • False
It's critical to distinguish between the bars by setting their alpha to 05 because they may overlap (which makes them transparent)
  • True Correct
  • False
It's worth noting that a NumPy slice produces a reference rather than a copy of the original array
  • True Correct
  • False
It's worth noting that the scatterplot will choose the colors for each pie chart slice Matplotlib
  • True
  • False Correct
It's worth noting that the sort_values() function only accepts Series objects with indexes equal to the DataFrame's index (axis=0) or the DataFrame's columns (axis=1)
  • True
  • False Correct
It's your responsibility to organize each of the points into a distinct group so that you can look for a pattern
  • True Correct
  • False
Keep in mind that the boundary smooths out as k decreases
  • True
  • False Correct
Labels are also often referred to as targets, whereas features are also referred to as explanatory variables
  • True Correct
  • False
Loading the dataset into a Pandas dataframe and then using the predict() function to check for null values in the dataframe is an effective technique to detect empty rows Isnull()
  • True
  • False Correct
Matplotlib makes constructing intricate charts and figures simple, and it works well as a machine learning tool when combined with Jupyter Notebook
  • True Correct
  • False
Matplotlib makes it simple to create sophisticated charts and figures, and its combination with Jupyter Notebook makes it an excellent machine learning tool
  • True Correct
  • False
Matplotlib will choose the colors for each of the slices in the pie chart by default
  • True Correct
  • False
Multiplying the relevant entries in each vector and adding the results yields the sum product of two vectors
  • True
  • False Correct
NumPy arrays make it simple to conduct array math
  • True Correct
  • False
NumPy index may also handle subtraction, multiplication, and division in addition to addition
  • True
  • False Correct
Obtaining sample datasets for experimentation is frequently one of the issues in machine learning
  • True Correct
  • False
One of the problems in machine learning is frequently obtaining sample datasets for experimentation
  • True Correct
  • False
This course is taught by the mentor:
Professor Josephine Casin

Josephine Casin

Doctor in Information Technology.

All courses