Category: Advanced

8 Queens
Posted in Advanced Artificial Intelligence

Eight Queens Puzzle – Six Lines

‘Eight Queens Puzzle’ is a classic chess puzzle, where you are challenged to place 8 queens, of the same colour, onto… read more Eight Queens Puzzle – Six Lines

Posted in Advanced Artificial Intelligence

A Neural Network in Python, Part 2: activation functions, bias, SGD, etc.

This is Part 2 of A Neural Network in Python, which was a very simple neural network to learn the… read more A Neural Network in Python, Part 2: activation functions, bias, SGD, etc.

Posted in Advanced Artificial Intelligence

A Neural Network in Python, Part 1: sigmoid function, gradient descent & backpropagation

In this article, I’ll show you a toy example to learn the XOR logical function. My objective is to make it… read more A Neural Network in Python, Part 1: sigmoid function, gradient descent & backpropagation

easy ai
Posted in Advanced Artificial Intelligence

Easy AI with Python 3

Survey several basic AI techniques implemented with short, open-source Python code recipes. Appropriate for educators and programmers who want to… read more Easy AI with Python 3

Posted in Advanced Fractals

Fast Mandelbrot Set by QuadTree

Most Mandelbrot Set programs proceed along the display area, pixel by pixel horizontally, row by row from top to bottom…. read more Fast Mandelbrot Set by QuadTree