ru
Feedback
Data Science & Machine Learning

Data Science & Machine Learning

Открыть в Telegram

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

Больше

📈 Аналитический обзор Telegram-канала Data Science & Machine Learning

Канал Data Science & Machine Learning (@datasciencefun) языкового сегмента Английский является активным участником. Сейчас сообщество объединяет 75 822 подписчиков, занимая 2 109 место в категории Образование и 4 254 место в регионе Индия.

📊 Показатели аудитории и динамика

С момента создания невідомо проект демонстрирует стремительный рост, собрав аудиторию из 75 822 подписчиков.

Согласно последним данным от 20 июня, 2026, канал показывает стабильную активность. За последние 30 дней изменение числа участников составило 833, а за последние 24 часа — 1, при этом общий охват остаётся высоким.

  • Статус верификации: Не верифицирован
  • Уровень вовлечённости (ER): Средний показатель вовлечённости аудитории составляет 3.15%. В первые 24 часа после публикации контент обычно набирает 1.15% реакций от общего числа подписчиков.
  • Охват публикаций: В среднем каждый пост получает 2 391 просмотров. В течение первых суток публикация набирает 875 просмотров.
  • Реакции и взаимодействия: Аудитория активно поддерживает контент: среднее количество реакций на один пост — 3.
  • Тематические интересы: Контент сосредоточен на ключевых темах, таких как learning, accuracy, distribution, panda, dataset.

📝 Описание и контентная политика

Автор описывает ресурс как площадку для выражения субъективного мнения:
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

Благодаря высокой частоте обновлений (последние данные получены 21 июня, 2026) канал поддерживает актуальность и высокий уровень охвата публикаций. Аналитика показывает, что аудитория активно взаимодействует с контентом, что делает его важной точкой влияния в категории Образование.

75 822
Подписчики
+124 часа
+1047 дней
+83330 день
Архив постов
Important metrics to monitor while monitoring machine learning model
Important metrics to monitor while monitoring machine learning model

NumPy Bootcamp for Data Science and ML in Python - 2023 👇👇 https://t.me/udemy_free_courses_with_certi/1537 [Free for limited time only]

Hands on NumPy👍.pdf6.11 KB

regression-analysis-with-python.pdf4.63 MB

🚀Join us this week in the FREE Webinars and explore the fields of tech! You will find the answers to all your questions at o
🚀Join us this week in the FREE Webinars and explore the fields of tech! You will find the answers to all your questions at our webinars. Open the link https://crst.co/BoP11, make your choice and apply now while there are still seats available. See you there! ▶️ November 29 - Tech Jobs for Beginners: Become a Software Tester ▶️ November 30 - Manual QA. First Free Lesson ▶️ November 30 - Tech Salary, No Coding: Become a Sales Engineer ▶️ December 1 - Most In-Demand IT Jobs 2023: Become a Software Tester ▶️ December 5 - Sales Engineering. First Free Lesson ▶️ December 7 - Best Tech Remote Careers 2023: Systems Engineer ▶️ December 10 - QA Automation. First Free Lesson ▶️ December 12 - Systems Engineering. First Free Lesson Special offer for all participants! Black Friday Sale - up to 60% off on all our Programs ️✅ Apply by the link https://crst.co/BoP11 

+1
ML_cheatsheets.pdf7.63 MB

Hands on Seaborn👍.pdf2.54 MB

Deep Learning for Coders with fastai and PyTorch Jeremy Howard, 2020

Join now The Econgram to read fast and clear posts on current economic events: ✅ 1-minute long texts + graphs ✅ Facts & Analy
Join now The Econgram to read fast and clear posts on current economic events: ✅ 1-minute long texts + graphs ✅ Facts & Analysis ✅ Reliable sources #ad

Data Mining and Data Warehousing Parteek Bhatia, 2019

Introduction to machine learning Ethem Alpaydin, 2020

Machine Learning Glossary  |  Google Developers Compilation of key machine-learning and TensorFlow terms, with beginner-friendly definitions. 🤓 https://developers.google.com/machine-learning/glossary/

Jupyter_Notebook_Cheat_Sheet.pdf7.85 KB

+1
Real Time Recommendation System With Collisionless Embedding Table. Paper from Bytedance team!

+1
Reliable Machine Learning Cathy Chen, 2022

