uz
Feedback
Data Science & Machine Learning

Data Science & Machine Learning

Kanalga Telegram’da o‘tish

Join this channel to learn data science, artificial intelligence and machine learning with funny quizzes, interesting projects and amazing resources for free For collaborations: @love_data

Ko'proq ko'rsatish

📈 Telegram kanali Data Science & Machine Learning analitikasi

Data Science & Machine Learning (@datasciencefun) Ingliz til segmentidagi kanali faol ishtirokchi. Hozirda hamjamiyat 75 822 obunachidan iborat bo'lib, Taʼlim toifasida 2 109-o'rinni va Hindiston mintaqasida 4 254-o'rinni egallagan.

📊 Auditoriya ko‘rsatkichlari va dinamika

невідомо sanasidan buyon loyiha tez o‘sib, 75 822 obunachiga ega bo‘ldi.

20 Iyun, 2026 dagi oxirgi ma’lumotlarga ko‘ra kanal barqaror faollikka ega. Oxirgi 30 kunda obunachilar soni 833 ga, so‘nggi 24 soatda esa 1 ga o‘zgardi va umumiy qamrov yuqori darajada qolmoqda.

  • Tasdiqlash holati: Tasdiqlanmagan
  • Jalb etish (ER): Auditoriya o‘rtacha 3.15% darajada jalb etiladi. Nashrdan keyingi dastlabki 24 soatda kontent odatda umumiy obunachilar sonining 1.15% ini tashkil etuvchi reaksiyalarni to‘playdi.
  • Post qamrovi: Har bir post o‘rtacha 2 391 marta ko‘riladi; birinchi sutkada odatda 875 ta ko‘rish yig‘iladi.
  • Reaksiyalar va o‘zaro ta’sir: Auditoriya faol: har bir postga o‘rtacha 3 ta reaksiya keladi.
  • Tematik yo‘nalishlar: Kontent learning, accuracy, distribution, panda, dataset kabi asosiy mavzularga jamlangan.

📝 Tavsif va kontent siyosati

Muallif resursni shaxsiy fikrni ifoda etish maydoni sifatida ta’riflaydi:
Join this channel to learn data science, artificial intelligence and machine learning with funny quizzes, interesting projects and amazing resources for free For collaborations: @love_data

Yuqori yangilanish chastotasi (oxirgi ma’lumot 21 Iyun, 2026 da olingan) sababli kanal doimo dolzarb va katta qamrovli bo‘lib qoladi. Analitika auditoriya kontent bilan faol hamkorlik qilishini, uni Taʼlim toifasidagi muhim ta’sir nuqtasiga aylantirishini ko‘rsatadi.

75 822
Obunachilar
+124 soatlar
+1047 kunlar
+83330 kunlar
Postlar arxiv
Boost Your Data Science Productivity.pdf9.35 MB

Machine Learning, Image Processing, Network Security and Data Sciences Akedh Doriya, 2023

The Art and Science of Machine Intelligence Walker H. Land Jr., 2020

60 chatgpt prompts for data science

Getting Started with TensorFlow.pdf4.74 MB

useful kubernetes notes.pdf23.80 MB

🎲 Mathematical Statistics 📖 book
🎲 Mathematical Statistics 📖 book

DeepLearning Notes

+3
Computer Vision and Sensor-Based Robots C.A. Rosen, 1979

