Skip to content

Commit

Permalink
Remove empty cells, temporarily exclude dog domain due to VFS-related…
Browse files Browse the repository at this point in the history
… error

PiperOrigin-RevId: 318049052
Change-Id: I1b414170b8ef167ed4e8e14169b651995267ddac
  • Loading branch information
alimuldal authored and copybara-github committed Jun 24, 2020
1 parent 60f02a6 commit bc93d88
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 25 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def is_excluded(s):

setup(
name='dm_control',
version='0.0.318037100',
version='0.0.318049052',
description='Continuous control environments and MuJoCo Python bindings.',
author='DeepMind',
license='Apache License, Version 2.0',
Expand Down
28 changes: 4 additions & 24 deletions tutorial.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -1631,7 +1631,10 @@
"outputs": [],
"source": [
"#@title Visualizing an initial state of one task per domain in the Control Suite\n",
"domains_tasks = {domain: task for domain, task in suite.ALL_TASKS}\n",
"# TODO(b/159786444): Fix error due to VFS size limit for dog domain.\n",
"domains_tasks = {\n",
" domain: task for domain, task in suite.ALL_TASKS if domain != 'dog'\n",
"}\n",
"random_state = np.random.RandomState(42)\n",
"num_domains = len(domains_tasks)\n",
"n_col = num_domains // int(np.sqrt(num_domains))\n",
Expand Down Expand Up @@ -1791,29 +1794,6 @@
"PIL.Image.fromarray(np.hstack(pixels))"
]
},
{
"cell_type": "markdown",
"metadata": {
"colab_type": "text",
"id": "2soVOubYDr9p"
},
"source": [
"## Maze navigation and foraging"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"colab": {},
"colab_type": "code",
"id": "A-UgMDUnDtRP"
},
"outputs": [],
"source": [
"#@title Add code sample here"
]
},
{
"cell_type": "markdown",
"metadata": {
Expand Down

0 comments on commit bc93d88

Please sign in to comment.