Data science/ML/AI
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 669 подписчиков, занимая 9 387 место в категории Технологии и приложения и 31 771 место в регионе Индия.
📊 Показатели аудитории и динамика
С момента создания невідомо проект демонстрирует стремительный рост, собрав аудиторию из 13 669 подписчиков.
Согласно последним данным от 05 июня, 2026, канал показывает стабильную активность. За последние 30 дней изменение числа участников составило 171, а за последние 24 часа — 1, при этом общий охват остаётся высоким.
- Статус верификации: Не верифицирован
- Уровень вовлечённости (ER): Средний показатель вовлечённости аудитории составляет 7.95%. В первые 24 часа после публикации контент обычно набирает 2.46% реакций от общего числа подписчиков.
- Охват публикаций: В среднем каждый пост получает 1 086 просмотров. В течение первых суток публикация набирает 336 просмотров.
- Реакции и взаимодействия: Аудитория активно поддерживает контент: среднее количество реакций на один пост — 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...”
Благодаря высокой частоте обновлений (последние данные получены 07 июня, 2026) канал поддерживает актуальность и высокий уровень охвата публикаций. Аналитика показывает, что аудитория активно взаимодействует с контентом, что делает его важной точкой влияния в категории Технологии и приложения.
scikit-learn library on the famous Iris dataset:
import matplotlib.pyplot as plt
from sklearn import datasets
from sklearn.manifold import TSNE
# Load the Iris dataset
iris = datasets.load_iris()
X = iris.data
y = iris.target
# Apply t-SNE
tsne = TSNE(n_components=2, perplexity=30, random_state=42)
X_embedded = tsne.fit_transform(X)
# Plotting the results
plt.figure(figsize=(8, 6))
scatter = plt.scatter(X_embedded[:, 0], X_embedded[:, 1], c=y, cmap='viridis')
plt.title('t-SNE Visualization of Iris Dataset')
plt.xlabel('t-SNE Component 1')
plt.ylabel('t-SNE Component 2')
plt.colorbar(scatter, label='Species')
plt.show()
In this example, we load the Iris dataset, apply t-SNE to reduce its four dimensions down to two, and then visualize the results. The colors represent different species of iris flowers, showing how well t-SNE can separate them based on their features.
▎Limitations of t-SNE
While t-SNE is powerful, it has some limitations:
• Computationally Intensive: It can be slow for very large datasets due to its complexity.
• Non-Deterministic: Different runs can yield different results unless you set a random seed.
• Difficulty in Interpreting Distances: The distances in the lower-dimensional space do not have a direct interpretation; they are more about relative positioning than absolute distances.import matplotlib.pyplot as plt
# Days of the week
days = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
# Coffee cups consumed
cups = [2, 3, 4, 1, 5, 6, 3]
plt.bar(days, cups, color='brown')
plt.title('Weekly Coffee Consumption')
plt.xlabel('Days')
plt.ylabel('Cups of Coffee')
plt.show()
With this simple code, you’ve transformed boring numbers into a visual that tells a story about your caffeine habits!
▎Conclusion
Data visualization isn’t just about making pretty pictures; it’s about making data accessible and understandable. It helps you tell stories that resonate with your audience and empowers them to make decisions based on insights rather than just raw numbers. So next time you have data to share, think about how you can visualize it, your audience will thank you!scikit-learn library to perform linear regression:
import numpy as np
import matplotlib.pyplot as plt
from sklearn.model_selection import train_test_split
from sklearn.linear_model import LinearRegression
# Sample data
X = np.array([[1], [2], [3], [4], [5]])
y = np.array([2, 3, 5, 7, 11])
# Split data into training and test sets
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=42)
# Create and train the model
model = LinearRegression()
model.fit(X_train, y_train)
# Make predictions
predictions = model.predict(X_test)
# Plot results
plt.scatter(X, y, color='blue', label='Data Points')
plt.plot(X_test, predictions, color='red', label='Predicted Line')
plt.legend()
plt.show()(TP+TN) / Total - Avoid for imbalanced data!
• Precision: TP / (TP + FP)
• Meaning: Out of all times it said "Positive," how many were truly positive?
• Use When: False Positives (FP) are very costly (e.g., wrongly flagging a healthy person as sick).
• Recall: TP / (TP + FN)
• Meaning: Out of all actual positives, how many did it catch?
• Use When: False Negatives (FN) are very costly (e.g., missing a real fraud, not detecting a tumor).
• F1-Score: Balances Precision and Recall.
🐍 Code Example: The 99% Accurate Lie
from sklearn.metrics import accuracy_score, precision_score, recall_score
import numpy as np
y_true = np.concatenate([np.zeros(990), np.ones(10)]) # 1000 samples, 1% positive
# Model 1: Always predicts '0' (no disease)
y_pred_bad = np.zeros(1000)
print(f"Model 1 (Always No Disease):\n Accuracy: {accuracy_score(y_true, y_pred_bad):.2f}")
print(f" Precision: {precision_score(y_true, y_pred_bad, zero_division=0):.2f}") # 0.00!
print(f" Recall: {recall_score(y_true, y_pred_bad):.2f}\n") # 0.00!
# Model 2: Catches 5 positives, 2 false alarms (Better!)
y_pred_better = np.zeros(1000)
y_pred_better[990:995] = 1 # 5 True Positives
y_pred_better[100:102] = 1 # 2 False Positives
print(f"Model 2 (Actually Catches Some):\n Accuracy: {accuracy_score(y_true, y_pred_better):.2f}")
print(f" Precision: {precision_score(y_true, y_pred_better, zero_division=0):.2f}") # 0.71
print(f" Recall: {recall_score(y_true, y_pred_better):.2f}") # 0.50
# Model 2's accuracy might be slightly lower, but its Precision/Recall shows it's far superior!
🎯 Today's Goal (What you should do)
✔️ Recognize accuracy's flaw for imbalanced data.
✔️ Pick Precision when False Positives hurt most.
✔️ Pick Recall when False Negatives hurt most.
✔️ Understand what your model's mistakes truly cost.Pandas, NumPy, scikit-learn, and TensorFlow for machine learning, as well as Tableau and Matplotlib for data visualization. Online courses, tutorials, and coding bootcamps can provide structured learning paths.
2. Identify Your Niche
Data science spans various industries, including healthcare, finance, marketing, and technology. Explore these fields to determine where your interests lie. Understanding the specific challenges and data types in your chosen industry will help you tailor your learning and make you more effective in your future role.
3. Build a Strong Portfolio
Start working on small projects that demonstrate your skills and knowledge. These could include data analysis tasks, machine learning models, or visualizations based on publicly available datasets. Use platforms like GitHub to showcase your work, and consider writing blog posts or creating presentations to explain your projects. A well-rounded portfolio not only highlights your technical capabilities but also reflects your problem-solving approach.
4. Engage with the Community
Join data science communities online (like Kaggle, Stack Overflow, or LinkedIn groups) to connect with professionals in the field. Participating in discussions, attending webinars, and contributing to open-source projects can enhance your learning experience and expand your network.
5. Pursue Continuous Learning
Data science is an ever-evolving field, so staying updated with the latest trends, techniques, and tools is crucial. Follow relevant blogs, podcasts, and research papers. Consider pursuing advanced certifications or degrees to deepen your expertise.
6. Gain Practical Experience
Look for internships, volunteer opportunities, or part-time positions that allow you to apply your skills in real-world scenarios. Practical experience will not only reinforce your learning but also give you insights into the day-to-day responsibilities of a data scientist.
By following these steps, you can build a solid foundation in data science and position yourself for success in this dynamic and rewarding field.
Уже доступно! Исследование Telegram 2025 — ключевые инсайты года 