1. For the given points, how will you calculate the Euclidean distance in Python? plot1 = [1,3] plot2 = [2,5] The Euclidean distance can be calculated as follows: euclidean_distance = sqrt( (plot1[0]-plot2[0])*2 + (plot1[1]-plot2[1])*2 ) 2.Which of the following machine learning algorithms can be used for inputting missing values of both categorical and continuous variables? K-means clustering Linear regression K-NN (k-nearest neighbor) Decision trees The K nearest neighbor algorithm can be used because it can compute the nearest neighbor and if it doesn't have a value, it just computes the nearest neighbor based on all the other features. When you're dealing with K-means clustering or linear regression, you need to do that in your pre-processing, otherwise, they'll crash. Decision trees also have the same problem, although there is some variance. 3.How are confidence tests and hypothesis tests similar? How are they different? Confidence intervals and hypothesis testing are both tools used for to make statistical inferences. The confidence interval suggests a range of values for an unknown parameter and is then associated with a confidence level that the true parameter is within the suggested range of. Confidence intervals are often very important in medical research to provide researchers with a stronger basis for their estimations. A confidence interval can be shown as “10 +/- 0.5” or [9.5, 10.5] to give an example. Hypothesis testing is the basis of any research question and often comes down to trying to prove something did not happen by chance. For example, you could try to prove when rolling a dye, one number was more likely to come up than the rest. 4. What is the difference between observational and experimental data? Observational data comes from observational studies which are when you observe certain variables and try to determine if there is any correlation. Experimental data comes from experimental studies which are when you control certain variables and hold them constant to determine if there is any causality. An example of experimental design is the following: split a group up into two. The control group lives their lives normally. The test group is told to drink a glass of wine every night for 30 days. Then research can be conducted to see how wine affects sleep. ENJOY LEARNING 👍👍

Modern Deep Learning for Tabular Data Andre Ye, 2023

Fundamentals of Deep Learning Nithin Buduma, 2022

Learn NumPy Basics in Weekend Hisham El Amir, 2021

BTP CRYPTO PUMPS & SIGNALS We offer short crypto pumps & signals 28-30 times per month. #ad
BTP CRYPTO PUMPS & SIGNALS We offer short crypto pumps & signals 28-30 times per month. #ad

Practical Data Science with Jupyter Prateek Gupta, 2021

Data Science Interview Questions and Answers 👨‍💻.pdf13.81 MB

1. Compare SVM and Logistic Regression in handling outliers For Logistic Regression, outliers can have an unusually large effect on the estimate of logistic regression coefficients. It will find a linear boundary if it exists to accommodate the outliers. To solve the problem of outliers, sometimes a sigmoid function is used in logistic regression. For SVM, outliers can make the decision boundary deviate severely from the optimal hyperplane. One way for SVM to get around the problem is to introduce slack variables. There is a penalty involved with using slack variables, and how SVM handles outliers depends on how this penalty is imposed. 2. Can you explain how to implement a simple kNN algorithm in code? The kNN algorithm can be used for a variety of tasks (classification & regression). To implement it, you will need to first calculate the distance between the new data point and all of the training data points. Once you have the distances, you will then need to find the k nearest neighbors and take the majority vote of those neighbors to determine the class of the new data point. 3. What type of node is considered Pure in the decision tree? If the Gini Index of the data is 0 then it means that all the elements belong to a specific class. When this happens it is said to be pure. When all of the data belongs to a single class (pure) then the leaf node is reached in the tree. The leaf node represents the class label in the tree (which means that it gives the final output). 4. What is Space and Time Complexity of the Hierarchical Clustering Algorithm? Space complexity: Hierarchical Clustering Technique requires very high space when the number of observations in our dataset is more since we need to store the similarity matrix in the RAM. So, the space complexity is the order of the square of n. Space complexity = O(n²) where n is the number of observations. Time complexity: Since we have to perform n iterations and in each iteration, we need to update the proximity matrix and also restore that matrix, therefore the time complexity is also very high. So, the time complexity is the order of the cube of n. Time complexity = O(n³) where n is the number of observations. ENJOY LEARNING 👍👍

Commonly used Python libraries are: 👉🏻NumPy: This library is used for scientific computing and working with arrays of data. It provides functions for working with arrays of data, including mathematical operations, linear algebra, and random number generation. 👉🏻Pandas: This library is used for data manipulation and analysis. It provides tools for importing, cleaning, and transforming data, as well as tools for working with time series data and performing statistical analysis. 👉🏻Matplotlib: This library is used for data visualization. It provides functions for creating a wide range of plots, including scatter plots, line plots, bar plots, and histograms. 👉🏻Scikit-learn: This library is used for machine learning. It provides a range of algorithms for classification, regression, clustering, and dimensionality reduction, as well as tools for model evaluation and selection. 👉🏻TensorFlow: This library is used for deep learning. It provides a range of tools and libraries for building and training neural networks, including support for distributed training and hardware acceleration.

Deep Learning Applications 4 M. Arif Wani, 2023