Using ResNet for image classification.

By Medium - 2020-07-03

Description

This project was made as part of Deep Learning with PyTorch: Zero to GANs course.

Summary

  • Orthogonal Matrix What is an Orthogonal Matrix?
  • In terms of geometry, orthogonal means that two vectors are perpendicular to each other.
  • Additionally you may select any two rows and find that the same property holds, as the transpose of an orthogonal matrix is itself an orthogonal matrix.
  • Because the transpose preserves the determinant, it is easy to show that the determinant of an orthogonal matrix must be equal to 1 or -1.

 

Topics

  1. Machine_Learning (0.33)
  2. Backend (0.12)
  3. NLP (0.11)

Similar Articles

Semantic hand segmentation using Pytorch

By Medium - 2020-12-02

Semantic segmentation is the task of predicting the class of each pixel in an image. This problem is more difficult than object detection…

K-fold Cross Validation with PyTorch

By MachineCurve - 2021-02-02

Explanations and code examples showing you how to use K-fold Cross Validation for Machine Learning model evaluation/testing with PyTorch.