uz
Feedback
Data Science & Machine Learning

Data Science & Machine Learning

Kanalga Telegram’da o‘tish

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

Ko'proq ko'rsatish

📈 Telegram kanali Data Science & Machine Learning analitikasi

Data Science & Machine Learning (@datasciencefun) Ingliz til segmentidagi kanali faol ishtirokchi. Hozirda hamjamiyat 75 860 obunachidan iborat bo'lib, Taʼlim toifasida 2 107-o'rinni va Hindiston mintaqasida 4 219-o'rinni egallagan.

📊 Auditoriya ko‘rsatkichlari va dinamika

невідомо sanasidan buyon loyiha tez o‘sib, 75 860 obunachiga ega bo‘ldi.

22 Iyun, 2026 dagi oxirgi ma’lumotlarga ko‘ra kanal barqaror faollikka ega. Oxirgi 30 kunda obunachilar soni 728 ga, so‘nggi 24 soatda esa -2 ga o‘zgardi va umumiy qamrov yuqori darajada qolmoqda.

  • Tasdiqlash holati: Tasdiqlanmagan
  • Jalb etish (ER): Auditoriya o‘rtacha 3.00% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 1.05% ini tashkil etuvchi reaksiyalarni to‘playdi.
  • Post qamrovi: Har bir post o‘rtacha 2 278 marta ko‘riladi; birinchi sutkada odatda 794 ta ko‘rish yig‘iladi.
  • Reaksiyalar va o‘zaro ta’sir: Auditoriya faol: har bir postga o‘rtacha 3 ta reaksiya keladi.
  • Tematik yo‘nalishlar: Kontent learning, accuracy, distribution, panda, dataset kabi asosiy mavzularga jamlangan.

📝 Tavsif va kontent siyosati

Muallif resursni shaxsiy fikrni ifoda etish maydoni sifatida ta’riflaydi:
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

Yuqori yangilanish chastotasi (oxirgi ma’lumot 23 Iyun, 2026 da olingan) sababli kanal doimo dolzarb va katta qamrovli bo‘lib qoladi. Analitika auditoriya kontent bilan faol hamkorlik qilishini, uni Taʼlim toifasidagi muhim ta’sir nuqtasiga aylantirishini ko‘rsatadi.

75 860
Obunachilar
-224 soatlar
+637 kunlar
+72830 kunlar
Postlar arxiv
Learn how Amazon Optimise Delivery Routes using Genetic Algorithm 👇👇 https://bit.ly/3izxvZJ Free Live Session with Certificate

Some interview questions related to Data science 1- what is difference between structured data and unstructured data. 2- what is multicollinearity.and how to remove them 3- which algorithms you use to find the most correlated features in the datasets. 4- define entropy 5- what is the workflow of principal component analysis 6- what are the applications of principal component analysis not with respect to dimensionality reduction 7- what is the Convolutional neural network. Explain me its working

🤓 Technical Python concepts tested in the data science job interviews are: - Data types. - Built-in data structures. - User-defined data structures. - Built-in functions. - Loops and conditionals. - External libraries (Pandas). Source Article: https://www.kdnuggets.com/2021/07/top-python-data-science-interview-questions.html

What are the benefits of a single decision tree compared to more complex models? easy to implement fast training fast inference good explainability

What are the decision trees? This is a type of supervised learning algorithm that is mostly used for classification problems. Surprisingly, it works for both categorical and continuous dependent variables. In this algorithm, we split the population into two or more homogeneous sets. This is done based on most significant attributes/ independent variables to make as distinct groups as possible. A decision tree is a flowchart-like tree structure, where each internal node (non-leaf node) denotes a test on an attribute, each branch represents an outcome of the test, and each leaf node (or terminal node) holds a value for the target variable. Various techniques : like Gini, Information Gain, Chi-square, entropy.

What is feature selection? Why do we need it? Feature Selection is a method used to select the relevant features for the model to train on. We need feature selection to remove the irrelevant features which leads the model to under-perform.

The session is going to go LIVE in 5 mins So join in now ! Link - https://youtu.be/a8lGmSLcfWU

Do you want to Learn how to build a winning resume ? Learn the basics from an expert in our mentor conference 2021 Resume ses
Do you want to Learn how to build a winning resume ? Learn the basics from an expert in our mentor conference 2021 Resume session today! Link to Join - https://youtu.be/a8lGmSLcfWU If you are interested in getting a certificate and resources then kindly register at www.foreignadmits.com/mentorconference2021 Note - Certificates will only be given to registered LIVE attendees See you at the mentor conference Join our community to get updates about other sessions - https://t.me/foreignadmits_community

Quiz Explaination Supervised Learning: All data is labeled and the algorithms learn to predict the output from the input data Unsupervised Learning: All data is unlabeled and the algorithms learn to inherent structure from the input data. Semi-supervised Learning: Some data is labeled but most of it is unlabeled and a mixture of supervised and unsupervised techniques can be used to solve problem. Unsupervised learning problems can be further grouped into clustering and association problems. Clustering: A clustering problem is where you want to discover the inherent groupings in the data, such as grouping customers by purchasing behavior. Association: An association rule learning problem is where you want to discover rules that describe large portions of your data, such as people that buy A also tend to buy B.

Which of the following is not a type of unsupervised Learning?
Anonymous voting

In which technique, data is unlabeled and the algorithms learn to inherent structure from the input data?
Anonymous voting

Master_Machine_Learning_Algorithms_Discover_how_they_work_by_Jason.pdf1.09 MB

machine-learning-interview-questions.pdf2.11 KB

What are the main parameters of the random forest model? max_depth: Longest Path between root node and the leaf min_sample_split: The minimum number of observations needed to split a given node max_leaf_nodes: Conditions the splitting of the tree and hence, limits the growth of the trees min_samples_leaf: minimum number of samples in the leaf node n_estimators: Number of trees max_sample: Fraction of original dataset given to any individual tree in the given model max_features: Limits the maximum number of features provided to trees in random forest model

🎓 Introduction to Deep Learning (by MIT) 🎓 This is one of the top high-quality courses to learn the foundational knowledge of deep learning. All lectures have been uploaded. 100% Free! https://youtube.com/playlist?list=PLtBw6njQRU-rwp5__7C0oIVt26ZgjG9NI

Pandas in 8 Pages.pdf8.28 KB

What are the main parameters in the gradient boosting model? There are many parameters, but below are a few key defaults. learning_rate=0.1 (shrinkage). n_estimators=100 (number of trees). max_depth=3. min_samples_split=2. min_samples_leaf=1. subsample=1.0.

Which of the following Python Library can be exclusively used to plot graphs?
Anonymous voting

How does L2 regularization look like in a linear model? L2 regularization adds a penalty term to our cost function which is equal to the sum of squares of models coefficients multiplied by a lambda hyperparameter. This technique makes sure that the coefficients are close to zero and is widely used in cases when we have a lot of features that might correlate with each other.

Which regularization techniques do you know? There are mainly two types of regularization, L1 Regularization (Lasso regularization) - Adds the sum of absolute values of the coefficients to the cost function. L2 Regularization (Ridge regularization) - Adds the sum of squares of coefficients to the cost function Here, Lambda determines the amount of regularization.