Ubuntu nu18 installing tensorrt7 2.3+cuda11. 1+cudnn8. 0+opencv4. four
Download and install TensorRT-7.2.2.3
Download tensorrt-7.2.2.3 on the official website Ubuntu-18.04. x86_ 64-gnu. cuda-11.1. cudnn8. 0.tar. gz
tar xzvf TensorRT-7.2.2.3.Ubuntu-18.04.x86_64-gnu.cuda-11.1.cudnn8.0.tar.gz
Configure environment variables after decompression:
sudo vim ~/.bashrc
After entering, add environment variables at th ...
Posted by mabwi on Wed, 09 Feb 2022 11:25:41 +0100
pytorch learning - datasets & dataloaders
The code for processing data samples may become chaotic and difficult to maintain; We ideally want our Dataset code to be separated from our model training code for better readability and modularity. PyTorch provides two data primitives: torch utils. data. DataLoader and torch utils. data. Datasets, which allow you to use preloaded datasets ...
Posted by mark_h_uk on Thu, 30 Dec 2021 02:33:01 +0100
pytorch learning - Constructing Neural Networks
Neural networks consist of layers / modules that perform operations on data. torch.nn Namespace provides all the building blocks needed to build your own neural network. Each module in PyTorch is nn.Module Subclass of. Neural network is a module itself, which is composed of other modules (layers). This nested structure allows easy construct ...
Posted by dm404 on Wed, 22 Dec 2021 05:12:26 +0100