uz
Feedback
Data science/ML/AI

Data science/ML/AI

Kanalga Telegram’da oā€˜tish

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

Ko'proq ko'rsatish

šŸ“ˆ Telegram kanali Data science/ML/AI analitikasi

Data science/ML/AI (@datascience_bds) Ingliz til segmentidagi kanali faol ishtirokchi. Hozirda hamjamiyat 13 903 obunachidan iborat bo'lib, Texnologiyalar & Aralashmalar toifasida 8 919-o'rinni va Hindiston mintaqasida 29 117-o'rinni egallagan.

šŸ“Š Auditoriya koā€˜rsatkichlari va dinamika

невіГомо sanasidan buyon loyiha tez oā€˜sib, 13 903 obunachiga ega boā€˜ldi.

26 Avgust, 2026 dagi oxirgi ma’lumotlarga koā€˜ra kanal barqaror faollikka ega. Oxirgi 30 kunda obunachilar soni 95 ga, soā€˜nggi 24 soatda esa -8 ga oā€˜zgardi va umumiy qamrov yuqori darajada qolmoqda.

  • Tasdiqlash holati: Tasdiqlanmagan
  • Jalb etish (ER): Auditoriya oā€˜rtacha 8.25% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 2.05% ini tashkil etuvchi reaksiyalarni toā€˜playdi.
  • Post qamrovi: Har bir post oā€˜rtacha 1 146 marta koā€˜riladi; birinchi sutkada odatda 285 ta koā€˜rish yigā€˜iladi.
  • Reaksiyalar va oā€˜zaro ta’sir: Auditoriya faol: har bir postga oā€˜rtacha 5 ta reaksiya keladi.
  • Tematik yoā€˜nalishlar: Kontent panda, learning, row, api, ethic kabi asosiy mavzularga jamlangan.

šŸ“ Tavsif va kontent siyosati

Muallif resursni shaxsiy fikrni ifoda etish maydoni sifatida ta’riflaydi:
ā€œ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...ā€

Yuqori yangilanish chastotasi (oxirgi ma’lumot 27 Avgust, 2026 da olingan) sababli kanal doimo dolzarb va katta qamrovli boā€˜lib qoladi. Analitika auditoriya kontent bilan faol hamkorlik qilishini, uni Texnologiyalar & Aralashmalar toifasidagi muhim ta’sir nuqtasiga aylantirishini koā€˜rsatadi.

13 903
Obunachilar
-824 soatlar
-57 kunlar
+9530 kunlar
Postlar arxiv
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

Support Vector Machines Cheat Sheet.pdf1.28 KB

āœ… Natural Language Processing (NLP) Basics You Should Know šŸ§ šŸ’¬ Understanding NLP is key to working with language-based AI systems like chatbots, translators, and voice assistants. 1ļøāƒ£ What is NLP?  NLP stands for Natural Language Processing. It enables machines to understand, interpret, and respond to human language. 2ļøāƒ£ Key NLP Tasks:  - Text classification (spam detection, sentiment analysis)  - Named Entity Recognition (NER) (identifying names, places)  - Tokenization (splitting text into words/sentences)  - Part-of-speech tagging (noun, verb, etc.)  - Machine translation (English → French)  - Text summarization  - Question answering  3ļøāƒ£ Tokenization Example: 
from nltk.tokenize import word_tokenize  
text = "ChatGPT is awesome!"  
tokens = word_tokenize(text)  
print(tokens)  # ['ChatGPT', 'is', 'awesome', '!']
4ļøāƒ£ Sentiment Analysis:  Detects the emotion of text (positive, negative, neutral). 
from textblob import TextBlob  
TextBlob("I love AI!").sentiment  # Sentiment(polarity=0.5, subjectivity=0.6)
5ļøāƒ£ Stopwords Removal:  Removes common words like ā€œisā€, ā€œtheā€, ā€œaā€. 
from nltk.corpus import stopwords  
words = ["this", "is", "a", "test"]
filtered = [w for w in words if w not in stopwords.words("english")]
6ļøāƒ£ Lemmatization vs Stemming:  - Stemming: Cuts off word endings (running → run)  - Lemmatization: Uses vocab & grammar (better results) 7ļøāƒ£ Vectorization:  Converts text into numbers for ML models.  - Bag of Words  - TF-IDF  - Word Embeddings (Word2Vec, GloVe) 8ļøāƒ£ Transformers in NLP:  Modern NLP models like BERT, GPT use transformer architecture for deep understanding. 9ļøāƒ£ Applications of NLP:  - Chatbots  - Virtual assistants (Alexa, Siri)  - Sentiment analysis  - Email classification  - Auto-correction and translation  šŸ”Ÿ Tools/Libraries:  - NLTK  - spaCy  - TextBlob  - Hugging Face Transformers šŸ’¬ Tap ā¤ļø for more!

How To Tell a Data Story
How To Tell a Data Story