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 899 subscribers, ranking 8 932 in the Technologies & Applications category and 29 106 in the India region.

šŸ“Š Audience metrics and dynamics

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

According to the latest data from 27 August, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by 81 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 8.01%. Within the first 24 hours after publication, content typically collects 2.06% reactions from the total number of subscribers.
  • Post reach: On average, each post receives 1 113 views. Within the first day, a publication typically gains 287 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 28 August, 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 899
Subscribers
+124 hours
-97 days
+8130 days
Posts Archive
Normalization vs Standardization: Why They’re Not the Same People treat these two as interchangeable. they’re not. šŸ‘‰ Normali
Normalization vs Standardization: Why They’re Not the Same People treat these two as interchangeable. they’re not. šŸ‘‰ Normalization (Min-Max scaling): Compresses values to 0–1. Useful when magnitude matters (pixel values, distances). šŸ‘‰ Standardization (Z-score): Centers data around mean=0, std=1. Useful when distribution shape matters (linear/logistic regression, PCA). šŸ”‘ Key idea: Normalization preserves relative proportions. Standardization preserves statistical structure. Pick the wrong one, and your model’s geometry becomes distorted.

šŸ“š Data Science Riddle - CNN Kernels Which convolution increases channel depth but not spatial size?
Anonymous voting

āœ… Complete AI (Artificial Intelligence) Roadmap šŸ¤–šŸš€  1ļøāƒ£ Basics of AI  šŸ”¹ What is AI?  šŸ”¹ Types: Narrow AI vs General AI  šŸ”¹ AI vs ML vs DL  šŸ”¹ Real-world applications  2ļøāƒ£ Python for AI šŸ”¹ Python syntax & libraries  šŸ”¹ NumPy, Pandas for data handling  šŸ”¹ Matplotlib, Seaborn for visualization  3ļøāƒ£ Math Foundation šŸ”¹ Linear Algebra: Vectors, Matrices  šŸ”¹ Probability & Statistics  šŸ”¹ Calculus basics  šŸ”¹ Optimization techniques  4ļøāƒ£ Machine Learning (ML) šŸ”¹ Supervised vs Unsupervised  šŸ”¹ Regression, Classification, Clustering  šŸ”¹ Scikit-learn for ML  šŸ”¹ Model evaluation metrics  5ļøāƒ£ Deep Learning (DL) šŸ”¹ Neural Networks basics  šŸ”¹ Activation functions, backpropagation  šŸ”¹ TensorFlow / PyTorch  šŸ”¹ CNNs, RNNs, LSTMs  6ļøāƒ£ NLP (Natural Language Processing) šŸ”¹ Text cleaning & tokenization  šŸ”¹ Word embeddings (Word2Vec, GloVe)  šŸ”¹ Transformers & BERT  šŸ”¹ Chatbots & summarization  7ļøāƒ£ Computer Vision šŸ”¹ Image processing basics  šŸ”¹ OpenCV for CV tasks  šŸ”¹ Object detection, image classification  šŸ”¹ CNN architectures (ResNet, YOLO)  8ļøāƒ£ Model Deployment šŸ”¹ Streamlit / Flask APIs  šŸ”¹ Docker for containerization  šŸ”¹ Deploy on cloud: Render, Hugging Face, AWS  9ļøāƒ£ Tools & Ecosystem šŸ”¹ Git & GitHub  šŸ”¹ Jupyter Notebooks šŸ”¹ DVC, MLflow (for tracking models)  šŸ”Ÿ Build AI Projects šŸ”¹ Chatbot, Face recognition  šŸ”¹ Spam classifier, Stock prediction  šŸ”¹ Language translator, Object detector 

šŸ“š Data Science Riddle Your model's loss fluctuates but doesn't decrease overall. What's the most likely issue?
Anonymous voting

The Difference Between Model Accuracy and Business Accuracy A model can be 95% accurate… yet deliver 0% business value. Whyā”
The Difference Between Model Accuracy and Business Accuracy A model can be 95% accurate… yet deliver 0% business value. Whyā” Because data science metrics ≠ business metrics. šŸ“Œ Examples: - A fraud model catches tiny fraud but misses large ones - A churn model predicts already obvious churners - A recommendation model boosts clicks but reduces revenue Always align ML metrics with business KPIs. Otherwise, your ā€œgreat modelā€ is just a great illusion.

šŸ“š Data Science Riddle Your estimate has high variance. Best fix?
Anonymous voting

Covers Spark for ML, graph processing (GraphFrames), and integration with Hadoop from Stanford University.

šŸ“š Data Science Riddle A feature has low importance but domain experts insist it matters. What do you do?
Anonymous voting

6 Must-Know Data Engineering Tools For Beginners
6 Must-Know Data Engineering Tools For Beginners

šŸ“š Data Science Riddle You need fast reads of small files. What storage options fits best?
Anonymous voting

šŸ› ļø Running Code in Jupyter Notebooks Jupyter Notebooks let you write & run code interactively. Here’s a quick guide to make your workflow smoother: ā–¶ļø Kernel & Code Cells - Each notebook is tied to a single kernel (e.g. IPython). - Code cells are where you write and execute code. āŒØļø Useful Shortcuts - Shift + Enter → run current cell, move to next - Alt + Enter → run current cell, insert new one below - Ctrl + Enter → run current cell, stay in place šŸ”„ Kernel Management - Interrupt the kernel if code hangs. - Restart kernel to reset memory & variables. šŸ–„ļø Output Handling - Results & errors appear directly under the cell. - Long-running code outputs appear as they’re generated. - Large outputs can be scrolled or collapsed for clarity. šŸ’” Pro Tip: Always ā€œRestart & Run Allā€ before sharing or saving a notebook. This ensures reproducibility and clean results. šŸ‘‰   Explore

šŸ“š Data Science Riddle You want to prevent inconsistent data across environments. What helps most?
Anonymous voting

If you want to become a Data Scientist, this is the path to follow.
If you want to become a Data Scientist, this is the path to follow.

The Big Data bible from Stanford: MapReduce, Spark, recommendation systems, PageRank, locality-sensitive hashing, Large scale machine learning and mining social networks/streams all explained clearly with real algorithms you can code today. 500 pages of pure gold.

šŸ“š Data Science Riddle You want to detect extreme values visually in one plot. Which one is best?
Anonymous voting

Everything You need To Know About Databricks
Everything You need To Know About Databricks

šŸ“š Data Science Riddle A query runs slowly due to large table scans. What's the most targeted fix?
Anonymous voting

The Simplest Machine Learning Cheatsheet
The Simplest Machine Learning Cheatsheet

šŸ“š Data Science Riddle Two team members run the same notebook but get different results. What's the culprit?
Anonymous voting

Kafka 101
Kafka 101