NVIDIA is the second-best place to work in the U.S. according to a ranking released today by Glassdoor. The site’s Best Places to Work in 2021 list rates the 100 best U.S. companies with more than 1,000 employees, based on how their own employees rate career opportunities, company culture and senior management. The survey’s top Read article >
Version control is used to keep track of modifications made in a
software code. Similarly, when building machine learning (ML)
systems, it is essential to track things, such as the datasets used
to train the model, the hyperparameters and pipeline used, the
version of tensorflow used to create the model, and many more.
ML artifacts’ history and lineage are very complicated than a
simple, linear log. Git can be used to track the code to one
extent, but we need something to track your models, datasets, and
more. The complexity of ML code and artifacts like models,
datasets, and much more requires a similar approach.
Cooking on video calls with friends. Getting to the end of Netflix’s endless content well. Going 10 months without a haircut. Over the past year, we all found different ways to keep ourselves occupied. Gaming, however, is a longer-term trend that promises to continue remaking global culture for years to come. Over 2.5 billion gamers Read article >
Bringing more gaming capabilities to millions more gamers, NVIDIA on Tuesday announced more than 70 new laptops will feature GeForce RTX 30 Series Laptop GPUs and unveiled the NVIDIA GeForce RTX 3060 graphics card for desktops. All are powered by the award-winning NVIDIA Ampere GPU architecture, the second generation of RTX with enhanced Ray Tracing Read article >
The latest NVIDIA Studio laptops, powered by new NVIDIA GeForce RTX 30 Series Laptop GPUs, are empowering the next generation of creativity. And they bring a host of updates to change how fast creators work. New models come equipped with up to 16GB of video memory, pixel-accurate displays with 1440p and 4K options, and GPU Read article >
will that new model be already trained? I guess it poses more
global question, does keras.Model() create separate object which
uses those layers vairables you’ve written just to know the
structure, like a Class description or does it actually acts upon
those variables during actions like .fit()?
Kick off 2021 with a listen to the newest episode of RAPIDSFire: the Accelerated Data Science Podcast!
Kick off 2021 with a listen to the newest episode of RAPIDSFire: the Accelerated Data Science Podcast!
Host Paul Mahler sits down with AI Infrastructure Manager at NVIDIA, Bartley Richardson, and Senior Cybersecurity Data Scientist at NVIDIA, Rachel Allen.
In this episode, they discuss the intersection of Data Science and Cybersecurity, specifically, how NVIDIA GPUs are helping solve problems that have plagued experts in the cybersecurity space for years.
Log files generated by various systems in a company’s infrastructure can leave traces of attacks a data scientist can turn into actionable insight. The problem, historically, has been that logs do not conform to any standard format and the relevant information can be difficult to extract.
Traditionally, this has been done through regular expressions. Bartley and Rachel discuss how their extension of the BERT model, cyBERT, turns logs into usable data faster and more efficiently than was previously possible.
This podcast is a great way for anyone in the data science, NLP, or cybersecurity spaces to begin the work year inspired and engaged. Listen to the latest episode here.
Viet Anh Nguyen was awarded the Jetson Project of the Month for his Advanced Driver Assistance System (ADAS). This prototype, which runs on a NVIDIA Jetson Nano, aids a driver with collision, lane departure and speeding warnings.
Viet Anh Nguyen was awarded the Jetson Project of the Month for his Advanced Driver Assistance System (ADAS). This prototype, which runs on a NVIDIA Jetson Nano, aids a driver with collision, lane departure and speeding warnings.
Viet Anh’s goal is to serve the low-end and older car models with his solution. He chose Jetson Nano for its affordability and its capability to run deep learning models. In addition, his prototype has an LCD screen for the user to interact and a speaker to convey warning messages. The core AI functionality is implemented in two modules – “Object Detection” module for collision and speeding warnings, and “Lane Detection” module for lane departure warnings.
Components of object detection module
CenterNet, trained on Berkeley DeepDrive Dataset, is used for the main object detection. Viet Anh evaluated the model on Resnet-18 and MobileNet backbones. He chose the CenterNet model with ResNet-18 backbone, optimized with NVIDIA TensorRT, for its balance between speed and accuracy on Jetson Nano with an inference time of 62 ms per frame. For speeding warnings, the output of the object detection model is fed to a ResNet-18 network, which then identifies the traffic signs.
In the ‘Lane Detection’ module, a modified U-Net model was trained using the Mapillary Vista Dataset. After optimizing the model using TensorRT, he was able to achieve 14FPS on Jetson Nano for a 384×384 image with FP16 precision. In the below demonstration, the prototype can be seen working on pre-recorded videos and in the CARLA simulator.
Prototype solutions such as ‘ADAS on Jetson Nano’ enable developers to build comprehensive yet low-cost solutions for the ADAS aftermarket category.