It’s pretty simple to install Docker on Ubuntu.Target machine must have a 64-bit version of Ubuntu installed.Procedure for installing Docker
Author: bsc
C++ | Vector Initialization
Initialize vector from array Initialize from another vector Initialize in constructor Initialize with default values Populate empty vector
Code coverage using gcov/lcov in Linux
In this post, code coverage stats will be generated using gcov/lcov tools of a simple program (main.cpp). This program is
Convert tensorflow pb model to keras h5 model
From Tensorflow Version (2.2), when model is saved using tf.keras.models.save_model, the model will be saved in a folder and not
GPU in Tensorflow 2
If the error is Could not create cudnn handle: CUDNN_STATUS_INTERNAL_ERROR, chances are GPU is not configured properly If the error
Looping in Python3
while while loop in python resembles the tradition C-style loop as follows. This method of looping is NOT very popular