Jainil Prajapatidoreturn.hashnode.dev·Nov 8, 2024The Worst Smartphone Processors: A Deep Dive into UnderperformersIntroduction Smartphone processors are the heart and soul of our mobile devices, driving everything from simple texting to high-definition gaming and multitasking. While many processors deliver exceptional performance and efficiency, some have falle...Exynos
Akhil Soniakhilworld.hashnode.dev·Jun 29, 2024PyTorch TensorsA cell is fundamental unit of life. In the similar way, a pytorch tensor is a fundamental building block of pytorch. Tensors are a specialized data structure that are very similar to arrays and matrices. In PyTorch, we use tensors to encode the input...pytorch
Gyanendra Vardhangyanendra.hashnode.dev·Feb 13, 2024Understanding Tensors in TensorFlow: The Building Blocks of Higher-Dimensional DataTensorFlow, as the name suggests, revolves around the concept of tensors. Tensors serve as the fundamental building blocks upon which TensorFlow, one of the most powerful and widely-used deep learning frameworks, is built. But what exactly is a tenso...TensorFlow
Matt Popovicmatt0733.hashnode.dev·May 17, 2023The Power of Google Tensor TPU in Machine LearningMachine learning has revolutionized the way we look at data. With the advent of sophisticated algorithms and incredibly fast hardware, it is now possible to train models that can predict and classify data with remarkable accuracy. However, training t...71 readsMachine Learning
Giovanni Giacomettigiogiac.hashnode.dev·Feb 23, 2023Understanding PyTorch gather functionPyTorch is one of the main libraries when it comes to Deep Learning in Python. Tensors, the key data structure of the framework, can be manipulated in multiple ways. One of the available methods is the gather function. The following is the signature ...1.9K readsPython
Manish ShivanandhanforfreeCodeCampfreecodecamp.org·Feb 14, 2023How to Use TensorFlow for Deep Learning – Basics for BeginnersTensorFlow is a library that helps engineers build and train deep learning models. It provides all the tools we need to create neural networks. We can use TensorFlow to train simple to complex neural networks using large sets of data. TensorFlow is u...Deep Learning
Zakhar Koganposts.teleogenic.com·Jan 14, 2023Moore's perspectiveSo I've stumbled upon an article mentioning that the most powerful supercomputer in 2010 was Tianhe-1 with a peak performance of 2.5 petaFLOPS. Fast forward, it's 2023. We've got Graphcore IPUs available for free (ref link so I'll use it for paid pl...85 readsCloud Computing
freeCodeCampforfreeCodeCampfreecodecamp.org·Dec 3, 2020PyTorch Tensor Methods – How to Create Tensors in PythonBy Srijan PyTorch is an open-source Python-based library. It provides high flexibility and speed while building, training, and deploying deep learning models. At its core, PyTorch involves operations involving tensors. A tensor is a number, vector, m...Python
freeCodeCampforfreeCodeCampfreecodecamp.org·Jul 16, 2018How to get started debugging TensorFlowBy Daniel Deutsch Table of Contents What this is about The reference code base 1. Fetch and print values within Session.run 2. Use the tf.Print operation 3. Use Tensorboard visualization for monitoring a) clean the graph with proper names and name s...debugging