fbpx

Browsing Category: Python

Machine Learning Python Tensorflow Keras

Comparing Pre-trained ResNet and MobileNet

Resnet and Mobilenet are the popular pre-trained models for computer visions. Renet is more accurate, while Mobilenet is much smaller in size. In this …

Machine Learning Python Tensorflow Keras

Network Compression with Depthwise Separable Convolution

One way to achieve network compression is using depthwise separable convolution. Depthwise separable convolution is used in many pre-trained neural networks such as MobileNet, …

Python

New Features in Python 3.8 and 3.9

Python 3.8 and 3.9 comes with some useful features. Some are listed here Merging DictionariesThe old style of merging Python dictionaries is using ** …