ch
Feedback
Data science/ML/AI

Data science/ML/AI

前往频道在 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

显示更多

📈 Telegram 频道 Data science/ML/AI 的分析概览

频道 Data science/ML/AI (@datascience_bds) 英语 语言赛道中的 是活跃参与者。目前社区聚集了 13 684 名订阅者,在 技术与应用 类别中位列第 9 384,并在 印度 地区排名第 31 551

📊 受众指标与增长动态

невідомо 创建以来,项目保持高速增长,吸引了 13 684 名订阅者。

根据 11 六月, 2026 的最新数据,频道保持稳定运转。过去 30 天订阅人数变化为 150,过去 24 小时变化为 11,整体触达仍然可观。

  • 认证状态: 未认证
  • 互动率 (ER): 平均受众互动率为 8.13%。内容发布后 24 小时内通常能获得 2.20% 的反应,占订阅者总量。
  • 帖子覆盖: 每篇帖子平均可获得 1 112 次浏览,首日通常累积 301 次浏览。
  • 互动与反馈: 受众积极参与,单帖平均反应数为 5
  • 主题关注点: 内容集中在 panda, learning, row, api, ethic 等核心主题上。

📝 描述与内容策略

作者将该频道定位为表达主观观点的平台:
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...

凭借高频更新(最新数据采集于 12 六月, 2026),频道始终保持新鲜度与高覆盖。分析显示受众积极互动,使其成为 技术与应用 类别中的关键影响点。

13 684
订阅者
+1124 小时
+227
+15030
帖子存档
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