Data Science Interview Q&A 1.What are the different types of Pooling? Explain their characteristics. Max pooling: Once we obtain the feature map of the input, we will apply a filter of determined shapes across the feature map to get the maximum value from that portion of the feature map. It is also known as subsampling because from the entire portion of the feature map covered by filter or kernel we are sampling one single maximum value. Average pooling: Computes the average value of the feature map covered by kernel or filter, and takes the floor value of the result. Sum pooling: Computes the sum of all elements in that window. 2. What is a Moving Average Process in Time series? In time-series analysis, moving-average process, is a common approach for modeling univariate time series. The moving-average model specifies that the output variable depends linearly on the current and various past values of a stochastic term. 3. What is the difference between SQL having vs where? The WHERE clause specifies the criteria which individual records must meet to be selected by a query. It can be used without the GROUP by clause. The HAVING clause cannot be used without the GROUP BY clause . The WHERE clause selects rows before grouping. The HAVING clause selects rows after grouping. The WHERE clause cannot contain aggregate functions. The HAVING clause can contain aggregate functions 4. What is Relative cell referencing in excel? In Relative referencing, there is a change when copying a formula from one cell to another cell with respect to the destination. cells’ address Meanwhile, there is no change in Absolute cell referencing when a formula is copied, irrespective of the cell’s destination. This type of referencing is there by default. Relative cell referencing doesn’t require a dollar sign in the formula. ENJOY LEARNING 👍👍

Machine Learning Top questions & Answers.pdf0.98 KB

1. Explain Gradient Descent algorithm. Ans. Gradient descent is an optimization algorithm used to minimize some function by iteratively moving in the direction of steepest descent as defined by the negative of the gradient. In machine learning, we use gradient descent to update the parameters of our model. Parameters refer to coefficients in Linear Regression and weights in neural networks. 2. What is logistic regression used for classification instead of linear regression? Ans. Using linear Regression , all predictions >= 0.5 can be considered as 1 and rest all < 0.5 can be considered as 0. But then the question arises why classification can’t be performed using it? Suppose we are classifying a mail as spam or not spam and our output is y, it can be 0(spam) or 1(not spam). In case of Linear Regression, hθ(x) can be > 1 or < 0. Although our prediction should be in between 0 and 1, the model will predict value out of the range i.e. maybe > 1 or < 0. So, that’s why for a Classification task, Logistic/Sigmoid Regression plays its role. 3. What is the Gini Index? Ans. Gini Index is a score that evaluates how accurate a split is among the classified groups. Gini index evaluates a score in the range between 0 and 1, where 0 is when all observations belong to one class, and 1 is a random distribution of the elements within classes. In this case, we want to have a Gini index score as low as possible. Gini Index is the evaluation metrics we shall use to evaluate our Decision Tree Model. 4. Why is DBSCAN used over K means and other clustering methods? Ans. Partitioning methods (K-means, PAM clustering) and hierarchical clustering work for finding spherical-shaped clusters or convex clusters. In other words, they are suitable only for compact and well-separated clusters. Moreover, they are also severely affected by the presence of noise and outliers in the data. Real life data may contain irregularities, like: Clusters can be of arbitrary shape like non convex clusters Data may contain noise. Given such data, k-means algorithm has difficulties in identifying these clusters with arbitrary shapes. ENJOY LEARNING 👍👍

1. What do you understand by the term silhouette coefficient? The silhouette coefficient is a measure of how well clustered together a data point is with respect to the other points in its cluster. It is a measure of how similar a point is to the points in its own cluster, and how dissimilar it is to the points in other clusters. The silhouette coefficient ranges from -1 to 1, with 1 being the best possible score and -1 being the worst possible score. 2. What is the difference between trend and seasonality in time series? Trends and seasonality are two characteristics of time series metrics that break many models. Trends are continuous increases or decreases in a metric’s value. Seasonality, on the other hand, reflects periodic (cyclical) patterns that occur in a system, usually rising above a baseline and then decreasing again. 3. What is Bag of Words in NLP? Bag of Words is a commonly used model that depends on word frequencies or occurrences to train a classifier. This model creates an occurrence matrix for documents or sentences irrespective of its grammatical structure or word order. 4. What is the difference between bagging and boosting? Bagging is a homogeneous weak learners’ model that learns from each other independently in parallel and combines them for determining the model average. Boosting is also a homogeneous weak learners’ model but works differently from Bagging. In this model, learners learn sequentially and adaptively to improve model predictions of a learning algorithm. ENJOY LEARNING 👍👍

Machine Learning Quick & easy guide for every beginner Sunny Kusawa, 2022