en
Feedback
Data science/ML/AI

Data science/ML/AI

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

Show more

📈 Analytical overview of Telegram channel Data science/ML/AI

Channel Data science/ML/AI (@datascience_bds) in the English language segment is an active participant. Currently, the community unites 13 663 subscribers, ranking 9 387 in the Technologies & Applications category and 31 771 in the India region.

📊 Audience metrics and dynamics

Since its creation on невідомо, the project has demonstrated rapid growth, gathering an audience of 13 663 subscribers.

According to the latest data from 05 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 171 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 7.95%. Within the first 24 hours after publication, content typically collects 2.46% reactions from the total number of subscribers.
  • Post reach: On average, each post receives 1 086 views. Within the first day, a publication typically gains 336 views.
  • Reactions and interaction: The audience actively supports content: the average number of reactions per post is 5.
  • Thematic interests: Content is focused on key topics such as panda, learning, row, api, ethic.

📝 Description and content policy

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

Thanks to the high frequency of updates (latest data received on 07 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 Technologies & Applications category.

13 663
Subscribers
+124 hours
+597 days
+17130 days
Posts Archive
Big Data Glossary
Big Data Glossary

SQL Q&A For Query Writing.pdf3.98 KB

⚡️ Backpropagation Backpropagation is the algorithm that tells a neural network how to adjust its weights after making a mistake. It pushes the error backward through the network. Core idea: Measure error → send blame backward → update weights. It's purpose is to minimize prediction error efficiently. Where it is used: 🧠 Training neural networks 👁 Computer vision 🗣 NLP models 🔊 Speech systems 🤖 Deep learning Simple flow: 1️⃣ Forward pass makes prediction 2️⃣ Loss measures error 3️⃣ Backward pass computes gradients 4️⃣ Optimizer updates weights Things to know: 📉 Needs differentiable functions ⚡️ Uses chain rule from calculus 🧮 Works with gradient descent 🚨 Can suffer from vanishing gradients ✅Backprop = error feedback system for neural networks.

Which ML algorithm is commonly used for dimensionality reduction?
Anonymous voting

LangGraph Cheat Sheet.pdf0.72 KB

⚡️ ETL ETL stands for Extract, Transform, Load. It is the pipeline that moves and cleans data for analytics. Core idea: Collect → clean → store. Where it is used: 🏢 Data warehouses 📊 Business intelligence 🧠 ML feature pipelines ☁️ Cloud data platforms 📈 Reporting systems It's purpose is to make data reliable and analysis ready. Simple flow: 1️⃣ Extract from sources 2️⃣ Transform into clean format 3️⃣ Load into destination system Things to know: 🔁 Modern systems often use ELT ⏱️ Can be batch or streaming 🧹 Data quality checks are critical 📦 Scalability matters at scale ✅ETL = factory assembly line for data.

Repost from Python Learning
Python Q&A For Data Analyst and Data Science.pdf4.42 KB

Excel vs Power BI
Excel vs Power BI

Data Analyst Interview Preparation Guide.pdf3.38 KB

⚡️ A/B Testing A/B testing is a controlled experiment where you compare two versions to see which performs better. At its core: change one thing → measure the impact. Core idea: Same users, different variants, measurable outcome. Where it is used: 📊 Product feature launches 🛒 Conversion optimization 📧 Email marketing 🌐 UI/UX decisions 📱 Growth experiments It's purpose is to make decisions based on real user behavior instead of opinions. Simple flow: 1️⃣ Split users randomly 2️⃣ Show version A and B 3️⃣ Measure key metric 4️⃣ Pick the winner Things to know: 🎯 Needs enough sample size ⚖️ Randomization is critical ⏳ Stop only after statistical significance 🚫 Testing too many changes at once breaks results ✅ A/B testing = scientific method for product decisions.

In pandas, which operation combines datasets by matching columns similar to SQL joins?
Anonymous voting

K Nearest Neighbors (KNN) Cheat Sheet.pdf1.33 KB

📊 Data Science Essentials: What Every Data Enthusiast Should Know! 1️⃣ Understand Your Data Always start with data exploration. Check for missing values, outliers, and overall distribution to avoid misleading insights. 2️⃣ Data Cleaning Matters Noisy data leads to inaccurate predictions. Standardize formats, remove duplicates, and handle missing data effectively. 3️⃣ Use Descriptive & Inferential Statistics Mean, median, mode, variance, standard deviation, correlation, hypothesis testing these form the backbone of data interpretation. 4️⃣ Master Data Visualization Bar charts, histograms, scatter plots, and heatmaps make insights more accessible and actionable. 5️⃣ Learn SQL for Efficient Data Extraction Write optimized queries (SELECT, JOIN, GROUP BY, WHERE) to retrieve relevant data from databases. 6️⃣ Build Strong Programming Skills Python (Pandas, NumPy, Scikit-learn) and R are essential for data manipulation and analysis. 7️⃣ Understand Machine Learning Basics Know key algorithms like; linear regression, decision trees, random forests, and clustering to develop predictive models. 8️⃣ Learn Dashboarding & Storytelling Power BI and Tableau help convert raw data into actionable insights for stakeholders.

AI agents made simple with Langchain.pdf2.41 MB

🧠 Label Smoothing Label smoothing exists to fix one quiet problem: Neural networks become overconfident. In standard classification, targets are one-hot: correct class → 1 others → 0 This tells the model:
Be absolutely certain.
🔍 What Label Smoothing Does Instead of hard targets, we soften them. Example (3 classes, smoothing = 0.1): correct class → 0.9 others → 0.05 The model is no longer pushed toward extreme certainty. 🎯 Why It Works One-hot targets force logits to grow very large to minimize cross-entropy. This leads to: 📈 Overconfidence ⚠️ Poor calibration 🧠 Brittle generalization Label smoothing acts as regularization in probability space. It tells the model:
Be confident, but not blindly certain.
🏗 Where It’s Used 🤖 Image classification (ResNets, EfficientNet) 📝 Transformers and language models 🏆 Large-scale training pipelines ⚠️ Key Things to Know 🚫 Too much smoothing hurts accuracy ⚖️ Typical values: 0.05 to 0.1 🧪 Helps generalization more than training loss 📉 Often improves calibration ✅ In short: Label smoothing prevents the model from collapsing into extreme certainty. It trades a tiny bit of training confidence for better real-world behavior.

Repost from Talks with ChatGPT
Prompt Engineering by Google.pdf6.37 MB

+2
Data Scientist Roadmap 2026.pdf3.84 MB

⚡️Data Lake A data lake is a centralized storage system that keeps raw data in its original format. Think of it like a giant digital reservoir where you dump data first and decide what to do with it later. The core idea is: Store now. Structure when needed. Where it is used: ➖Big data platforms ➖Machine learning pipelines ➖Analytics systems ➖Event and log storage ➖IoT data ingestion It's purpose is to store massive volumes of structured, semi structured, and unstructured data cheaply and flexibly. How it works (simple flow): 1. Data comes from many sources 2. Stored in raw form in the lake 3. Processed or transformed when needed 4. Consumed by analysts, ML models, or dashboards ⚠️Things you must know: 👉 It's not the same as a data warehouse 👉Schema is applied on read, not on write 👉 Very scalable and low cost 👉Can become a "data swamp" without governance 👉 Works best with strong metadata management ✅Mental model: Data warehouse = bottled water (clean and ready) Data lake = natural lake (raw but powerful)

LLM Cheatsheet.pdf3.42 MB

🔁 K-Fold Cross Validation K-Fold exists to answer one honest question: Will this model work on unseen data? A single train/t
🔁 K-Fold Cross Validation K-Fold exists to answer one honest question:
Will this model work on unseen data?
A single train/test split is unreliable, especially with small datasets. So K-Fold simulates multiple “future tests” using the same data. 🧠 What It Really Does Instead of one split, we: 🔀 Divide data into K folds 🔁 Train the model K times 📦 Each time: one fold validates, the rest train 📊 Average the scores Every sample gets validated once, which reduces evaluation noise and gives a more trustworthy estimate. Important: It improves evaluation, not the model itself. ⚠️ What People Often Miss 🚫 Do NOT use K-Fold as your final test. Keep a separate test set ⚖️ Use Stratified K-Fold for imbalanced classification. ⏳ Do NOT use standard K-Fold for time series. 📊 K = 5 or 10 is usually enough. ✅ In short K-Fold is just: A smart way to reuse limited data to simulate multiple real-world tests. No magic. Just careful evaluation.