fbpx
6 Trending Python Machine Learning Packages on PyPI
As the most popular programming language for data science, Python packages, frameworks, and libraries are pulled by the millions each month. Month-to-month, Python packages reflect growing trends in the field of data science; as NLP is talked about more often, so will we see more packages... Read more
Introduction to PyTorch
Recently, Microsoft and PyTorch announced a “PyTorch Fundamentals” tutorial, which you can find on Microsoft’s site and on PyTorch’s site. The code in this post is based on the code appearing in that tutorial, and forms the foundation for a series of other posts, where I’ll explore other... Read more
Optimizing PyTorch Performance: Batch Size with PyTorch Profiler
This tutorial demonstrates a few features of  PyTorch Profiler that have been released in v1.9. PyTorch. Profiler is a set of tools that allow you to measure the training performance and resource consumption of your PyTorch model. This tool will help you diagnose and fix machine learning performance issues regardless of whether you are working on one or... Read more
Ten Trending Data Science Tools in 2021
The fields of data science and artificial intelligence see constant growth. As more companies and industries find value in automation, analytics, and insight discovery, there comes a need for the development of new tools, frameworks, and libraries to meet increased demand. There are some tools that... Read more
Implementing Content-Based Image Retrieval with Siamese Networks in PyTorch
Image retrieval is the task of finding images related to a given query. With content-based image retrieval, we refer to the task of finding images containing some attributes which are not in the image metadata, but present in its visual content. In this post we: –... Read more
Autograd is PyTorch’s automatic differentiation package. Thanks to it, we don’t need to worry about partial derivatives, chain rule, or anything like it. To illustrate how it works, let’s say we’re trying to fit a simple linear regression with a single feature x, using Mean Squared... Read more
10 Notable Frameworks for NLP
Natural Language Processing hit its big stride back in 2017 with the introduction of Transformer Architecture from Google. State of the art approaches helped bridge the gap between humans and machines and helped us build bots capable of using human language undetected. It’s an exciting time.... Read more
Major Updates to the Most Popular Data Science Frameworks in 2019
This time last year we brought you a detailed report of all the important updates for popular data science (machine learning and deep learning) frameworks throughout 2018. The developers of these frameworks continue to innovate at an accelerated rate. Data scientists demand more powerful tools in... Read more
Top 7 Machine Learning Frameworks for 2020
Machine learning is a nightmare without some kind of structure. You can’t build everything from scratch, especially if you’re in a business setting. Even if you want to (and if you do, comment here and tell us about it!), you don’t have time in most cases.... Read more
Deep Learning Frameworks You Need to Know in 2020
Deep learning networks have a mind-boggling ability to learn, so training these models requires massive computing power and intense amounts of data. You’ll need a framework to make that development easier. Deep learning requires massive processing power and lots of data. Because it uses unstructured, often non-text... Read more