Skip to content

Commit bc93d88

Browse files
alimuldalcopybara-github
authored andcommitted
Remove empty cells, temporarily exclude dog domain due to VFS-related error
PiperOrigin-RevId: 318049052 Change-Id: I1b414170b8ef167ed4e8e14169b651995267ddac
1 parent 60f02a6 commit bc93d88

2 files changed

Lines changed: 5 additions & 25 deletions

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def is_excluded(s):
177177

178178
setup(
179179
name='dm_control',
180-
version='0.0.318037100',
180+
version='0.0.318049052',
181181
description='Continuous control environments and MuJoCo Python bindings.',
182182
author='DeepMind',
183183
license='Apache License, Version 2.0',

tutorial.ipynb

Lines changed: 4 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1631,7 +1631,10 @@
16311631
"outputs": [],
16321632
"source": [
16331633
"#@title Visualizing an initial state of one task per domain in the Control Suite\n",
1634-
"domains_tasks = {domain: task for domain, task in suite.ALL_TASKS}\n",
1634+
"# TODO(b/159786444): Fix error due to VFS size limit for dog domain.\n",
1635+
"domains_tasks = {\n",
1636+
" domain: task for domain, task in suite.ALL_TASKS if domain != 'dog'\n",
1637+
"}\n",
16351638
"random_state = np.random.RandomState(42)\n",
16361639
"num_domains = len(domains_tasks)\n",
16371640
"n_col = num_domains // int(np.sqrt(num_domains))\n",
@@ -1791,29 +1794,6 @@
17911794
"PIL.Image.fromarray(np.hstack(pixels))"
17921795
]
17931796
},
1794-
{
1795-
"cell_type": "markdown",
1796-
"metadata": {
1797-
"colab_type": "text",
1798-
"id": "2soVOubYDr9p"
1799-
},
1800-
"source": [
1801-
"## Maze navigation and foraging"
1802-
]
1803-
},
1804-
{
1805-
"cell_type": "code",
1806-
"execution_count": null,
1807-
"metadata": {
1808-
"colab": {},
1809-
"colab_type": "code",
1810-
"id": "A-UgMDUnDtRP"
1811-
},
1812-
"outputs": [],
1813-
"source": [
1814-
"#@title Add code sample here"
1815-
]
1816-
},
18171797
{
18181798
"cell_type": "markdown",
18191799
"metadata": {

0 commit comments

Comments
 (0)