diff --git a/setup.py b/setup.py index aae81d7b..df9bb8c5 100644 --- a/setup.py +++ b/setup.py @@ -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', diff --git a/tutorial.ipynb b/tutorial.ipynb index 10a38c68..311f8d53 100644 --- a/tutorial.ipynb +++ b/tutorial.ipynb @@ -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", @@ -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": {