ML Flashcards
Reinforcement learning is what type of learning?
A combination of unsupervised and supervised learning
Which of the following is true about supervised learning? The outcomes is Expected or it is not expected?
Expected outcome is defined
What type of supervised learning problem is categorized into regression problem?
Predict the cost of a car on the basis of given parameters
Which of the following types of machine learning algorithms forms a significant part of the human learning?
Unsupervised Learning
Clustering algorithms fall under which of the following categories of machine learning models?
Unsupervised Learning
Which of the following is the equation for linear regression?
y = β0 + β1x1
Which of the below-mentioned machine learning algorithms is/are used to predict continuously valued quantities?
2) Linear Regression
Name a type of unsupervised machine learning
k means clustering
K-means differs from other clustering methods
There are a predetermined amount of clusters in K-means
how to import SVC
from sklearn.svm import SVC
Create classifier model ?
# Instantiate SVC() svc = SVC() clf = svc.fit(X_train,y_train)
The process to activate live trading
Initialise function schedule function optional function data fetching order placement
What is a persistent namespace in blueshift
persistent namespace for you to store variables you need to access
What is in schedule_function(
schedule_function( func = <>, date_rule = <>, time_rule = <> )
Difference between linear regression & logistic regression
Both are supervised models however the linear regression is used to solve regression problems whereas the logistic regression is used to solve classification problems.
SVMs
Support vector machines (SVMs) are a set of supervised learning methods used for classification, regression and outliers detection.
KNN
K-Nearest Neighbors (KNN) is one of the simplest algorithms used in Machine Learning for regression and classification problem. KNN algorithms use data and classify new data points based on similarity measures (e.g. distance function). Classification is done by a majority vote to its neighbors.
Which of the following is incorrect about the random forest algorithm?
Random forest is a supervised ensemble technique that can be used to solve a regression or a classification problem. A random forest operates by building multiple decision trees and combines their prediction to get a more accurate and stable overall prediction.
What is the purpose of performing cross-validation?
A statistical analysis on an independent data. It is one of the methods for assessing and choosing the best parameters in a prediction or machine learning task. The process of cross validation includes keeping aside a sample dataset, then training the model on the remaining dataset and finally, using the dataset kept aside to test if the model gives a positive result or not.
What does fully connected mean in neural networks
All neurons are full connected to each hidden layer neuron . P*H = connections in Feed network