Open in app

Sign In

Write

Sign In

AAWEG I *We put ghosts in machines *

403 Followers

Home

About

Pinned

Elements of a PyTorch Deep Learning Model (1)- Tensors, Autograd and Optimization

Explore the key elements of PyTorch deep learning models, including tensors, autograd for gradient computation, and optimization techniques like SGD and Adagrad. — TENSOR AND COMMON TENSOR OPERATIONS In PyTorch, a tensor is a multi-dimensional array that can represent scalars, vectors, matrices, or higher-dimensional data. Tensor refers to the generalization of vectors and matrices to an arbitrary number of dimensions. torch module provides extensive library of operations on them.

Pytorch

11 min read

Elements of a PyTorch Deep Learning Model (1)- Tensors, Autograd and Optimization
Elements of a PyTorch Deep Learning Model (1)- Tensors, Autograd and Optimization
Pytorch

11 min read


16 hours ago

Statistical Modelling: Variance Inflation Factor (VIF) in Regression Analysis. Detecting and Addressing Multicollinearity

Gain insights into the Variance Inflation Factor (VIF) and its role in identifying multicollinearity in regression models. Learn how to interpret VIF values, diagnose correlated independent variables, and enhance model stability. — Variance Inflation Factor (VIF) is a statistical measure that quantifies the extent of multicollinearity in a regression analysis. Multicollinearity occurs when independent variables in a regression model are highly correlated with each other, which can lead to unreliable and unstable estimates of the regression coefficients.

Regression

3 min read

Statistical Modelling: Variance Inflation Factor (VIF) in Regression Analysis.
Statistical Modelling: Variance Inflation Factor (VIF) in Regression Analysis.
Regression

3 min read


Published in

Literary Impulse

·2 days ago

A Poetic Reflection on Life’s Treasures: A Critical Review of “Things I Want to be Buried With” by Shiza Hidayet Khan

| ShabdAaweg At ShabdAaweg, we receive some brilliant stories, a few of which we publish, every Monday. Please look at About Us page for more details. But some of them strike. They really hit something in us, which makes us look at those pieces again, and again. “Things I Want…

Poetry

3 min read

A Poetic Reflection on Life’s Treasures: A Critical Review of “Things I Want to be Buried With” by…
A Poetic Reflection on Life’s Treasures: A Critical Review of “Things I Want to be Buried With” by…
Poetry

3 min read


Published in

Literary Impulse

·3 days ago

A Multilayered Journey through Time and Pain: A Critical Review of “Poor Alice” by Oisin Breen | ShabdAaaweg

Oisin Breen’s poem “Poor Alice” takes readers on a captivating and multilayered journey through a post-apocalyptic landscape where a young girl, Alice, traverses both the present and the past, leading her to a destination that no longer exists. Breen’s masterful storytelling and poetic craftsmanship make this piece a compelling exploration of time, pain, and the resilience of the human spirit. — At ShabdAaaweg (www.shabdaaweg.in) we receive some brilliant stories, a few of which we publish, every Monday. Please look at About Us page for more details. But some of them strike. They really hit something in us, which makes us look at those pieces again, and again.

Shabdaaweg

3 min read

A Multilayered Journey through Time and Pain: A Critical Review of “Poor Alice” by Oisin Breen |…
A Multilayered Journey through Time and Pain: A Critical Review of “Poor Alice” by Oisin Breen |…
Shabdaaweg

3 min read


Published in

Literary Impulse

·4 days ago

An Analysis of “Occupation in Gaza” by Damien Posterino: A Critical Perspective | ShabdAaweg

At ShabdAaweg, we receive some brilliant stories, a few of which we publish, every Monday. Please look at About Us page for more details. But some of them strike. They really hit something in us, which makes us look at those pieces again, and again. “Occupation in Gaza” by Damien…

Critical Reading

3 min read

An Analysis of “Occupation in Gaza” by Damien Posterino: A Critical Perspective | ShabdAaweg
An Analysis of “Occupation in Gaza” by Damien Posterino: A Critical Perspective | ShabdAaweg
Critical Reading

