Data Science & Machine Learning – Telegram
Data Science & Machine Learning
72.1K subscribers
768 photos
1 video
68 files
677 links
Join this channel to learn data science, artificial intelligence and machine learning with funny quizzes, interesting projects and amazing resources for free

For collaborations: @love_data
Download Telegram
Which Scipy package can be used for standard continuous and discrete probability distributions?
Anonymous Quiz
15%
Scipy.integrate
68%
Scipy.stats
8%
Scipy.signal
10%
Scipy.optimize
Which Scipy package can be used to solve differential equations?
Anonymous Quiz
50%
Scipy.integrate
26%
Scipy.linalg
12%
Scipy.sparse
13%
Scipy.stats
Which of the following is incorrect code to replace na values with 0 in data?
Anonymous Quiz
36%
data.replace(0,na.nan)
31%
data.replace(na.nan,0)
33%
data.fillna(0)
Data Science & Machine Learning
Which of the following is incorrect code to replace na values with 0 in data?
Just a correction here
"np.nan" instead of "na.nan"
Hope you all are aware that mostly we
import numpy as np
Which type of data is separated into bins for analysis
Anonymous Quiz
56%
Continuous
44%
Discrete
1
Which of the following is correct code to generate 20 normally distributed random numbers?
import numpy as np
Anonymous Quiz
28%
np.random(20)
39%
np.random.rand(20)
33%
np.random.randn(20)
Which function is used to randomly reorder a Series or rows in Dataframe?
Anonymous Quiz
24%
np.random
39%
np.random.rand
23%
np.random.permutation
13%
np.random.combination
👍21
You should definitely check the documentation of numpy and scikit learn if you are facing difficulty in answering above questions
https://numpy.org/doc/stable/
https://scikit-learn.org/

Share the channel link with your friends to help them too in learning data science and machine learning
👇👇
http://t.me/datasciencefun
1
Which website is best to learn Programming and Data science according to you?
Anonymous Poll
27%
Udemy
5%
Udacity
3%
Edx
18%
Coursera
8%
Datacamp
1%
Eduonix
7%
Freecodecamp
13%
Kaggle
2%
Dataquest
17%
Can't decide
👍2
Which area of machine learning is concerned with how intelligent agents ought to take actions in an environment in order to maximize the notion of cumulative reward?
Anonymous Quiz
25%
Supervised Learning
67%
Reinforcement Learning
8%
Unsupervised Learning
What is gradient boosting trees?

Gradient boosting is a machine learning technique for regression and classification problems, which produces a prediction model in the form of an ensemble of weak prediction models, typically decision trees.
1
Which of the following is a supervised Learning technique?
Anonymous Quiz
18%
Clustering
75%
Classification
7%
Association
Which training set is provided for supervised learning?
Anonymous Quiz
19%
Only inputs
5%
Only outputs
76%
inputs and correct outputs
Which type of problems can be solved with Unsupervised learning?
Anonymous Quiz
15%
Classification problems
76%
Customer segmentation (Clustering)
9%
Linear Regression
Supervised learning requires a training set to teach models to yield the desired output. Training dataset includes inputs and correct outputs, which allow the desired model to learn over time. The algorithm also measures its accuracy through the loss function, adjusting until the error has been sufficiently minimized.
👍5
What is the ROC curve? When to use it?

ROC stands for Receiver Operating Characteristics. The diagrammatic representation that shows the contrast between true positive rate vs false positive rate.

It is used when we need to predict the probability of the binary outcome.
1
What’s the interpretation of the bias term in linear models?

Bias is simply, a difference between predicted value and actual/true value. It can be interpreted as the distance from the average prediction and true value i.e. true value minus mean(predictions). But dont get confused between accuracy and bias.
1
What kind of problems neural nets can solve?

Neural nets are good at solving non-linear problems. Some good examples are problems that are relatively easy for humans (because of experience, intuition, understanding, etc), but difficult for traditional regression models: speech recognition, handwriting recognition, image identification, etc.