-
Archives
- March 2025
- February 2025
- January 2025
- December 2024
- October 2024
- July 2024
- June 2024
- May 2024
- April 2024
- March 2024
- January 2024
- December 2023
- November 2023
- October 2023
- September 2023
- August 2023
- July 2023
- June 2023
- May 2023
- April 2023
- March 2023
- February 2023
- January 2023
- December 2022
- November 2022
- August 2022
- June 2022
- March 2022
- February 2022
- January 2022
- December 2021
- November 2021
- October 2021
- August 2021
- July 2021
- June 2021
- April 2021
- December 2019
-
Meta
Category Archives: Uncategorized
DORA’s automotive quick assessment
The DORA Quick Check is a streamlined assessment tool designed to measure your team’s software delivery performance. It focuses on four key metrics: Explore more about it here: DORA Quick Check. A first try for usual automotive cases:
Posted in Uncategorized
Leave a comment
Different perspectives on n-tier architecture
A common pattern for solution architecture are different layer (aka tiers) e.g, frontend, backend and database. The common approaches such as micro-service and self contained (aka CSC- self contained system) are just different kinds of commonly used layer.
Posted in Uncategorized
Leave a comment
Thoughts on automotive micro-service architectures
Micro-service architecture is a contemporary software design approach widely adopted by companies such as Netflix and Amazon, allowing them to release features at an impressive pace. This approach decomposes a large application into a collection of small, loosely coupled services. … Continue reading
Posted in Uncategorized
Leave a comment
Takeaways from the book “Software Engineering at Google: Lessons Learned from Programming Over Time”
My takeaways from the book “Software Engineering at Google: Lessons Learned from Programming Over Time” can be grouped into cultural, organizational, and technical insights. Open communication and psychological safety are emphasized as critical components of a successful engineering culture. These principles foster … Continue reading
Posted in Uncategorized
Leave a comment
Technology Management principles
As a technology manager, navigating new solution spaces to improve technology adoption, mitigate risks, and discover opportunities can be a complex task. The TRIZ (Theory of Inventive Problem Solving) methodology provides a structured approach to evaluate existing technological solutions from … Continue reading
Posted in Uncategorized
Leave a comment
Why KAN networks
Traditional neural network design relies heavily on gradient flow, which refers to the movement of gradients during the training process. A gradient is a value (vector or scalar) that represents the direction and magnitude of the steepest increase of a … Continue reading
Posted in Uncategorized
Leave a comment
Model size reducing via activity pruning
Gradient flow describes the movement of gradients during the training of a machine learning model. A gradient is a value (vector or scalar) that shows the direction and magnitude of the steepest increase of a function, indicating how a function … Continue reading
Posted in Uncategorized
Leave a comment
Multi GPU training
Different approach to achieve parallelism in training deep neural networks: Any better idea?
Posted in Uncategorized
Leave a comment
Momentum approach to optimize model training
In gradient descent, each parameter update is based solely on the current gradient, which can lead to undesirable oscillations during the optimization process. Similar to control tasks, where a filter is often required, a momentum mechanism is introduced. Momentum acts … Continue reading
Posted in Uncategorized
Leave a comment
ML training methodologies
Gradient flow refers to the movement of gradients during the training of a machine learning model. A gradient is a vector or scalar that represents the direction and magnitude of the steepest increase of a function. Mathematically, it quantifies the … Continue reading
Posted in Uncategorized
Leave a comment