bitcoin
bitcoin

$94622.391086 USD

2.93%

ethereum
ethereum

$3262.449077 USD

2.12%

tether
tether

$1.000059 USD

-0.03%

xrp
xrp

$2.337226 USD

3.28%

bnb
bnb

$691.820136 USD

1.25%

solana
solana

$187.465982 USD

1.75%

dogecoin
dogecoin

$0.332454 USD

4.52%

usd-coin
usd-coin

$1.000112 USD

-0.01%

cardano
cardano

$0.927720 USD

3.34%

tron
tron

$0.244018 USD

2.33%

sui
sui

$5.174449 USD

10.22%

avalanche
avalanche

$36.607157 USD

1.86%

toncoin
toncoin

$5.363452 USD

4.04%

chainlink
chainlink

$20.276880 USD

3.91%

shiba-inu
shiba-inu

$0.000022 USD

2.88%

Cryptocurrency News Articles

Solving a Rubik's Cube with Supervised Learning — Intuitively and Exhaustively Explained

Jan 10, 2025 at 11:05 pm

A popular toy in a brave new world

Solving a Rubik's Cube with Supervised Learning — Intuitively and Exhaustively Explained

Solving a Rubik's Cube with Deep Learning

A step-by-step guide to building a model that can solve a Rubik's Cube

Daniel Warfield

Follow

Towards Data Science

--

Share

In this article we’ll build a deep learning model that can solve a Rubik's Cube. We’ll define our own dataset, make a transformer style model that can learn based on that dataset, and use that model to solve new and randomly shuffled Rubik's Cubes.

In tackling this problem we’ll discuss practical problems which come up frequently in data science, and the techniques data scientists use to solve those problems.

Who is this useful for? Anyone interested in achieving mastery of modern AI.

How advanced is this post? This post covers advanced modeling strategies intuitively, and is appropriate for readers of all levels.

Pre-requisites: There are no prerequisites for this article, though an understanding of transformer style models may be useful for some of the later, code heavy sections.

References: A link to the code and supporting resources can be found in the reference section at the end of this article.

Defining a Rubik's Cube as a Modeling Problem

As you likely know, the Rubik's Cube is a geometric game featuring a 3x3x3 cube with different colored squares on each of its six faces. The goal of the game is to manipulate the cube in order to return it to its original state, with each face displaying a single, uniform color.

We can define a Rubik's Cube in terms of a sequence of moves. Each move corresponds to a 90-degree rotation of one of the cube's six faces. We can represent a move using a single character, where F corresponds to a clockwise rotation of the front face, B corresponds to a clockwise rotation of the back face, L corresponds to a clockwise rotation of the left face, R corresponds to a clockwise rotation of the right face, U corresponds to a clockwise rotation of the upper face, and D corresponds to a clockwise rotation of the lower face.

For example, the sequence of moves "FRUR'D'" corresponds to a clockwise rotation of the front face, followed by a clockwise rotation of the right face, followed by a counter-clockwise rotation of the upper face, and finally followed by a counter-clockwise rotation of the lower face.

We can use this notation to define any possible state of a Rubik's Cube. For example, the starting state of a Rubik's Cube can be represented by the following sequence of moves:

```

UUUUUUUUURRRRRRRRRFFFFFFFFFDDDDDDDDDLLLLLLLLLLBBBBBBBBB

```

This sequence of moves corresponds to the following sequence of rotations:

```

U -> R -> U -> R -> U -> R -> U -> R -> U -> U -> U -> U -> U -> U -> U

```

We can apply this sequence of rotations to a scrambled Rubik's Cube in order to return it to its starting state.

We can now define the modeling problem as follows: given a scrambled Rubik's Cube, we want to predict the sequence of moves that will return the cube to its starting state.

Disclaimer:info@kdj.com

The information provided is not trading advice. kdj.com does not assume any responsibility for any investments made based on the information provided in this article. Cryptocurrencies are highly volatile and it is highly recommended that you invest with caution after thorough research!

If you believe that the content used on this website infringes your copyright, please contact us immediately (info@kdj.com) and we will delete it promptly.

Other articles published on Jan 11, 2025