Machine learning Archives - GaussianWaves https://www.gaussianwaves.com/category/machine-learning/ Signal Processing for Communication Systems Sat, 01 Mar 2025 08:11:54 +0000 en-US hourly 1 https://wordpress.org/?v=6.7.2 https://i0.wp.com/www.gaussianwaves.com/gaussianwaves/wp-content/uploads/2016/02/cropped-gaussianwaves_logo_120_120.png?fit=32%2C32&ssl=1 Machine learning Archives - GaussianWaves https://www.gaussianwaves.com/category/machine-learning/ 32 32 163393712 Shrink to Win: Regularization’s Role in Model Success https://www.gaussianwaves.com/2025/03/regularization-techniques-role-in-model-success/ https://www.gaussianwaves.com/2025/03/regularization-techniques-role-in-model-success/#respond Sat, 01 Mar 2025 08:11:48 +0000 https://www.gaussianwaves.com/?p=39418 Overfitting? Shrink your model! Regularization prevents memorization, enabling true learning & robust success. Discover how. A central problem in machine learning is to develop algorithms that work well both on training data and on new inputs (test data). Most machine learning tasks can be generalized as the estimation of a function \(\hat{f}(X)\) that maps the ... Read more

The post Shrink to Win: Regularization’s Role in Model Success appeared first on GaussianWaves.

]]>
https://www.gaussianwaves.com/2025/03/regularization-techniques-role-in-model-success/feed/ 0 39418
Model Distillation Explained: How DeepSeek Leverages the Technique for AI Success https://www.gaussianwaves.com/2025/02/model-distillation-explained-how-deepseek-leverages-the-technique-for-ai-success/ https://www.gaussianwaves.com/2025/02/model-distillation-explained-how-deepseek-leverages-the-technique-for-ai-success/#respond Wed, 26 Feb 2025 08:45:06 +0000 https://www.gaussianwaves.com/?p=39391 Model distillation, also known as knowledge distillation, is a supervised learning technique that condenses the capabilities and thought processes of a large, pre-trained “teacher” model into a smaller “student” model. This allows the student model to achieve comparable performance to the teacher model, but at a lower cost and with faster performance. Chinese AI lab ... Read more

The post Model Distillation Explained: How DeepSeek Leverages the Technique for AI Success appeared first on GaussianWaves.

]]>
https://www.gaussianwaves.com/2025/02/model-distillation-explained-how-deepseek-leverages-the-technique-for-ai-success/feed/ 0 39391
Machine Learning Basics: A Comprehensive Introduction for Beginners https://www.gaussianwaves.com/2022/03/machine-learning-basics-a-comprehensive-introduction-for-beginners/ https://www.gaussianwaves.com/2022/03/machine-learning-basics-a-comprehensive-introduction-for-beginners/#respond Mon, 21 Mar 2022 14:02:00 +0000 https://www.gaussianwaves.com/?p=37359 Key focus: machine learning, introduction, basics, beginners, algorithms, applications, concepts Introduction Machine learning has emerged as a groundbreaking technology that is transforming industries and reshaping our interaction with technology. From personalized recommendations to autonomous vehicles, machine learning algorithms play a pivotal role in these advancements. If you’re new to the field, this comprehensive beginner’s guide ... Read more

The post Machine Learning Basics: A Comprehensive Introduction for Beginners appeared first on GaussianWaves.

]]>
https://www.gaussianwaves.com/2022/03/machine-learning-basics-a-comprehensive-introduction-for-beginners/feed/ 0 37359
Implementing Markov Chain in Python https://www.gaussianwaves.com/2022/03/implementing-markov-chain-in-python/ https://www.gaussianwaves.com/2022/03/implementing-markov-chain-in-python/#respond Sun, 20 Mar 2022 15:30:00 +0000 https://www.gaussianwaves.com/?p=37088 Keywords: Markov Chain, Python, probability, data analysis, data science Markov Chain Markov chain is a probabilistic models that describe a sequence of observations whose occurrence are statistically dependent only on the previous ones. This article is about implementing Markov chain in Python Markov chain is described in one of the earlier posts. For better understanding ... Read more

The post Implementing Markov Chain in Python appeared first on GaussianWaves.

]]>
https://www.gaussianwaves.com/2022/03/implementing-markov-chain-in-python/feed/ 0 37088
The Most Important Topics to Learn in Machine Learning https://www.gaussianwaves.com/2022/03/the-most-important-topics-to-learn-in-machine-learning/ https://www.gaussianwaves.com/2022/03/the-most-important-topics-to-learn-in-machine-learning/#respond Thu, 17 Mar 2022 15:30:00 +0000 https://www.gaussianwaves.com/?p=37080 Keywords: machine learning, topics, probability, statistics, linear algebra, data preprocessing, supervised learning, unsupervised learning, deep learning, reinforcement learning, model evaluation, cross-validation, hyperparameter tuning. Why the buzz ? Machine learning has been generating a lot of buzz in recent years due to its ability to automate tasks that were previously thought to be impossible or required ... Read more

