es
Feedback
Data Science & Machine Learning

Data Science & Machine Learning

Ir al canal en 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

Mostrar más

📈 Análisis del canal de Telegram Data Science & Machine Learning

El canal Data Science & Machine Learning (@datasciencefun) en el segmento lingüístico de Inglés es un actor destacado. Actualmente la comunidad reúne a 75 822 suscriptores, ocupando la posición 2 109 en la categoría Educación y el puesto 4 254 en la región India.

📊 Métricas de audiencia y dinámica

Desde su creación el невідомо, el proyecto ha mostrado un crecimiento acelerado, reuniendo a 75 822 suscriptores.

Según los últimos datos del 20 junio, 2026, el canal mantiene una actividad estable. En los últimos 30 días la variación de miembros fue de 833, y en las últimas 24 horas de 1, conservando un alto alcance.

  • Estado de verificación: No verificado
  • Tasa de interacción (ER): El promedio de interacción de la audiencia es 3.15%. Durante las primeras 24 horas tras publicar, el contenido suele obtener 1.15% de reacciones respecto al total de suscriptores.
  • Alcance de las publicaciones: Cada publicación recibe en promedio 2 391 visualizaciones. En el primer día suele acumular 875 visualizaciones.
  • Reacciones e interacción: La audiencia responde de forma activa: el promedio de reacciones por publicación es 3.
  • Intereses temáticos: El contenido se centra en temas clave como learning, accuracy, distribution, panda, dataset.

📝 Descripción y política de contenido

El autor describe el recurso como un espacio para expresar opiniones subjetivas:
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

Gracias a la alta frecuencia de actualizaciones (últimos datos recibidos el 21 junio, 2026), el canal mantiene la vigencia y un amplio alcance. La analítica demuestra que la audiencia interactúa activamente con el contenido, lo que lo convierte en un punto de referencia dentro de la categoría Educación.

75 822
Suscriptores
+124 horas
+1047 días
+83330 días
Archivo de publicaciones
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