uk
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 день
Архів дописів
Boost Your Data Science Productivity.pdf9.35 MB

Machine Learning, Image Processing, Network Security and Data Sciences Akedh Doriya, 2023

The Art and Science of Machine Intelligence Walker H. Land Jr., 2020

60 chatgpt prompts for data science

Getting Started with TensorFlow.pdf4.74 MB

useful kubernetes notes.pdf23.80 MB

🎲 Mathematical Statistics 📖 book
🎲 Mathematical Statistics 📖 book

DeepLearning Notes

+3
Computer Vision and Sensor-Based Robots C.A. Rosen, 1979

1. For the given points, how will you calculate the Euclidean distance in Python? plot1 = [1,3] plot2 = [2,5] The Euclidean distance can be calculated as follows: euclidean_distance = sqrt( (plot1[0]-plot2[0])*2 + (plot1[1]-plot2[1])*2 ) 2.Which of the following machine learning algorithms can be used for inputting missing values of both categorical and continuous variables? K-means clustering Linear regression K-NN (k-nearest neighbor) Decision trees The K nearest neighbor algorithm can be used because it can compute the nearest neighbor and if it doesn't have a value, it just computes the nearest neighbor based on all the other features. When you're dealing with K-means clustering or linear regression, you need to do that in your pre-processing, otherwise, they'll crash. Decision trees also have the same problem, although there is some variance. 3.How are confidence tests and hypothesis tests similar? How are they different? Confidence intervals and hypothesis testing are both tools used for to make statistical inferences. The confidence interval suggests a range of values for an unknown parameter and is then associated with a confidence level that the true parameter is within the suggested range of. Confidence intervals are often very important in medical research to provide researchers with a stronger basis for their estimations. A confidence interval can be shown as “10 +/- 0.5” or [9.5, 10.5] to give an example. Hypothesis testing is the basis of any research question and often comes down to trying to prove something did not happen by chance. For example, you could try to prove when rolling a dye, one number was more likely to come up than the rest. 4. What is the difference between observational and experimental data? Observational data comes from observational studies which are when you observe certain variables and try to determine if there is any correlation. Experimental data comes from experimental studies which are when you control certain variables and hold them constant to determine if there is any causality. An example of experimental design is the following: split a group up into two. The control group lives their lives normally. The test group is told to drink a glass of wine every night for 30 days. Then research can be conducted to see how wine affects sleep. ENJOY LEARNING 👍👍

Modern Deep Learning for Tabular Data Andre Ye, 2023

Fundamentals of Deep Learning Nithin Buduma, 2022

Learn NumPy Basics in Weekend Hisham El Amir, 2021

BTP CRYPTO PUMPS & SIGNALS We offer short crypto pumps & signals 28-30 times per month. #ad
BTP CRYPTO PUMPS & SIGNALS We offer short crypto pumps & signals 28-30 times per month. #ad

Practical Data Science with Jupyter Prateek Gupta, 2021

Data Science Interview Questions and Answers 👨‍💻.pdf13.81 MB

1. Compare SVM and Logistic Regression in handling outliers For Logistic Regression, outliers can have an unusually large effect on the estimate of logistic regression coefficients. It will find a linear boundary if it exists to accommodate the outliers. To solve the problem of outliers, sometimes a sigmoid function is used in logistic regression. For SVM, outliers can make the decision boundary deviate severely from the optimal hyperplane. One way for SVM to get around the problem is to introduce slack variables. There is a penalty involved with using slack variables, and how SVM handles outliers depends on how this penalty is imposed. 2. Can you explain how to implement a simple kNN algorithm in code? The kNN algorithm can be used for a variety of tasks (classification & regression). To implement it, you will need to first calculate the distance between the new data point and all of the training data points. Once you have the distances, you will then need to find the k nearest neighbors and take the majority vote of those neighbors to determine the class of the new data point. 3. What type of node is considered Pure in the decision tree? If the Gini Index of the data is 0 then it means that all the elements belong to a specific class. When this happens it is said to be pure. When all of the data belongs to a single class (pure) then the leaf node is reached in the tree. The leaf node represents the class label in the tree (which means that it gives the final output). 4. What is Space and Time Complexity of the Hierarchical Clustering Algorithm? Space complexity: Hierarchical Clustering Technique requires very high space when the number of observations in our dataset is more since we need to store the similarity matrix in the RAM. So, the space complexity is the order of the square of n. Space complexity = O(n²) where n is the number of observations. Time complexity: Since we have to perform n iterations and in each iteration, we need to update the proximity matrix and also restore that matrix, therefore the time complexity is also very high. So, the time complexity is the order of the cube of n. Time complexity = O(n³) where n is the number of observations. ENJOY LEARNING 👍👍

Commonly used Python libraries are: 👉🏻NumPy: This library is used for scientific computing and working with arrays of data. It provides functions for working with arrays of data, including mathematical operations, linear algebra, and random number generation. 👉🏻Pandas: This library is used for data manipulation and analysis. It provides tools for importing, cleaning, and transforming data, as well as tools for working with time series data and performing statistical analysis. 👉🏻Matplotlib: This library is used for data visualization. It provides functions for creating a wide range of plots, including scatter plots, line plots, bar plots, and histograms. 👉🏻Scikit-learn: This library is used for machine learning. It provides a range of algorithms for classification, regression, clustering, and dimensionality reduction, as well as tools for model evaluation and selection. 👉🏻TensorFlow: This library is used for deep learning. It provides a range of tools and libraries for building and training neural networks, including support for distributed training and hardware acceleration.

Deep Learning Applications 4 M. Arif Wani, 2023