Spaces:
Sleeping
Sleeping
env setup
Browse files- .python-version +1 -0
- README.md +15 -1
- environment.yml +8 -0
- pyproject.toml +7 -0
.python-version
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
3.12
|
README.md
CHANGED
@@ -1 +1,15 @@
|
|
1 |
-
# Rubik-Tensor
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Rubik-Tensor
|
2 |
+
|
3 |
+
|
4 |
+
## Setup
|
5 |
+
|
6 |
+
|
7 |
+
## Usage
|
8 |
+
|
9 |
+
|
10 |
+
## Roadmap
|
11 |
+
|
12 |
+
- Fully tensorized Rubik Cube model (states, actions) running on cuda.
|
13 |
+
- Base solvers following rule-based policies.
|
14 |
+
- Visualization interface.
|
15 |
+
- Movement explorer: Explore result of an input sequences of moves, find sequences of moves satisfying input constrains.
|
environment.yml
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
name: rubiktensor
|
2 |
+
channels:
|
3 |
+
- defaults
|
4 |
+
dependencies:
|
5 |
+
- python=3.12.11
|
6 |
+
- pip=25.1
|
7 |
+
- pip:
|
8 |
+
- uv
|
pyproject.toml
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
name = "rubik-tensor"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = "Add your description here"
|
5 |
+
readme = "README.md"
|
6 |
+
requires-python = ">=3.12"
|
7 |
+
dependencies = []
|