uk
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 672 підписників, посідаючи 9 377 місце в категорії Технології та додатки та 31 635 місце у регіоні Індія.

📊 Показники аудиторії та динаміка

З моменту свого створення невідомо, проект продемонстрував стрімке зростання, зібравши аудиторію у 13 672 підписників.

За останніми даними від 09 червня, 2026, канал демонструє стабільну активність. Хоча за останні 30 днів спостерігається зміна кількості учасників на 155, а за останні 24 години на 5, загальне охоплення залишається високим.

  • Статус верифікації: Не верифікований
  • Рівень залученості (ER): Середній показник залученості аудиторії становить 8.03%. Протягом перших 24 годин після публікації контент зазвичай збирає 2.25% реакцій від загальної кількості підписників.
  • Охоплення публікацій: В середньому кожен допис отримує 1 098 переглядів. Протягом першої доби публікація в середньому набирає 308 переглядів.
  • Реакції та взаємодія: Аудиторія активно підтримує контент: середня кількість реакцій на один пост – 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...

Завдяки високій частоті оновлень (останні дані отримано 10 червня, 2026), канал підтримує актуальність та високий рівень охоплення публікацій. Аналітика показує, що аудиторія активно взаємодіє з контентом, що робить його важливою точкою впливу в категорії Технології та додатки.

13 672
Підписники
+524 години
+197 днів
+15530 день
Архів дописів
⚡️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.

Data Science Interview Questions and Answers.pdf13.55 MB

VC Dimension In theory courses, VC dimension appears abstract. But it answers a deep question:
How complex is your model’s decision boundary?
VC dimension measures the largest number of points a model can shatter (perfectly classify in all labelings). Why this is important❔ Two models with similar parameter counts can have very different capacities. For example: 📦 k-NN → very high effective capacity 📐 Linear classifier → limited capacity 🌳 Deep trees → extremely high capacity What you need to understand Generalization depends on capacity relative to data size. Too much capacity with little data leads to overfitting. ✅ VC dimension is about expressive power, not just number of parameters.

Data Lakehouse Architecture for ML Cheat Sheet.pdf1.04 KB

Which ML concept refers to splitting data into training and testing subsets?
Anonymous voting

LLMs are getting insanely popular lately and suddenly everyone is talking about AI, chatbots, copilots, agents… so let’s clear it up 👇 So what are LLMs really? 🤔 LLMs = Large Language Models Think of them as insanely smart text prediction machines that learned from tons of books, code, docs, and conversations 📚💻 Why everyone is obsessed right now 🔥 • They can write code 🧑‍💻 • Explain complex stuff like a friend 🗣 • Analyze data 📊 • Power chatbots, copilots, agents 🤖 • One model, MANY tasks Why they exploded now 🚀 • GPUs got better and cheaper • Open source models became really good • Companies realized: this saves time and money 💰 The most famous LLMs you hear about 👀 • GPT-4 / GPT-4.1 by OpenAI • Claude 3 by Anthropic • Gemini by Google • LLaMA 3 by Meta • Mistral by Mistral AI Where LLMs are actually used today 🛠 • Chatbots and AI assistants • Writing SQL and Python • Data analysis and reporting • Customer support automation • Internal company tools Important truth 💡 LLMs are not magic 🪄 They are very powerful autocomplete with reasoning skills. Learn how to use them properly and you are already ahead of most people 😉

🧠 LayerNorm vs BatchNorm: Same Goal, Different Behavior Both techniques normalize activations, but they operate differently.
🧠 LayerNorm vs BatchNorm: Same Goal, Different Behavior Both techniques normalize activations, but they operate differently. Batch Normalization 📦 Normalizes across the batch ⚡️ Depends on batch statistics 🖼 Works very well in CNNs ⚠️ Sensitive to small batch sizes Layer Normalization 🔬 Normalizes across features per sample 📏 Independent of batch size 🤖 Preferred in transformers and NLP ✅ Stable for sequence models Why transformers use LayerNorm❔ Sequence models often run with variable or small batches. LayerNorm avoids reliance on batch statistics and stays stable. ✅ Rule of thumb 🖼 CNNs → BatchNorm 🤖 Transformers → LayerNorm 📌 They look similar mathematically but normalize along different axes.

Apache Kafka Cheat Sheet.pdf0.84 KB

Generative AI 101 in 10 Terms
Generative AI 101 in 10 Terms

⚡️📊 One Line Feature Scaling Scaling features without touching sklearn 👀
df["age_scaled"] = (df["age"] - df["age"].mean()) / df["age"].std()
Why it is useful: • Quick experiments • Better intuition • No pipeline overhead

Prompt Engineering Cheat Sheet.pdf0.67 KB

Python for Data Analytics: The Ultimate Library Ecosystem (2026 Edition) This wheel is the Python data stack that's recommend
Python for Data Analytics: The Ultimate Library Ecosystem (2026 Edition) This wheel is the Python data stack that's recommended from raw scraping to production insights: ➡️ Data Manipulation → Pandas, Polars (the fast successor), NumPy ➡️ Visualization → Matplotlib, Seaborn, Plotly (interactive dashboards) ➡️ Analysis → SciPy, Statsmodels, Pingouin ➡️ Time Series → Darts, Kats, Tsfresh, sktime ➡️ NLP → NLTK, spaCy, TextBlob, transformers (BERT & friends) ➡️ Web Scraping → BeautifulSoup, Scrapy, Selenium 🔥 Pro tip from real projects: 👉Switch to Polars when Pandas starts choking on >1 GB datasets 👉 Use Plotly + Dash when stakeholders want interactive reports 👉 Combine Darts + Tsfresh for serious time-series feature engineering

Unsupervised learning often uses:
Anonymous voting

AI Agents Roadmap 2026.pdf1.66 MB

Type of Data Professionals
Type of Data Professionals

🤯📈 Detect Outliers in 5 Lines Simple Z score based outlier detection.
import numpy as np

z = (df["salary"] - df["salary"].mean()) / df["salary"].std()
outliers = df[np.abs(z) > 3]
Why this matters: • Clean data • Better models • Fewer surprises in production Small code. Big impact.

Pre-Chunking vs. Post-Chunking (On-Demand Chunking) This visual breaks down two common ways to chunk documents in Retrieval-A
Pre-Chunking vs. Post-Chunking (On-Demand Chunking) This visual breaks down two common ways to chunk documents in Retrieval-Augmented Generation (RAG) systems,and when each makes sense. Pre-Chunking Documents are cleaned, split into chunks, embedded, and stored ahead of time. •  Pros: Fast retrieval at query time, simpler runtime pipeline. •  Cons: Rigid,changing chunk size or strategy means reprocessing the entire dataset. •  Best for: Stable datasets, high-throughput apps, predictable queries. Post-Chunking / On-Demand Chunking Documents are stored whole; chunking happens after retrieval based on the user’s query. •  Pros: More flexible and query-aware, often more relevant context. •  Cons: Higher latency and infrastructure complexity. •  Best for: Evolving content, exploratory queries, precision-focused use cases. 🔑 Takeaway: There’s no one-size-fits-all. If speed and scale matter most, pre-chunk. If adaptability and relevance are key, post-chunk. Many production systems even combine both.

Layers of AI
Layers of AI