The post The Most Important Topics to Learn in Machine Learning appeared first on GaussianWaves.

]]>
https://www.gaussianwaves.com/2022/03/the-most-important-topics-to-learn-in-machine-learning/feed/ 0 37080
Hidden Markov Models (HMM) – Simplified !!! https://www.gaussianwaves.com/2020/03/hidden-markov-models-hmm-simplified/ https://www.gaussianwaves.com/2020/03/hidden-markov-models-hmm-simplified/#comments Tue, 17 Mar 2020 05:08:35 +0000 https://www.gaussianwaves.com/?p=22270 Markov chains are useful in computing the probability of events that are observable. However, in many real world applications, the events that we are interested in are usually hidden, that is we don’t observe them directly. These hidden events need to be inferred. For example, given a sentence in a natural language we only observe the ... Read more

The post Hidden Markov Models (HMM) – Simplified !!! appeared first on GaussianWaves.

]]>
https://www.gaussianwaves.com/2020/03/hidden-markov-models-hmm-simplified/feed/ 3 22270
Markov Chains – Simplified !! https://www.gaussianwaves.com/2020/03/markov-chains-simplified/ https://www.gaussianwaves.com/2020/03/markov-chains-simplified/#respond Fri, 06 Mar 2020 07:11:37 +0000 https://www.gaussianwaves.com/?p=22215 Key focus: Markov chains are a probabilistic models that describe a sequence of observations whose occurrence are statistically dependent only on the previous ones. ● Time-series data like speech, stock price movements.● Words in a sentence.● Base pairs on the rung of a DNA ladder. States and transitions Assume that we want to model the ... Read more

The post Markov Chains – Simplified !! appeared first on GaussianWaves.

]]>
https://www.gaussianwaves.com/2020/03/markov-chains-simplified/feed/ 0 22215
Linear regression using python – demystified https://www.gaussianwaves.com/2020/02/linear-regression-using-python/ https://www.gaussianwaves.com/2020/02/linear-regression-using-python/#respond Wed, 05 Feb 2020 06:52:00 +0000 https://www.gaussianwaves.com/?p=21765 Key focus: Let’s demonstrate basics of univariate linear regression using Python SciPy functions. Train the model and use it for predictions. Linear regression model Regression is a framework for fitting models to data. At a fundamental level, a linear regression model assumes linear relationship between input variables () and the output variable (). The input ... Read more

The post Linear regression using python – demystified appeared first on GaussianWaves.

]]>
https://www.gaussianwaves.com/2020/02/linear-regression-using-python/feed/ 0 21765
Generating simulated dataset for regression problems https://www.gaussianwaves.com/2020/01/generating-simulated-dataset-for-regression-problems-sklearn-make_regression/ https://www.gaussianwaves.com/2020/01/generating-simulated-dataset-for-regression-problems-sklearn-make_regression/#respond Fri, 31 Jan 2020 03:00:12 +0000 https://www.gaussianwaves.com/?p=21784 Key focus: Generating simulated dataset for regression problems using sklearn make_regression function (Python 3) is discussed in this article. Problem statement Suppose, a survey is conducted among the employees of a company. In that survey, the salary and the years of experience of the employees are collected. The aim of this data collection is to ... Read more

The post Generating simulated dataset for regression problems appeared first on GaussianWaves.

]]>
https://www.gaussianwaves.com/2020/01/generating-simulated-dataset-for-regression-problems-sklearn-make_regression/feed/ 0 21784
Introduction to Signal Processing for Machine Learning https://www.gaussianwaves.com/2020/01/introduction-to-signal-processing-for-machine-learning/ https://www.gaussianwaves.com/2020/01/introduction-to-signal-processing-for-machine-learning/#respond Tue, 21 Jan 2020 07:55:26 +0000 https://www.gaussianwaves.com/?p=21643 Key focus: Fundamentals of signal processing for machine learning. Speaker identification is taken as an example for introducing supervised learning concepts. Signal Processing A signal, mathematically a function, is a mechanism for conveying information. Audio, image, electrocardiograph (ECG) signal, radar signals, stock price movements, electrical current/voltages etc.., are some of the examples. Signal processing is ... Read more

The post Introduction to Signal Processing for Machine Learning appeared first on GaussianWaves.

]]>
https://www.gaussianwaves.com/2020/01/introduction-to-signal-processing-for-machine-learning/feed/ 0 21643