es
Feedback
Data science/ML/AI

Data science/ML/AI

Ir al canal en Telegram

Data science and machine learning hub Python, SQL, stats, ML, deep learning, projects, PDFs, roadmaps and AI resources. For beginners, data scientists and ML engineers 👉 https://rebrand.ly/bigdatachannels DMCA: @disclosure_bds Contact: @mldatascientist

Mostrar más

📈 Análisis del canal de Telegram Data science/ML/AI

El canal Data science/ML/AI (@datascience_bds) en el segmento lingüístico de Inglés es un actor destacado. Actualmente la comunidad reúne a 13 690 suscriptores, ocupando la posición 9 384 en la categoría Tecnologías y Aplicaciones y el puesto 31 551 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 13 690 suscriptores.

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

  • Estado de verificación: No verificado
  • Tasa de interacción (ER): El promedio de interacción de la audiencia es 8.13%. Durante las primeras 24 horas tras publicar, el contenido suele obtener 2.20% de reacciones respecto al total de suscriptores.
  • Alcance de las publicaciones: Cada publicación recibe en promedio 1 112 visualizaciones. En el primer día suele acumular 301 visualizaciones.
  • Reacciones e interacción: La audiencia responde de forma activa: el promedio de reacciones por publicación es 5.
  • Intereses temáticos: El contenido se centra en temas clave como panda, learning, row, api, ethic.

📝 Descripción y política de contenido

El autor describe el recurso como un espacio para expresar opiniones subjetivas:
Data science and machine learning hub Python, SQL, stats, ML, deep learning, projects, PDFs, roadmaps and AI resources. For beginners, data scientists and ML engineers 👉 https://rebrand.ly/bigdatachannels DMCA: @disclosure_bds Contact: @mldatasci...

Gracias a la alta frecuencia de actualizaciones (últimos datos recibidos el 12 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 Tecnologías y Aplicaciones.

13 690
Suscriptores
+1124 horas
+227 días
+15030 días
Archivo de publicaciones
photo content

Important Methods in Pandas
Important Methods in Pandas

The Hundred-Page Machine Learning Book by Andriy Burkov 📄 152 pages 🔗 Book link #machinelearning #ml ➖➖➖➖➖➖➖➖➖➖➖➖➖ Join @pr
The Hundred-Page Machine Learning Book by Andriy Burkov 📄 152 pages 🔗 Book link #machinelearning #ml ➖➖➖➖➖➖➖➖➖➖➖➖➖ Join @programming_books_bds for more

A LITTLE GUIDE TO HANDLING MISSING DATA Having any Feature missing more than 5-10% of its values? you should consider it to be missing data or feature with high absence rate👀 How can you handle these missing values, ensuring you dont loose important part of your data🤷‍♀️ Not a problem😌. Here are important facts you must know😉 ✍️Instances with missing values for all features should be eliminated ✍️Features with high absence rate should either be eliminated or filled with values ✍️Missing values can be replaced using Mean Imputation or Regression Imputation ✍️ Be careful with mean imputation for it may introduce bias as it evens out all instances ✍️Regression Imputation might overfit your model ✍️Mean and Regression Imputation can't be applied to Text features with missing values ✍️Text Features with missing values can be eliminated if not needed in data ✍️Important Text Features with Missing values can be replaced with a new class or category labelled as uncategorized

labmlai/annotated_deep_learning_paper_implementatios This is a collection of simple PyTorch implementations of neural networks and related algorithms. These implementations are documented with explanations Creator: labml.ai Stars ⭐️: 7.8k Forked By: 703 GithubRepo: https://github.com/labmlai/annotated_deep_learning_paper_implementations ➖➖➖➖➖➖➖➖➖➖➖➖➖➖ Join @github_repositories_bds for more cool repositories. *This channel belongs to @bigdataspecialist group

Data_Science_Cheatsheet.pdf1.69 MB

Data Preprocessing: Understanding and Detecting Outliers Here's a guide to understanding, detecting and handling outliers👀.
Data Preprocessing: Understanding and Detecting Outliers Here's a guide to understanding, detecting and handling outliers👀. I hope you gain the confidence you need to handle them😁 Outlier Detection and Analysis Methods Link: Click Me 😌 Detecting and Treating Outliers | Treating the odd one out! Link: Click Me 😌 Python Treatment for Outliers in Data Science Link: Click Me 😌 Why You Shouldn’t Just Delete Outliers Link: Click Me😌 ➖➖➖➖➖➖➖➖➖➖➖➖➖➖ Join @datascience_bds for more cool data science materials. *This channel belongs to @bigdataspecialist group

How to choose chart for data visualization?
How to choose chart for data visualization?

UDEMY FREE DATA MANIPULATION AND DEEP LEARNING COURSES 1) Data Manipulation in Python: Master Python, Numpy & Pandas Rating ⭐️: 4.3 out of 5 Students 👨‍🏫: 80,451 Created by: Meta Brains 🔗 Course link 2) Python for Deep Learning: Build Neural Networks in Python Rating ⭐️: 4.2 out of 5 Students 👨‍🏫: 44,128 Created by: Meta Brains 🔗 Course link Note: Free coupon is inserted in URL. Courses are FREE FOR 3 DAYS #python #datanalysis #datascience #deeplearing #numpy #pandas ➖➖➖➖➖➖➖➖➖➖➖➖➖➖ Join @datascience_bds for more cool data science materials. *This channel belongs to @bigdataspecialist group