3 min read


Published in

Literary Impulse

·5 days ago

A Haunting Exploration of Insomnia and Loneliness: A Critical Review of “INSOMNIA” by George Freek | ShabdAaweg

At ShabdAaweg, we receive some brilliant stories, a few of which we publish, every Monday. Please look at About Us page for more details. But some of them strike. They really hit something in us, which makes us look at those pieces again, and again. ‘INSOMNIA’ by George Freek is…

Critical Theory

3 min read

A Haunting Exploration of Insomnia and Loneliness: A Critical Review of “INSOMNIA” by George Freek…
A Haunting Exploration of Insomnia and Loneliness: A Critical Review of “INSOMNIA” by George Freek…
Critical Theory

3 min read


Published in

Literary Impulse

·Updated 6 days ago

Exploring the Fragility of Power and Empire: A Critical Reading of Ryan Keating’s ‘Crushing Snails’ | ShabdAaaweg

Delve into the thought-provoking poem “Crushing Snails” by Ryan Keating, which vividly describes the interconnectedness of ancient empires and modern political regimes. Through powerful imagery and metaphorical language, the poem highlights the cyclical nature of life, the ephemerality of political power, and the transient nature of human achievements, inviting reflection on the impermanence of empires.

Shabdaaweg

3 min read

Exploring the Fragility of Power and Empire: A Critical Reading of Ryan Keating’s ‘Crushing Snails’…
Exploring the Fragility of Power and Empire: A Critical Reading of Ryan Keating’s ‘Crushing Snails’…
Shabdaaweg

3 min read


May 21

“A Comprehensive Guide to Huber Regression: Balancing Efficiency and Robustness for Reliable Parameter Estimation

Learn how Huber Regression strikes a balance between ordinary least squares (OLS) and absolute deviation (L1) regression, providing reliable parameter estimates while mitigating the impact of outliers. Understand its advantages, limitations, and practical tips for hyperparameter tuning. — INTUITION The HuberRegressor is a robust regression algorithm that combines the advantages of both the least squares method (MSE loss) and the absolute deviation method (MAE loss). It is designed to be less sensitive to outliers compared to ordinary least squares (OLS) regression.

Regression

7 min read

“A Comprehensive Guide to Huber Regression: Balancing Efficiency and Robustness for Reliable…
“A Comprehensive Guide to Huber Regression: Balancing Efficiency and Robustness for Reliable…
Regression

7 min read


May 20

Demystifying Artificial Intelligence, Machine Learning, and Data Science: Unveiling the Secrets of Intelligent Systems and Data Insights

The article explores the differences and relationships between AI, ML, and Data Science, providing insights into their concepts, applications, and significance in various industries. — Artificial Intelligence (AI): AI is a broad field that aims to create intelligent systems capable of simulating human intelligence and performing tasks that typically require human cognitive abilities. It involves developing algorithms and models that enable machines to perceive, reason, learn, and make decisions.

Machine Learning

2 min read

Demystifying Artificial Intelligence, Machine Learning, and Data Science: Unveiling the Secrets of…
Demystifying Artificial Intelligence, Machine Learning, and Data Science: Unveiling the Secrets of…
Machine Learning

2 min read


May 19

Transforming Data for Statistical Analysis: The Power of Box-Cox Transformation

Learn how to stabilize and normalize data using the Box-Cox transformation technique. This post provides a step-by-step guide and example code in Python’s scipy library for implementing the transformation. — Box-Cox transformation is a technique used to stabilize the variance of a variable and make it more normally distributed. It is commonly applied when dealing with data that violates the assumption of constant variance in linear regression or other statistical models.

Statistics

3 min read

Transforming Data for Statistical Analysis: The Power of Box-Cox Transformation
Transforming Data for Statistical Analysis: The Power of Box-Cox Transformation
Statistics

3 min read

AAWEG I *We put ghosts in machines *

AAWEG I *We put ghosts in machines *

403 Followers

linkedin.com/in/aaweg-i | github.com/the-ogre

Help

Status

Writers

Blog

Careers

Privacy

Terms

About

Text to speech