Explore >> Select a destination


You are here

afiodorov.github.io
| | blog.evjang.com
2.6 parsecs away

Travel
| | JAX is a great linear algebra + automatic differentiation library for fast experimentation with and teaching machine learning. Here is a li...
| | blog.georgeshakan.com
2.9 parsecs away

Travel
| | Principal Component Analysis (PCA) is a popular technique in machine learning for dimension reduction. It can be derived from Singular Value Decomposition (SVD) which we will discuss in this post. We will cover the math, an example in python, and finally some intuition. The Math SVD asserts that any $latex m \times d$ matrix $latex...
| | matbesancon.xyz
3.3 parsecs away

Travel
| | Learning by doing: detecting fraud on bank notes using Python in 3 steps.
| | blog.otoro.net
24.4 parsecs away

Travel
| [AI summary] This article describes a project that combines genetic algorithms, NEAT (NeuroEvolution of Augmenting Topologies), and backpropagation to evolve neural networks for classification tasks. The key components include: 1) Using NEAT to evolve neural networks with various activation functions, 2) Applying backpropagation to optimize the weights of these networks, and 3) Visualizing the results of the evolved networks on different datasets (e.g., XOR, two circles, spiral). The project also includes a web-based demo where users can interact with the system, adjust parameters, and observe the evolution process. The author explores how the genetic algorithm can discover useful features (like squaring inputs) without human intervention, and discusses the ...