diff --git a/README.md b/README.md index e39bbb2..5f4687b 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ To install specific packages, you can use the following commands: ```bash # From PyPI pip install a2perf[web_navigation] -pip install a2perf[circuit_training] +pip install a2perf[circuit_training] pip install a2perf[quadruped_locomotion] # From source diff --git a/docs/_static/img/gminiwob_scene.png b/docs/_static/img/gminiwob_scene.png new file mode 100644 index 0000000..d509d85 Binary files /dev/null and b/docs/_static/img/gminiwob_scene.png differ diff --git a/docs/content/circuit_training/CircuitTraining-Ariane-v0.ipynb b/docs/content/circuit_training/CircuitTraining-Ariane-v0.ipynb deleted file mode 100644 index ffe26ab..0000000 --- a/docs/content/circuit_training/CircuitTraining-Ariane-v0.ipynb +++ /dev/null @@ -1,217 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": "# Ariane" - }, - { - "metadata": { - "ExecuteTime": { - "end_time": "2024-08-15T18:13:44.733493Z", - "start_time": "2024-08-15T18:13:39.500066Z" - } - }, - "cell_type": "code", - "source": [ - "from a2perf.domains import circuit_training\n", - "import gymnasium as gym\n", - "\n", - "env = gym.make('CircuitTraining-Ariane-v0')" - ], - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "2024-08-15 14:13:40.063385: I tensorflow/core/util/port.cc:113] oneDNN custom operations are on. You may see slightly different numerical results due to floating-point round-off errors from different computation orders. To turn them off, set the environment variable `TF_ENABLE_ONEDNN_OPTS=0`.\n", - "2024-08-15 14:13:40.197600: E external/local_xla/xla/stream_executor/cuda/cuda_dnn.cc:9261] Unable to register cuDNN factory: Attempting to register factory for plugin cuDNN when one has already been registered\n", - "2024-08-15 14:13:40.197668: E external/local_xla/xla/stream_executor/cuda/cuda_fft.cc:607] Unable to register cuFFT factory: Attempting to register factory for plugin cuFFT when one has already been registered\n", - "2024-08-15 14:13:40.218491: E external/local_xla/xla/stream_executor/cuda/cuda_blas.cc:1515] Unable to register cuBLAS factory: Attempting to register factory for plugin cuBLAS when one has already been registered\n", - "2024-08-15 14:13:40.269410: I tensorflow/core/platform/cpu_feature_guard.cc:182] This TensorFlow binary is optimized to use available CPU instructions in performance-critical operations.\n", - "To enable the following instructions: AVX2 AVX_VNNI FMA, in other operations, rebuild TensorFlow with the appropriate compiler flags.\n", - "2024-08-15 14:13:40.963834: W tensorflow/compiler/tf2tensorrt/utils/py_utils.cc:38] TF-TRT Warning: Could not find TensorRT\n" - ] - } - ], - "execution_count": 1 - }, - { - "metadata": {}, - "cell_type": "markdown", - "source": [ - "
Action Space | \n", - "Discrete(16384) | \n", - "
---|---|
Observation Space | \n", - "\n", - " Dict('current_node': Box(0, 3499, (1,), int32), 'fake_net_heatmap': Box(0.0, 1.0, (16384,), float32), 'is_node_placed': Box(0, 1, (3500,), int32), 'locations_x': Box(0.0, 1.0, (3500,), float32), 'locations_y': Box(0.0, 1.0, (3500,), float32), 'mask': Box(0, 1, (16384,), int32), 'netlist_index': Box(0, 0, (1,), int32))\n", - " | \n", - "
Reward Range | \n", - "(0, 1) | \n", - "
Creation | \n", - "gym.make(\"CircuitTraining-Ariane-v0\") | \n", - "
Action Space | \n", - "Discrete(16384) | \n", - "
---|---|
Observation Space | \n", - "\n", - " Dict('current_node': Box(0, 3499, (1,), int32), 'fake_net_heatmap': Box(0.0, 1.0, (16384,), float32), 'is_node_placed': Box(0, 1, (3500,), int32), 'locations_x': Box(0.0, 1.0, (3500,), float32), 'locations_y': Box(0.0, 1.0, (3500,), float32), 'mask': Box(0, 1, (16384,), int32), 'netlist_index': Box(0, 0, (1,), int32))\n", - " | \n", - "
Creation | \n", - "gym.make(\"CircuitTraining-ToyMacro-v0\") | \n", - "