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
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 898 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 898 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.
import tensorflow as tf
from tensorflow.keras import layers, models
from tensorflow.keras.datasets import mnist
# Load and preprocess the MNIST dataset
(x_train, y_train), (x_test, y_test) = mnist.load_data()
x_train = x_train.reshape((60000, 28, 28, 1)).astype('float32') / 255
x_test = x_test.reshape((10000, 28, 28, 1)).astype('float32') / 255
# Build the CNN model
model = models.Sequential([
layers.Conv2D(32, (3, 3), activation='relu', input_shape=(28, 28, 1)),
layers.MaxPooling2D((2, 2)),
layers.Conv2D(64, (3, 3), activation='relu'),
layers.MaxPooling2D((2, 2)),
layers.Conv2D(64, (3, 3), activation='relu'),
layers.Flatten(),
layers.Dense(64, activation='relu'),
layers.Dense(10, activation='softmax')
])
# Compile the model
model.compile(optimizer='adam',
loss='sparse_categorical_crossentropy',
metrics=['accuracy'])
# Train the model
model.fit(x_train, y_train, epochs=5)
# Evaluate the model
test_loss, test_acc = model.evaluate(x_test, y_test)
print(f'Test accuracy: {test_acc}')
In this example:
⢠We load the MNIST dataset and preprocess it by reshaping and normalizing the pixel values.
⢠We construct a simple CNN with three convolutional layers followed by max pooling.
⢠Finally, we compile and train the model on the training data before evaluating its performance on the test set.
âApplications of CNNs
CNNs have a wide range of applications beyond image classification:
⢠Object Detection: Identifying and locating objects within images (e.g., YOLO, Faster R-CNN).
⢠Image Segmentation: Classifying each pixel in an image (e.g., U-Net).
⢠Facial Recognition: Identifying individuals in images.
⢠Medical Image Analysis: Detecting anomalies in medical scans.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.