atlas news
    
Sparrow Computing
26  avril     09h00
The Importance of High-Quality Labeled Data
Ben Cook    The key to unlocking the power of machine learning ML lies in having high quality labeled data. In this email, we’ll explore the significance of labeled data, its impact on the performance of ML models, and how you can capitalize on this natural resource of the modern age to drive your ... Read...
25  avril     21h20
Predictive Maintenance at General Electric
Ben Cook    As you think through the ways machine learning ML can be used to accelerate your business, it can be helpful to see how other companies have done it. Today, I want to share an example of how General Electric GE harnessed the power of ML to transform a large part ... Read more The post...
31  mars     17h28
How to Label Data for Machine Learning
Ben Cook    Machine learning has revolutionized the world of technology, playing a crucial role in various applications, from self driving cars and facial recognition systems to language translation and sentiment analysis. The success of machine learning models largely depends on the quality and quantity of...
29  mars     20h52
Understanding the Data Science Process for Entrepreneurs
Ben Cook    As an entrepreneur looking to harness the power of machine learning ML in your business, understanding the data science process is crucial. This process can be broken down into three main steps: The goal is to move through these stages as quickly as possible so that you can gather feedback ......
02  mars     16h32
Saving Utility Companies Years with Computer Vision
Will Cook    How do utility companies monitor thousands of miles of electrical wire to find small imperfections that threaten the entire system For the entire history of electrical infrastructure, the only answer has been very slowly.’ Now, Sparrow’s computer vision capabilities, combined with Fast Forward’s...
14  décembre     17h55
Speed Trap
Kaveen Jayamanna    Overview This post is going to showcase the development of a vehicle speed detector using Sparrow Computing’s open source libraries and PyTorch Lightning. The exciting news here is that we could make this speed detector for any traffic feed without prior knowledge about the site no calibration...
22  octobre     21h27
TorchVision Datasets: Getting Started
Ben Cook    The TorchVision datasets subpackage is a convenient utility for accessing well known public image and video datasets. You can use these tools to start training new computer vision models very quickly. TorchVision Datasets Example To get started, all you have to do is import one of the Dataset...
21  octobre     14h19
NumPy Any: Understanding np.any()
Ben Cook    The np.any function tests whether any element in a NumPy array evaluates to true: The input can have any shape and the data type does not have to be boolean as long as it’s truthy . If none of the elements evaluate to true, the function returns false: Passing in a ... Read more The post NumPy...
07  octobre     20h52
PyTorch DataLoader Quick Start
Ben Cook    PyTorch comes with powerful data loading capabilities out of the box. But with great power comes great responsibility and that makes data loading in PyTorch a fairly advanced topic. One of the best ways to learn advanced topics is to start with the happy path. Then add complexity when you ... Read...
06  octobre     16h53
How the NumPy append operation works
Ben Cook    Understanding the np.append operation and when you might want to use it. The post How the NumPy append operation works appeared first on Sparrow Computing.