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 860 подписчиков, занимая 2 107 место в категории Образование и 4 219 место в регионе Индия.

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

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

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

  • Статус верификации: Не верифицирован
  • Уровень вовлечённости (ER): Средний показатель вовлечённости аудитории составляет 3.00%. В первые 24 часа после публикации контент обычно набирает 1.05% реакций от общего числа подписчиков.
  • Охват публикаций: В среднем каждый пост получает 2 278 просмотров. В течение первых суток публикация набирает 794 просмотров.
  • Реакции и взаимодействия: Аудитория активно поддерживает контент: среднее количество реакций на один пост — 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

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

75 860
Подписчики
-224 часа
+637 дней
+72830 день
Архив постов
Machine Learning for Everyone in some words https://vas3k.com/blog/machine_learning/

Everything you need to know about TensorFlow 2.0 Keras-APIs, SavedModels, TensorBoard, Keras-Tuner and more. https://hackernoon.com/everything-you-need-to-know-about-tensorflow-2-0-b0856960c074?

Today is the last day to get exclusive 75% discount by using coupon code JULY75

What happens to our linear regression model if we have three columns in our data: x, y, z  —  and z is a sum of x and y? We would not be able to perform the regression. Because z is linearly dependent on x and y so when performing the regression would be a singular (not invertible) matrix.

What’s the difference between random forest and gradient boosting? Random Forests builds each tree independently while Gradient Boosting builds one tree at a time. Random Forests combine results at the end of the process (by averaging or "majority rules") while Gradient Boosting combines results along the way.

Free Live session on Deep Learning technology used by Amazon Go 👇👇 https://bit.ly/3e1BCLs Only for Indian Users
Free Live session on Deep Learning technology used by Amazon Go 👇👇 https://bit.ly/3e1BCLs Only for Indian Users

Which algorithm builds one tree at a time?
Anonymous voting

What do we do with categorical variables? Categorical variables must be encoded before they can be used as features to train a machine learning model. There are various encoding techniques, including: One-hot encoding Label encoding Ordinal encoding Target encoding

What is the area under the PR curve? Is it a useful metric? The Precision-Recall AUC is just like the ROC AUC, in that it summarizes the curve with a range of threshold values as a single score. A high area under the curve represents both high recall and high precision, where high precision relates to a low false positive rate, and high recall relates to a low false negative rate.

What is the PR (precision-recall) curve? A precision-recall curve (or PR Curve) is a plot of the precision (y-axis) and the recall (x-axis) for different probability thresholds. Precision-recall curves (PR curves) are recommended for highly skewed domains where ROC curves may provide an excessively optimistic view of the performance.

What is AUC (AU ROC)? When to use it? AUC stands for Area Under the ROC Curve. ROC is a probability curve and AUC represents degree or measure of separability. It's used when we need to value how much model is capable of distinguishing between classes. The value is between 0 and 1, the higher the better.

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.

Top 7 Nanodegree Certification Programs to Master Data Science and Machine Learning👇👇 1. Programming for Data Science with Python bit.ly/324JSUh 2. DATA VISUALIZATION bit.ly/3mzCSZ7 3. Become a Machine Learning Engineer bit.ly/3mxRMiC 4. Learn Python from intermediate to Advanved level https://bit.ly/3ju08s2 5. Intro to Machine Learning with TensorFlow bit.ly/2PR0vjY 6. Intermediate Python https://bit.ly/3z7YPnZ 7. Become a Data scientists https://bit.ly/2TRo9P7 Get special 75% discount on any of the above courses by using the coupon code JULY75 Enroll as soon as possible because Udacity is giving huge discount this time and coupon code is valid for limited time only.

Data scientists often tune bias values to 
Anonymous voting

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.

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.

What are the main assumptions of linear regression? There are several assumptions of linear regression. If any of them is violated, model predictions and interpretation may be worthless or misleading. 1) Linear relationship between features and target variable. 2) Additivity means that the effect of changes in one of the features on the target variable does not depend on values of other features. For example, a model for predicting revenue of a company have of two features - the number of items a sold and the number of items b sold. When company sells more items a the revenue increases and this is independent of the number of items b sold. But, if customers who buy a stop buying b, the additivity assumption is violated. 3) Features are not correlated (no collinearity) since it can be difficult to separate out the individual effects of collinear features on the target variable. 4) Errors are independently and identically normally distributed (yi = B0 + B1*x1i + ... + errori): i) No correlation between errors (consecutive errors in the case of time series data). ii) Constant variance of errors - homoscedasticity. For example, in case of time series, seasonal patterns can increase errors in seasons with higher activity. iii) Errors are normaly distributed, otherwise some features will have more influence on the target variable than to others. If the error distribution is significantly non-normal, confidence intervals may be too wide or too narrow.

What’s the difference between random forest and gradient boosting? Random Forests builds each tree independently while Gradient Boosting builds one tree at a time. Random Forests combine results at the end of the process (by averaging or "majority rules") while Gradient Boosting combines results along the way. Complete Ethical Hacking course for Free https://ssup.co/youtube/com/iobx Complete Cyber Security Tutorial for beginners https://ssup.co/youtu/be/QQcC Complete IT security course for Free https://ssup.co/youtu/be/FofL

COMPLETE DATA SCIENCE COURSE IN ONE VIDEO https://ssup.co/youtu/be/AM57 Complete Machine Learning Course for Beginners https://ssup.co/youtu/be/JqNs Complete Python Tutorial for Beginners in Hindi https://ssup.co/youtu/be/jbkn https://ssup.co/youtu/be/gEpo Complete Python course for Beginners in English https://ssup.co/youtu/be/z5aX Complete Ethical Hacking course for Free https://ssup.co/youtube/com/iobx Complete Cyber Security Tutorial for beginners https://ssup.co/youtu/be/QQcC Complete IT security course for Free https://ssup.co/youtu/be/FofL