Building Neural Networks with Python Code and Math in Detail — II

By Medium - 2020-12-09

Description

In the first part of our tutorial on neural networks, we explained the basic concepts about neural networks, from the math behind them to implementing neural networks in Python without any hidden…

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.46)
  2. Backend (0.09)
  3. NLP (0.08)

Similar Articles

ResNets — Residual Blocks & Deep Residual Learning

By Medium - 2020-12-02

Deep Learning harnesses the power of Big Data by building deep neural architectures that try to approximate a function f(x) that can map an input, x to its corresponding label, y. The Universal…

10 Deep Learning Terms Explained in Simple English

By datasciencecentral - 2020-12-27

  Deep Learning is a new area of Machine Learning research that has been gaining significant media interest owing to the role it is playing in artificial intel…

Batch Normalization

By DeepAI - 2019-05-17

Batch Normalization is a supervised learning technique that converts selected inputs in a neural network layer into a standard format, called normalizing.

By RStudio AI Blog - 2020-12-22

In forecasting spatially-determined phenomena (the weather, say, or the next frame in a movie), we want to model temporal evolution, ideally using recurrence relations. At the same time, we'd like to ...