en
Feedback
Data Science & Machine Learning

Data Science & Machine Learning

Open in 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

Show more

πŸ“ˆ Analytical overview of Telegram channel Data Science & Machine Learning

Channel Data Science & Machine Learning (@datasciencefun) in the English language segment is an active participant. Currently, the community unites 75 822 subscribers, ranking 2 109 in the Education category and 4 254 in the India region.

πŸ“Š Audience metrics and dynamics

Since its creation on Π½Π΅Π²Ρ–Π΄ΠΎΠΌΠΎ, the project has demonstrated rapid growth, gathering an audience of 75 822 subscribers.

According to the latest data from 20 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 833 over the last 30 days and by 1 over the last 24 hours, overall reach remains high.

  • Verification status: Not verified
  • Engagement rate (ER): The average audience engagement rate is 3.15%. Within the first 24 hours after publication, content typically collects 1.15% reactions from the total number of subscribers.
  • Post reach: On average, each post receives 2 391 views. Within the first day, a publication typically gains 875 views.
  • Reactions and interaction: The audience actively supports content: the average number of reactions per post is 3.
  • Thematic interests: Content is focused on key topics such as learning, accuracy, distribution, panda, dataset.

πŸ“ Description and content policy

The author describes the resource as a platform for expressing subjective opinions:
β€œ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”

Thanks to the high frequency of updates (latest data received on 21 June, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Education category.

75 822
Subscribers
+124 hours
+1047 days
+83330 days
Posts Archive
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