Skip to main content

Machine Learning Is Being Used To Automatically Test New Software

Izzy Azeri and Dan Belcher got together to develop Stack driver a few years ago. Stack driver was a cloud monitoring solution and it was acquired by Google in 2014. While working with Google, integrating Stack driver with Google’s cloud platform, they found that the process of writing new pieces of code and integrating it with an already existing code base has become very fast now. However, the bottleneck is the testing part, which makes the entire process slow. This is where they got the idea to automate the testing process, and decided to use machine learning for the same.

Mabl

After spending sometime at Google, the two got together to found Mabl, a tool based on machine learning which makes functional testing as easy as possible for the developers. Mabl goes through the code and automatically detects which part of the code does what. This means, every time the developers make a minor modification to the code, they don’t have to write extensive tests by hand. Mabl automatically scans your website and looks for the potential sources of error. You can train Mabl by walking it through a possible scenario, and Mabl automatically understands which part of the code is supposed to do what. So next time you make a change to the website, as long as Mabl identifies the button, it will perform the test by itself and let you know if everything went accordingly or not. Mabl has also developed a chrome plugin, which can be used to test the functionality of a webpage.

Mabl is presently a crew of 20 members and they are offering free service to the developers in the preview period. Mabl is thinking about monetizing their services, by charging the developers based on the number of testings they do. However, they still haven’t figured out the details and the revenue model is still to be decided.

The founders of Mabl said that it was difficult for them to arrange for funding for their first start up, Stackdriver. However, this time it was fairly easy to arrange for funding for Mabl. CRV wanted to invest in Stackdriver but missed out and Stackdriver got sucked into Google. This time, the CEO of CRV, Murat Bicer, did not miss the opportunity and invested in Mabl very early on. He is now on the board of directors of Mabl. Mabl has raise $10 million in funding from CRV and Amplify partners.

Clients

Mabl is already running on the Google cloud platform. Google makes heavy use of this tool in the development of several of their products. Some other companies which are using Mabl for software testing are RunKeeper, 24G and Codeship. Codeship CEO says that using Mabl has freed time a lot of time for its developers as they don’t have to think about testing anymore. The developers keep making changes to the code and Mabl automatically tells them if the code is broken or not. This makes it faster for them to fix the error and then move on.

Join Machine Learning courses with Python and after that you will be having many jobs in the future.

Machine Learning Deployment - House Price Prediction - Machine Learning Tutorials

Data Science Tutorials - Python for Data Science Module 1- Part 1


Comments

Popular posts from this blog

What is the Purpose of a Bottleneck Layer in an Autoencoder?

Autoencoders are an essential part of modern machine learning, widely used in various applications such as data compression, denoising, and feature extraction. Among the components of an autoencoder, the bottleneck layer plays a crucial role in shaping how data is processed and encoded. In this blog post, we'll explore the purpose of the bottleneck layer in an autoencoder, its significance in machine learning, and how understanding it can enhance your machine learning knowledge. Whether you're considering enrolling in a Machine Learning course with live projects or seeking a Machine Learning certification, grasping the concept of the bottleneck layer can be highly beneficial. In the realm of machine learning, autoencoders are a type of neural network designed to learn efficient representations of data. The architecture of an autoencoder consists of two primary parts: the encoder and the decoder. Between these two components lies the bottleneck layer, which is pivotal in determi...

Fairness-Aware Machine Learning: Tackling Discrimination

Machine learning algorithms are increasingly embedded in critical decision-making processes across various sectors, from finance and healthcare to law enforcement and hiring practices. However, as these algorithms wield significant influence, concerns about fairness and discrimination have come to the forefront. Addressing these issues is crucial to ensure equitable outcomes for all individuals affected by algorithmic decisions. In this blog post, we delve into the concept of fairness-aware machine learning, exploring its importance, challenges, and solutions within the context of today's rapidly evolving technological landscape. Understanding Fairness in Machine Learning Fairness in machine learning refers to the ethical principle of ensuring that algorithms do not systematically disadvantage certain groups based on sensitive attributes such as race, gender, or socioeconomic status. Achieving fairness involves identifying and mitigating biases that may be present in the data used...

8 Essential Machine Learning Models Explained

Machine learning is revolutionizing industries worldwide, from healthcare to finance and beyond. Understanding various machine learning models is crucial for anyone embarking on a Machine Learning Training Course. In this concise guide, we'll demystify eight fundamental machine learning models, providing you with a comprehensive overview in just 20 minutes.Finds the linear relationship between the independent variables (features) and the dependent variable (target) by minimizing the sum of the squared differences between observed and predicted values. Linear Regression: Linear regression is a foundational model in Top machine learning courses , ideal for understanding the basics of supervised learning. It's used to predict continuous values based on input features. Imagine predicting house prices based on factors like area, location, and number of rooms. Linear regression fits a straight line to the data, minimizing the difference between predicted and actual values. Decision T...