TensorFlow 2 provides the CSVLogger callback which allows to write epochs results during training to a CSV file. After that file can be opened and results can be interpretated by...
TensorFlow 2 allows to count the number of trainable and non-trainable parameters of the model. It can be useful if we want to improve the model structure, reduce the size...
Mean absolute percentage error (MAPE) is a loss function that is used to solve regression problems. MAPE is calculated as the average of the absolute percentage differences between the actual...
Kaggle Dogs vs. Cats is a dataset that contains 25000 images of cats and dogs. Images are different sizes, so need them to reprocess. There are 12500 images of dogs...
Mean squared logarithmic error (MSLE) is a loss function that is used to solve regression problems. MSLE is calculated as the average of the squared differences between the log-transformed actual...
Binary classification is the process that is used to classify data points into one of two classes. For example, whether a customer will buy a product or not, emails are...
Degrees and radians are two commonly used units of measurement for angles. Programming languages provides methods how to convert radians to degrees. A table includes a links to posts with...
Degrees and radians are two commonly used units of measurement for angles. Programming languages provides methods how to convert degrees to radians. A table includes a links to posts with...
A octal number system is a numeral system with 8 as the base. It uses 8 digits: the numbers from 0 to 7. Programming languages provides various methods how to...
A octal number system is a numeral system with 8 as the base. It uses 8 digits: the numbers from 0 to 7. Programming languages provides various methods how to...