Spaces:
Sleeping
Sleeping
aishani-s20 commited on
Commit ·
a404079
1
Parent(s): 5dba282
modified .yaml
Browse files- openenv.yaml +4 -4
openenv.yaml
CHANGED
|
@@ -1,22 +1,22 @@
|
|
| 1 |
name: "quantum_circuit_optimizer"
|
| 2 |
version: "0.1.0"
|
| 3 |
description: "An OpenEnv environment for optimizing multi-qubit quantum circuits using RL/LLM agents."
|
| 4 |
-
entrypoint: "
|
| 5 |
tasks:
|
| 6 |
- id: "easy"
|
| 7 |
name: "Easy Circuit Optimization"
|
| 8 |
description: "2 qubits, single-qubit gates only."
|
| 9 |
difficulty: "easy"
|
| 10 |
-
grader: "
|
| 11 |
|
| 12 |
- id: "medium"
|
| 13 |
name: "Medium Circuit Optimization"
|
| 14 |
description: "4 qubits with basic CNOT/SWAP entanglement."
|
| 15 |
difficulty: "medium"
|
| 16 |
-
grader: "
|
| 17 |
|
| 18 |
- id: "hard"
|
| 19 |
name: "Hard Circuit Optimization"
|
| 20 |
description: "6 qubits with deep entanglement and complex blockades."
|
| 21 |
difficulty: "hard"
|
| 22 |
-
grader: "
|
|
|
|
| 1 |
name: "quantum_circuit_optimizer"
|
| 2 |
version: "0.1.0"
|
| 3 |
description: "An OpenEnv environment for optimizing multi-qubit quantum circuits using RL/LLM agents."
|
| 4 |
+
entrypoint: "server.quantum_openenv_env_environment:QuantumCircuitOptimizationEnvironment"
|
| 5 |
tasks:
|
| 6 |
- id: "easy"
|
| 7 |
name: "Easy Circuit Optimization"
|
| 8 |
description: "2 qubits, single-qubit gates only."
|
| 9 |
difficulty: "easy"
|
| 10 |
+
grader: "server.quantum_openenv_env_environment:grade_easy"
|
| 11 |
|
| 12 |
- id: "medium"
|
| 13 |
name: "Medium Circuit Optimization"
|
| 14 |
description: "4 qubits with basic CNOT/SWAP entanglement."
|
| 15 |
difficulty: "medium"
|
| 16 |
+
grader: "server.quantum_openenv_env_environment:grade_medium"
|
| 17 |
|
| 18 |
- id: "hard"
|
| 19 |
name: "Hard Circuit Optimization"
|
| 20 |
description: "6 qubits with deep entanglement and complex blockades."
|
| 21 |
difficulty: "hard"
|
| 22 |
+
grader: "server.quantum_openenv_env_environment:grade_hard"
|