Let's talk about some simple stat terms - mean, median and mode Mean, median, and mode are three kinds of "averages". There are many "averages" in statistics, but these are, I think, the three most common, and are certainly the three you are most likely to encounter in your pre-statistics courses, if the topic comes up at all. The "mean" is the "average" you're used to, where you add up all the numbers and then divide by the number of numbers. The "median" is the "middle" value in the list of numbers. To find the median, your numbers have to be listed in numerical order from smallest to largest, so you may have to rewrite your list before you can find the median. The "mode" is the value that occurs most often. If no number in the list is repeated, then there is no mode for the list. Task: Find the mean, median, mode, and range for the following list of values: 13, 18, 13, 14, 13, 16, 14, 21, 13 Solution: mean: 15 median: 14 mode: 13 Explanation: The mean is the usual average, so I'll add and then divide: (13 + 18 + 13 + 14 + 13 + 16 + 14 + 21 + 13) ÷ 9 = 15 The median is the middle value, so first I'll have to rewrite the list in numerical order: 13, 13, 13, 13, 14, 14, 16, 18, 21 There are nine numbers in the list, so the middle one will be the (9 + 1) ÷ 2 = 10 ÷ 2 = 5th number: 14 The mode is the number that is repeated more often than any other, so 13 is the mode.

Machine learning for dummies IBMs limited edition Judith Hurwitz Daniel Kirsch https://www.ibm.com/downloads/cas/GB8ZMQZ3
Machine learning for dummies IBMs limited edition Judith Hurwitz Daniel Kirsch https://www.ibm.com/downloads/cas/GB8ZMQZ3

Awesome Public Datasets for Your Projects This contains numerous datasets ranging from : Agriculture Biology Climate+Weather Complex Networks Computer Networks Cyber Security Data Challenges Earth Science Economics Education Energy Entertainment Finance ... There's alot you can lay your hands on here Stars⭐️: 48.8K Fork: 8.7K Repo: https://github.com/awesomedata/awesome-public-datasets ➖➖➖➖➖➖➖➖➖➖➖➖➖➖ Join @datascience_bds for more cool data science materials. *This channel belongs to @bigdataspecialist group

photo content

Facts you need to know about GPUs for Deep Learning Have you heard about GPUs?🤓 What is GPU and why should i care?🤨 Well I
Facts you need to know about GPUs for Deep Learning Have you heard about GPUs?🤓 What is GPU and why should i care?🤨 Well I know you might be wondering what this has to do with your deep learning projects😉 Graphics Processing Units (GPUs) are specialized processing cores that you can use to speed computational processes. It was initially designed to process images and visual data. But now, It is used in reducing the efficiency and power needed to run DL projects, 👌It enables the distribution of training processes and can significantly speed machine learning operations. 👌It is a safer bet for quick deep learning since data science model training is based on simple matrix arithmetic calculations. 👌Training models is a hardware-intensive operation, and a good GPU will ensure that neural network operations operate smoothly. 👌It has a good Video RAM,which frees up CPU for other tasks and providing necessary memory bandwidth for huge datasets.

Structured vs unstructured data It is useful to distinguish between structured and unstructured data. The former is typically
Structured vs unstructured data It is useful to distinguish between structured and unstructured data. The former is typically represented in some well-structured form, often as a table or number of tables, while the latter is just a collection of files. Sometimes we can also talk about semi-structured data, that have some sort of a structure that may vary greatly.

Mining of Massive Datasets by Jure Leskovec, Anand Rajaraman, Jeffrey D. Ullman 📄 603 pages #Data_Mining #Datasets ➖➖➖➖➖➖➖➖➖➖➖➖➖ Join @programming_books_bds for more

K-Means clustering explained
K-Means clustering explained

20 AWESOME SOURCES OF FREE DATA SETS If you are after solid data to do your projects with ease and lessen the stress of doing the data collection yourself, here's a good resource containing amazing sites where you can get your data sets for free😁 https://www.searchenginejournal.com/free-data-sources/302601/#close

THE MACHINE LEARNING DEVELOPMENT WORKFLOW
THE MACHINE LEARNING DEVELOPMENT WORKFLOW

photo content

Data science/ML/AI - Estadísticas y analítica del canal de Telegram @datascience_bds