File size: 69,084 Bytes
fcbd215 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 | {
"cells": [
{
"metadata": {
"id": "MpkYHwCqk7W-"
},
"cell_type": "markdown",
"source": [
"# **`dm_control` tutorial**\n",
"\n",
"[](https://colab.research.google.com/github/google-deepmind/dm_control/blob/main/tutorial.ipynb)\n",
"\n",
"\n",
"\n",
"\n",
"\n",
"\n"
]
},
{
"metadata": {
"id": "_UbO9uhtBSX5"
},
"cell_type": "markdown",
"source": [
"> <p><small><small>Copyright 2020 The dm_control Authors.</small></p>\n",
"> <p><small><small>Licensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License. You may obtain a copy of the License at <a href=\"http://www.apache.org/licenses/LICENSE-2.0\">http://www.apache.org/licenses/LICENSE-2.0</a>.</small></small></p>\n",
"> <p><small><small>Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.</small></small></p>"
]
},
{
"metadata": {
"id": "aThGKGp0cD76"
},
"cell_type": "markdown",
"source": [
"This notebook provides an overview tutorial of DeepMind's `dm_control` package, hosted at the [google-deepmind/dm_control](https://github.com/google-deepmind/dm_control) repository on GitHub.\n",
"\n",
"It is adjunct to this [tech report](http://arxiv.org/abs/2006.12983).\n",
"\n",
"**A Colab runtime with GPU acceleration is required.** If you're using a CPU-only runtime, you can switch using the menu \"Runtime > Change runtime type\"."
]
},
{
"metadata": {
"id": "YkBQUjm6gbGF"
},
"cell_type": "markdown",
"source": [
"<!-- Internal installation instructions. -->"
]
},
{
"metadata": {
"id": "YvyGCsgSCxHQ"
},
"cell_type": "markdown",
"source": [
"### Installing `dm_control` on Colab"
]
},
{
"metadata": {
"id": "IbZxYDxzoz5R"
},
"cell_type": "code",
"source": [
"#@title Run to install MuJoCo and `dm_control`\n",
"import distutils.util\n",
"import os\n",
"import subprocess\n",
"if subprocess.run('nvidia-smi').returncode:\n",
" raise RuntimeError(\n",
" 'Cannot communicate with GPU. '\n",
" 'Make sure you are using a GPU Colab runtime. '\n",
" 'Go to the Runtime menu and select Choose runtime type.')\n",
"\n",
"# Add an ICD config so that glvnd can pick up the Nvidia EGL driver.\n",
"# This is usually installed as part of an Nvidia driver package, but the Colab\n",
"# kernel doesn't install its driver via APT, and as a result the ICD is missing.\n",
"# (https://github.com/NVIDIA/libglvnd/blob/master/src/EGL/icd_enumeration.md)\n",
"NVIDIA_ICD_CONFIG_PATH = '/usr/share/glvnd/egl_vendor.d/10_nvidia.json'\n",
"if not os.path.exists(NVIDIA_ICD_CONFIG_PATH):\n",
" with open(NVIDIA_ICD_CONFIG_PATH, 'w') as f:\n",
" f.write(\"\"\"{\n",
" \"file_format_version\" : \"1.0.0\",\n",
" \"ICD\" : {\n",
" \"library_path\" : \"libEGL_nvidia.so.0\"\n",
" }\n",
"}\n",
"\"\"\")\n",
"\n",
"print('Installing dm_control...')\n",
"!pip install -q dm_control>=1.0.42\n",
"\n",
"# Configure dm_control to use the EGL rendering backend (requires GPU)\n",
"%env MUJOCO_GL=egl\n",
"\n",
"print('Checking that the dm_control installation succeeded...')\n",
"try:\n",
" from dm_control import suite\n",
" env = suite.load('cartpole', 'swingup')\n",
" pixels = env.physics.render()\n",
"except Exception as e:\n",
" raise e from RuntimeError(\n",
" 'Something went wrong during installation. Check the shell output above '\n",
" 'for more information.\\n'\n",
" 'If using a hosted Colab runtime, make sure you enable GPU acceleration '\n",
" 'by going to the Runtime menu and selecting \"Choose runtime type\".')\n",
"else:\n",
" del pixels, suite\n",
"\n",
"!echo Installed dm_control $(pip show dm_control | grep -Po \"(?<=Version: ).+\")"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "wtDN43hIJh2C"
},
"cell_type": "markdown",
"source": [
"# Imports\n",
"\n",
"Run both of these cells:"
]
},
{
"metadata": {
"cellView": "form",
"id": "T5f4w3Kq2X14"
},
"cell_type": "code",
"source": [
"#@title All `dm_control` imports required for this tutorial\n",
"\n",
"# The basic mujoco wrapper.\n",
"from dm_control import mujoco\n",
"\n",
"# Access to enums and MuJoCo library functions.\n",
"from dm_control.mujoco.wrapper.mjbindings import enums\n",
"from dm_control.mujoco.wrapper.mjbindings import mjlib\n",
"\n",
"# PyMJCF\n",
"from dm_control import mjcf\n",
"\n",
"# Composer high level imports\n",
"from dm_control import composer\n",
"from dm_control.composer.observation import observable\n",
"from dm_control.composer import variation\n",
"\n",
"# Imports for Composer tutorial example\n",
"from dm_control.composer.variation import distributions\n",
"from dm_control.composer.variation import noises\n",
"from dm_control.locomotion.arenas import floors\n",
"\n",
"# Control Suite\n",
"from dm_control import suite\n",
"\n",
"# Run through corridor example\n",
"from dm_control.locomotion.walkers import cmu_humanoid\n",
"from dm_control.locomotion.arenas import corridors as corridor_arenas\n",
"from dm_control.locomotion.tasks import corridors as corridor_tasks\n",
"\n",
"# Soccer\n",
"from dm_control.locomotion import soccer\n",
"\n",
"# Manipulation\n",
"from dm_control import manipulation"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "gKc1FNhKiVJX"
},
"cell_type": "code",
"source": [
"#@title Other imports and helper functions\n",
"\n",
"# General\n",
"import copy\n",
"import os\n",
"import itertools\n",
"from IPython.display import clear_output\n",
"import numpy as np\n",
"\n",
"# Graphics-related\n",
"import matplotlib\n",
"import matplotlib.animation as animation\n",
"import matplotlib.pyplot as plt\n",
"from IPython.display import HTML\n",
"import PIL.Image\n",
"# Internal loading of video libraries.\n",
"\n",
"# Use svg backend for figure rendering\n",
"%config InlineBackend.figure_format = 'svg'\n",
"\n",
"# Font sizes\n",
"SMALL_SIZE = 8\n",
"MEDIUM_SIZE = 10\n",
"BIGGER_SIZE = 12\n",
"plt.rc('font', size=SMALL_SIZE) # controls default text sizes\n",
"plt.rc('axes', titlesize=SMALL_SIZE) # fontsize of the axes title\n",
"plt.rc('axes', labelsize=MEDIUM_SIZE) # fontsize of the x and y labels\n",
"plt.rc('xtick', labelsize=SMALL_SIZE) # fontsize of the tick labels\n",
"plt.rc('ytick', labelsize=SMALL_SIZE) # fontsize of the tick labels\n",
"plt.rc('legend', fontsize=SMALL_SIZE) # legend fontsize\n",
"plt.rc('figure', titlesize=BIGGER_SIZE) # fontsize of the figure title\n",
"\n",
"# Inline video helper function\n",
"if os.environ.get('COLAB_NOTEBOOK_TEST', False):\n",
" # We skip video generation during tests, as it is quite expensive.\n",
" display_video = lambda *args, **kwargs: None\n",
"else:\n",
" def display_video(frames, framerate=30):\n",
" height, width, _ = frames[0].shape\n",
" dpi = 70\n",
" orig_backend = matplotlib.get_backend()\n",
" matplotlib.use('Agg') # Switch to headless 'Agg' to inhibit figure rendering.\n",
" fig, ax = plt.subplots(1, 1, figsize=(width / dpi, height / dpi), dpi=dpi)\n",
" matplotlib.use(orig_backend) # Switch back to the original backend.\n",
" ax.set_axis_off()\n",
" ax.set_aspect('equal')\n",
" ax.set_position([0, 0, 1, 1])\n",
" im = ax.imshow(frames[0])\n",
" def update(frame):\n",
" im.set_data(frame)\n",
" return [im]\n",
" interval = 1000/framerate\n",
" anim = animation.FuncAnimation(fig=fig, func=update, frames=frames,\n",
" interval=interval, blit=True, repeat=False)\n",
" return HTML(anim.to_html5_video())\n",
"\n",
"# Seed numpy's global RNG so that cell outputs are deterministic. We also try to\n",
"# use RandomState instances that are local to a single cell wherever possible.\n",
"np.random.seed(42)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "jZXz9rPYGA-Y"
},
"cell_type": "markdown",
"source": [
"# Model definition, compilation and rendering\n",
"\n"
]
},
{
"metadata": {
"id": "MRBaZsf1d7Gb"
},
"cell_type": "markdown",
"source": [
"We begin by describing some basic concepts of the [MuJoCo](http://mujoco.org/) physics simulation library, but recommend the [official documentation](http://mujoco.org/book/) for details.\n",
"\n",
"Let's define a simple model with two geoms and a light."
]
},
{
"metadata": {
"id": "ZS2utl59ZTsr"
},
"cell_type": "code",
"source": [
"#@title A static model {vertical-output: true}\n",
"\n",
"static_model = \"\"\"\n",
"<mujoco>\n",
" <worldbody>\n",
" <light name=\"top\" pos=\"0 0 1\"/>\n",
" <geom name=\"red_box\" type=\"box\" size=\".2 .2 .2\" rgba=\"1 0 0 1\"/>\n",
" <geom name=\"green_sphere\" pos=\".2 .2 .2\" size=\".1\" rgba=\"0 1 0 1\"/>\n",
" </worldbody>\n",
"</mujoco>\n",
"\"\"\"\n",
"physics = mujoco.Physics.from_xml_string(static_model)\n",
"pixels = physics.render()\n",
"PIL.Image.fromarray(pixels)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "p4vPllljTJh8"
},
"cell_type": "markdown",
"source": [
"`static_model` is written in MuJoCo's XML-based [MJCF](http://www.mujoco.org/book/modeling.html) modeling language. The `from_xml_string()` method invokes the model compiler, which instantiates the library's internal data structures. These can be accessed via the `physics` object, see below."
]
},
{
"metadata": {
"id": "MdUF2UYmR4TA"
},
"cell_type": "markdown",
"source": [
"## Adding DOFs and simulating, advanced rendering\n",
"This is a perfectly legitimate model, but if we simulate it, nothing will happen except for time advancing. This is because this model has no degrees of freedom (DOFs). We add DOFs by adding **joints** to bodies, specifying how they can move with respect to their parents. Let us add a hinge joint and re-render, visualizing the joint axis."
]
},
{
"metadata": {
"id": "R7zokzd_yeEg"
},
"cell_type": "code",
"source": [
"#@title A child body with a joint { vertical-output: true }\n",
"\n",
"swinging_body = \"\"\"\n",
"<mujoco>\n",
" <worldbody>\n",
" <light name=\"top\" pos=\"0 0 1\"/>\n",
" <body name=\"box_and_sphere\" euler=\"0 0 -30\">\n",
" <joint name=\"swing\" type=\"hinge\" axis=\"1 -1 0\" pos=\"-.2 -.2 -.2\"/>\n",
" <geom name=\"red_box\" type=\"box\" size=\".2 .2 .2\" rgba=\"1 0 0 1\"/>\n",
" <geom name=\"green_sphere\" pos=\".2 .2 .2\" size=\".1\" rgba=\"0 1 0 1\"/>\n",
" </body>\n",
" </worldbody>\n",
"</mujoco>\n",
"\"\"\"\n",
"physics = mujoco.Physics.from_xml_string(swinging_body)\n",
"# Visualize the joint axis.\n",
"scene_option = mujoco.wrapper.core.MjvOption()\n",
"scene_option.flags[enums.mjtVisFlag.mjVIS_JOINT] = True\n",
"pixels = physics.render(scene_option=scene_option)\n",
"PIL.Image.fromarray(pixels)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "INOGGV0PTQus"
},
"cell_type": "markdown",
"source": [
"The things that move (and which have inertia) are called *bodies*. The body's child `joint` specifies how that body can move with respect to its parent, in this case `box_and_sphere` w.r.t the `worldbody`. \n",
"\n",
"Note that the body's frame is **rotated** with an `euler` directive, and its children, the geoms and the joint, rotate with it. This is to emphasize the local-to-parent-frame nature of position and orientation directives in MJCF.\n",
"\n",
"Let's make a video, to get a sense of the dynamics and to see the body swinging under gravity."
]
},
{
"metadata": {
"id": "Z_57VMUDpGrj"
},
"cell_type": "code",
"source": [
"#@title Making a video {vertical-output: true}\n",
"\n",
"duration = 2 # (seconds)\n",
"framerate = 30 # (Hz)\n",
"\n",
"# Visualize the joint axis\n",
"scene_option = mujoco.wrapper.core.MjvOption()\n",
"scene_option.flags[enums.mjtVisFlag.mjVIS_JOINT] = True\n",
"\n",
"# Simulate and display video.\n",
"frames = []\n",
"physics.reset() # Reset state and time\n",
"while physics.data.time < duration:\n",
" physics.step()\n",
" if len(frames) < physics.data.time * framerate:\n",
" pixels = physics.render(scene_option=scene_option)\n",
" frames.append(pixels)\n",
"display_video(frames, framerate)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "yYvS1UaciMX_"
},
"cell_type": "markdown",
"source": [
"Note how we collect the video frames. Because physics simulation timesteps are generally much smaller than framerates (the default timestep is 2ms), we don't render after each step."
]
},
{
"metadata": {
"id": "nQ8XOnRQx7T1"
},
"cell_type": "markdown",
"source": [
"## Rendering options\n",
"\n",
"Like joint visualisation, additional rendering options are exposed as parameters to the `render` method."
]
},
{
"metadata": {
"id": "AQITZiIgx7T2"
},
"cell_type": "code",
"source": [
"#@title Enable transparency and frame visualization {vertical-output: true}\n",
"\n",
"scene_option = mujoco.wrapper.core.MjvOption()\n",
"scene_option.frame = enums.mjtFrame.mjFRAME_GEOM\n",
"scene_option.flags[enums.mjtVisFlag.mjVIS_TRANSPARENT] = True\n",
"pixels = physics.render(scene_option=scene_option)\n",
"PIL.Image.fromarray(pixels)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "PDDgY48vx7T6"
},
"cell_type": "code",
"source": [
"#@title Depth rendering {vertical-output: true}\n",
"\n",
"# depth is a float array, in meters.\n",
"depth = physics.render(depth=True)\n",
"# Shift nearest values to the origin.\n",
"depth -= depth.min()\n",
"# Scale by 2 mean distances of near rays.\n",
"depth /= 2*depth[depth <= 1].mean()\n",
"# Scale to [0, 255]\n",
"pixels = 255*np.clip(depth, 0, 1)\n",
"PIL.Image.fromarray(pixels.astype(np.uint8))"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "PNwiIrgpx7T8"
},
"cell_type": "code",
"source": [
"#@title Segmentation rendering {vertical-output: true}\n",
"\n",
"seg = physics.render(segmentation=True)\n",
"# Display the contents of the first channel, which contains object\n",
"# IDs. The second channel, seg[:, :, 1], contains object types.\n",
"geom_ids = seg[:, :, 0]\n",
"# Infinity is mapped to -1\n",
"geom_ids = geom_ids.astype(np.float64) + 1\n",
"# Scale to [0, 1]\n",
"geom_ids = geom_ids / geom_ids.max()\n",
"pixels = 255*geom_ids\n",
"PIL.Image.fromarray(pixels.astype(np.uint8))\n"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "uCJQlv3cQcJQ"
},
"cell_type": "code",
"source": [
"#@title Projecting from world to camera coordinates {vertical-output: true}\n",
"\n",
"# Get the world coordinates of the box corners\n",
"box_pos = physics.named.data.geom_xpos['red_box']\n",
"box_mat = physics.named.data.geom_xmat['red_box'].reshape(3, 3)\n",
"box_size = physics.named.model.geom_size['red_box']\n",
"offsets = np.array([-1, 1]) * box_size[:, None]\n",
"xyz_local = np.stack(list(itertools.product(*offsets))).T\n",
"xyz_global = box_pos[:, None] + box_mat @ xyz_local\n",
"\n",
"# Camera matrices multiply homogenous [x, y, z, 1] vectors.\n",
"corners_homogeneous = np.ones((4, xyz_global.shape[1]), dtype=float)\n",
"corners_homogeneous[:3, :] = xyz_global\n",
"\n",
"# Get the camera matrix.\n",
"camera = mujoco.Camera(physics)\n",
"camera_matrix = camera.matrix\n",
"\n",
"# Project world coordinates into pixel space. See:\n",
"# https://en.wikipedia.org/wiki/3D_projection#Mathematical_formula\n",
"xs, ys, s = camera_matrix @ corners_homogeneous\n",
"# x and y are in the pixel coordinate system.\n",
"x = xs / s\n",
"y = ys / s\n",
"\n",
"# Render the camera view and overlay the projected corner coordinates.\n",
"pixels = camera.render()\n",
"fig, ax = plt.subplots(1, 1)\n",
"ax.imshow(pixels)\n",
"ax.plot(x, y, '+', c='w')\n",
"ax.set_axis_off()"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "gf9h_wi9weet"
},
"cell_type": "markdown",
"source": [
"# MuJoCo basics and named indexing"
]
},
{
"metadata": {
"id": "NCcZxrDDB1Cj"
},
"cell_type": "markdown",
"source": [
"## `mjModel`\n",
"MuJoCo's `mjModel`, encapsulated in `physics.model`, contains the *model description*, including the default initial state and other fixed quantities which are not a function of the state, e.g. the positions of geoms in the frame of their parent body. The (x, y, z) offsets of the `box` and `sphere` geoms, relative their parent body `box_and_sphere` are given by `model.geom_pos`:"
]
},
{
"metadata": {
"id": "wx8NANvOF8g1"
},
"cell_type": "code",
"source": [
"physics.model.geom_pos"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "Wee5ATLtIQn_"
},
"cell_type": "markdown",
"source": [
"The `model.opt` structure contains global quantities like"
]
},
{
"metadata": {
"id": "BhzbZIfDIU2-"
},
"cell_type": "code",
"source": [
"print('timestep', physics.model.opt.timestep)\n",
"print('gravity', physics.model.opt.gravity)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "t5hY0fyXFLcf"
},
"cell_type": "markdown",
"source": [
"## `mjData`\n",
"`mjData`, encapsulated in `physics.data`, contains the *state* and quantities that depend on it. The state is made up of time, generalized positions and generalised velocities. These are respectively `data.time`, `data.qpos` and `data.qvel`. \n",
"\n",
"Let's print the state of the swinging body where we left it:"
]
},
{
"metadata": {
"id": "acwZtDwp9mQU"
},
"cell_type": "code",
"source": [
"print(physics.data.time, physics.data.qpos, physics.data.qvel)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "7YlmcLcA-WQu"
},
"cell_type": "markdown",
"source": [
"`physics.data` also contains functions of the state, for example the cartesian positions of objects in the world frame. The (x, y, z) positions of our two geoms are in `data.geom_xpos`:"
]
},
{
"metadata": {
"id": "CPwDcAQ0-uUE"
},
"cell_type": "code",
"source": [
"print(physics.data.geom_xpos)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "Z0UodCxS_v49"
},
"cell_type": "markdown",
"source": [
"## Named indexing\n",
"\n",
"The semantics of the above arrays are made clearer using the `named` wrapper, which assigns names to rows and type names to columns."
]
},
{
"metadata": {
"id": "cLARcaK6-xCU"
},
"cell_type": "code",
"source": [
"print(physics.named.data.geom_xpos)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "wgXOUZNZHIx6"
},
"cell_type": "markdown",
"source": [
"Note how `model.geom_pos` and `data.geom_xpos` have similar semantics but very different meanings."
]
},
{
"metadata": {
"id": "-cW61ClRHS8a"
},
"cell_type": "code",
"source": [
"print(physics.named.model.geom_pos)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "-lQ0AChVASMv"
},
"cell_type": "markdown",
"source": [
"Name strings can be used to index **into** the relevant quantities, making code much more readable and robust."
]
},
{
"metadata": {
"id": "Rj4ad9fQAnFZ"
},
"cell_type": "code",
"source": [
"physics.named.data.geom_xpos['green_sphere', 'z']"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "axr_p6APAzFn"
},
"cell_type": "markdown",
"source": [
"Joint names can be used to index into quantities in configuration space (beginning with the letter `q`):"
]
},
{
"metadata": {
"id": "hluF9aDG9O1W"
},
"cell_type": "code",
"source": [
"physics.named.data.qpos['swing']"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "3IhfyD2Q1pjv"
},
"cell_type": "markdown",
"source": [
"We can mix NumPy slicing operations with named indexing. As an example, we can set the color of the box using its name (`\"red_box\"`) as an index into the rows of the `geom_rgba` array. "
]
},
{
"metadata": {
"id": "f5vVUullUvWH"
},
"cell_type": "code",
"source": [
"#@title Changing colors using named indexing{vertical-output: true}\n",
"\n",
"random_rgb = np.random.rand(3)\n",
"physics.named.model.geom_rgba['red_box', :3] = random_rgb\n",
"pixels = physics.render()\n",
"PIL.Image.fromarray(pixels)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "elzPPdq-KhLI"
},
"cell_type": "markdown",
"source": [
"Note that while `physics.model` quantities will not be changed by the engine, we can change them ourselves between steps. This however is generally not recommended, the preferred approach being to modify the model at the XML level using the PyMJCF library, see below."
]
},
{
"metadata": {
"id": "22ENjtVuhwsm"
},
"cell_type": "markdown",
"source": [
"## Setting the state with `reset_context()`\n",
"\n",
"In order for `data` quantities that are functions of the state to be in sync with the state, MuJoCo's `mj_step1()` needs to be called. This is facilitated by the `reset_context()` context, please see in-depth discussion in Section 2.1 of the [tech report](https://arxiv.org/abs/2006.12983)."
]
},
{
"metadata": {
"id": "WBPprCtWgXFN"
},
"cell_type": "code",
"source": [
"physics.named.data.qpos['swing'] = np.pi\n",
"print('Without reset_context, spatial positions are not updated:',\n",
" physics.named.data.geom_xpos['green_sphere', ['z']])\n",
"with physics.reset_context():\n",
" physics.named.data.qpos['swing'] = np.pi\n",
"print('After reset_context, positions are up-to-date:',\n",
" physics.named.data.geom_xpos['green_sphere', ['z']])"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "SHppAOjvSupc"
},
"cell_type": "markdown",
"source": [
"## Free bodies: the self-inverting \"tippe-top\"\n",
"\n",
"A free body is a body with a `free` joint, with 6 movement DOFs: 3 translations and 3 rotations. We could give our `box_and_sphere` body a free joint and watch it fall, but let's look at something more interesting. A \"tippe top\" is a spinning toy which flips itself on its head ([Wikipedia](https://en.wikipedia.org/wiki/Tippe_top)). We model it as follows:"
]
},
{
"metadata": {
"id": "xasXQpVMjIwA"
},
"cell_type": "code",
"source": [
"#@title The \"tippe-top\" model{vertical-output: true}\n",
"\n",
"tippe_top = \"\"\"\n",
"<mujoco model=\"tippe top\">\n",
" <option integrator=\"RK4\"/>\n",
" <asset>\n",
" <texture name=\"grid\" type=\"2d\" builtin=\"checker\" rgb1=\".1 .2 .3\"\n",
" rgb2=\".2 .3 .4\" width=\"300\" height=\"300\"/>\n",
" <material name=\"grid\" texture=\"grid\" texrepeat=\"8 8\" reflectance=\".2\"/>\n",
" </asset>\n",
" <worldbody>\n",
" <geom size=\".2 .2 .01\" type=\"plane\" material=\"grid\"/>\n",
" <light pos=\"0 0 .6\"/>\n",
" <camera name=\"closeup\" pos=\"0 -.1 .07\" xyaxes=\"1 0 0 0 1 2\"/>\n",
" <body name=\"top\" pos=\"0 0 .02\">\n",
" <freejoint/>\n",
" <geom name=\"ball\" type=\"sphere\" size=\".02\" />\n",
" <geom name=\"stem\" type=\"cylinder\" pos=\"0 0 .02\" size=\"0.004 .008\"/>\n",
" <geom name=\"ballast\" type=\"box\" size=\".023 .023 0.005\" pos=\"0 0 -.015\"\n",
" contype=\"0\" conaffinity=\"0\" group=\"3\"/>\n",
" </body>\n",
" </worldbody>\n",
" <keyframe>\n",
" <key name=\"spinning\" qpos=\"0 0 0.02 1 0 0 0\" qvel=\"0 0 0 0 1 200\" />\n",
" </keyframe>\n",
"</mujoco>\n",
"\"\"\"\n",
"physics = mujoco.Physics.from_xml_string(tippe_top)\n",
"PIL.Image.fromarray(physics.render(camera_id='closeup'))"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "bvHlr6maJYIG"
},
"cell_type": "markdown",
"source": [
"Note several new features of this model definition:\n",
"0. The free joint is added with the `<freejoint/>` clause, which is similar to `<joint type=\"free\"/>`, but prohibits unphysical attributes like friction or stiffness.\n",
"1. We use the `<option/>` clause to set the integrator to the more accurate Runge Kutta 4th order.\n",
"2. We define the floor's grid material inside the `<asset/>` clause and reference it in the floor geom. \n",
"3. We use an invisible and non-colliding box geom called `ballast` to move the top's center-of-mass lower. Having a low center of mass is (counter-intuitively) required for the flipping behaviour to occur.\n",
"4. We save our initial spinning state as a keyframe. It has a high rotational velocity around the z-axis, but is not perfectly oriented with the world.\n",
"5. We define a `<camera>` in our model, and then render from it using the `camera_id` argument to `render()`.\n",
"Let us examine the state:"
]
},
{
"metadata": {
"id": "o4S9nYhHOKmb"
},
"cell_type": "code",
"source": [
"print('positions', physics.data.qpos)\n",
"print('velocities', physics.data.qvel)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "71UgzBAqWdtZ"
},
"cell_type": "markdown",
"source": [
"The velocities are easy to interpret, 6 zeros, one for each DOF. What about the length-7 positions? We can see the initial 2cm height of the body; the subsequent four numbers are the 3D orientation, defined by a *unit quaternion*. These normalized four-vectors, which preserve the topology of the orientation group, are the reason that `data.qpos` can be bigger than `data.qvel`: 3D orientations are represented with **4** numbers while angular velocities are **3** numbers."
]
},
{
"metadata": {
"id": "5P4HkhKNGQvs"
},
"cell_type": "code",
"source": [
"#@title Video of the tippe-top {vertical-output: true}\n",
"\n",
"duration = 7 # (seconds)\n",
"framerate = 60 # (Hz)\n",
"\n",
"# Simulate and display video.\n",
"frames = []\n",
"physics.reset(0) # Reset to keyframe 0 (load a saved state).\n",
"while physics.data.time < duration:\n",
" physics.step()\n",
" if len(frames) < (physics.data.time) * framerate:\n",
" pixels = physics.render(camera_id='closeup')\n",
" frames.append(pixels)\n",
"\n",
"display_video(frames, framerate)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "rRuFKD2ubPgu"
},
"cell_type": "markdown",
"source": [
"### Measuring values from `physics.data`\n",
"The `physics.data` structure contains all of the dynamic variables and intermediate results produced by the simulation. These are expected to change on each timestep. \n",
"\n",
"Below we simulate for 2000 timesteps and plot the state and height of the sphere as a function of time."
]
},
{
"metadata": {
"id": "1XXB6asJoZ2N"
},
"cell_type": "code",
"source": [
"#@title Measuring values {vertical-output: true}\n",
"\n",
"timevals = []\n",
"angular_velocity = []\n",
"stem_height = []\n",
"\n",
"# Simulate and save data\n",
"physics.reset(0)\n",
"while physics.data.time < duration:\n",
" physics.step()\n",
" timevals.append(physics.data.time)\n",
" angular_velocity.append(physics.data.qvel[3:6].copy())\n",
" stem_height.append(physics.named.data.geom_xpos['stem', 'z'])\n",
"\n",
"dpi = 100\n",
"width = 480\n",
"height = 640\n",
"figsize = (width / dpi, height / dpi)\n",
"_, ax = plt.subplots(2, 1, figsize=figsize, dpi=dpi, sharex=True)\n",
"\n",
"ax[0].plot(timevals, angular_velocity)\n",
"ax[0].set_title('angular velocity')\n",
"ax[0].set_ylabel('radians / second')\n",
"\n",
"ax[1].plot(timevals, stem_height)\n",
"ax[1].set_xlabel('time (seconds)')\n",
"ax[1].set_ylabel('meters')\n",
"_ = ax[1].set_title('stem height')"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "UAMItwu8e1WR"
},
"cell_type": "markdown",
"source": [
"# PyMJCF tutorial\n",
"\n",
"\n"
]
},
{
"metadata": {
"id": "hPiY8m3MssKM"
},
"cell_type": "markdown",
"source": [
"This library provides a Python object model for MuJoCo's XML-based\n",
"[MJCF](http://www.mujoco.org/book/modeling.html) physics modeling language. The\n",
"goal of the library is to allow users to easily interact with and modify MJCF\n",
"models in Python, similarly to what the JavaScript DOM does for HTML.\n",
"\n",
"A key feature of this library is the ability to easily compose multiple separate\n",
"MJCF models into a larger one. Disambiguation of duplicated names from different\n",
"models, or multiple instances of the same model, is handled automatically.\n",
"\n",
"One typical use case is when we want robots with a variable number of joints. This is a fundamental change to the kinematics, requiring a new XML descriptor and new binary model to be compiled. \n",
"\n",
"The following snippets realise this scenario and provide a quick example of this library's use case."
]
},
{
"metadata": {
"id": "gKny5EJ4uVzu"
},
"cell_type": "code",
"source": [
"class Leg(object):\n",
" \"\"\"A 2-DoF leg with position actuators.\"\"\"\n",
" def __init__(self, length, rgba):\n",
" self.model = mjcf.RootElement()\n",
"\n",
" # Defaults:\n",
" self.model.default.joint.damping = 2\n",
" self.model.default.joint.type = 'hinge'\n",
" self.model.default.geom.type = 'capsule'\n",
" self.model.default.geom.rgba = rgba # Continued below...\n",
"\n",
" # Thigh:\n",
" self.thigh = self.model.worldbody.add('body')\n",
" self.hip = self.thigh.add('joint', axis=[0, 0, 1])\n",
" self.thigh.add('geom', fromto=[0, 0, 0, length, 0, 0], size=[length/4])\n",
"\n",
" # Hip:\n",
" self.shin = self.thigh.add('body', pos=[length, 0, 0])\n",
" self.knee = self.shin.add('joint', axis=[0, 1, 0])\n",
" self.shin.add('geom', fromto=[0, 0, 0, 0, 0, -length], size=[length/5])\n",
"\n",
" # Position actuators:\n",
" self.model.actuator.add('position', joint=self.hip, kp=10)\n",
" self.model.actuator.add('position', joint=self.knee, kp=10)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "cFJerI--UtTy"
},
"cell_type": "markdown",
"source": [
"The `Leg` class describes an abstract articulated leg, with two joints and corresponding proportional-derivative actuators. \n",
"\n",
"Note that:\n",
"\n",
"- MJCF attributes correspond directly to arguments of the `add()` method.\n",
"- When referencing elements, e.g when specifying the joint to which an actuator is attached, the MJCF element itself is used, rather than the name string."
]
},
{
"metadata": {
"cellView": "both",
"id": "SESlL_TidKHx"
},
"cell_type": "code",
"source": [
"BODY_RADIUS = 0.1\n",
"BODY_SIZE = (BODY_RADIUS, BODY_RADIUS, BODY_RADIUS / 2)\n",
"random_state = np.random.RandomState(42)\n",
"\n",
"def make_creature(num_legs):\n",
" \"\"\"Constructs a creature with `num_legs` legs.\"\"\"\n",
" rgba = random_state.uniform([0, 0, 0, 1], [1, 1, 1, 1])\n",
" model = mjcf.RootElement()\n",
" model.compiler.angle = 'radian' # Use radians.\n",
"\n",
" # Make the torso geom.\n",
" model.worldbody.add(\n",
" 'geom', name='torso', type='ellipsoid', size=BODY_SIZE, rgba=rgba)\n",
"\n",
" # Attach legs to equidistant sites on the circumference.\n",
" for i in range(num_legs):\n",
" theta = 2 * i * np.pi / num_legs\n",
" hip_pos = BODY_RADIUS * np.array([np.cos(theta), np.sin(theta), 0])\n",
" hip_site = model.worldbody.add('site', pos=hip_pos, euler=[0, 0, theta])\n",
" leg = Leg(length=BODY_RADIUS, rgba=rgba)\n",
" hip_site.attach(leg.model)\n",
"\n",
" return model"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "elyuJiI3U3kM"
},
"cell_type": "markdown",
"source": [
"The `make_creature` function uses PyMJCF's `attach()` method to procedurally attach legs to the torso. Note that at this stage both the torso and hip attachment sites are children of the `worldbody`, since their parent body has yet to be instantiated. We'll now make an arena with a chequered floor and two lights, and place our creatures in a grid."
]
},
{
"metadata": {
"id": "F7_Tx9P9U_VJ"
},
"cell_type": "code",
"source": [
"#@title Six Creatures on a floor.{vertical-output: true}\n",
"\n",
"arena = mjcf.RootElement()\n",
"chequered = arena.asset.add('texture', type='2d', builtin='checker', width=300,\n",
" height=300, rgb1=[.2, .3, .4], rgb2=[.3, .4, .5])\n",
"grid = arena.asset.add('material', name='grid', texture=chequered,\n",
" texrepeat=[5, 5], reflectance=.2)\n",
"arena.worldbody.add('geom', type='plane', size=[2, 2, .1], material=grid)\n",
"for x in [-2, 2]:\n",
" arena.worldbody.add('light', pos=[x, -1, 3], dir=[-x, 1, -2])\n",
"\n",
"# Instantiate 6 creatures with 3 to 8 legs.\n",
"creatures = [make_creature(num_legs=num_legs) for num_legs in range(3, 9)]\n",
"\n",
"# Place them on a grid in the arena.\n",
"height = .15\n",
"grid = 5 * BODY_RADIUS\n",
"xpos, ypos, zpos = np.meshgrid([-grid, 0, grid], [0, grid], [height])\n",
"for i, model in enumerate(creatures):\n",
" # Place spawn sites on a grid.\n",
" spawn_pos = (xpos.flat[i], ypos.flat[i], zpos.flat[i])\n",
" spawn_site = arena.worldbody.add('site', pos=spawn_pos, group=3)\n",
" # Attach to the arena at the spawn sites, with a free joint.\n",
" spawn_site.attach(model).add('freejoint')\n",
"\n",
"# Instantiate the physics and render.\n",
"physics = mjcf.Physics.from_mjcf_model(arena)\n",
"PIL.Image.fromarray(physics.render())"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "cMfDaD7PfuoI"
},
"cell_type": "markdown",
"source": [
"Multi-legged creatures, ready to roam! Let's inject some controls and watch them move. We'll generate a sinusoidal open-loop control signal of fixed frequency and random phase, recording both video frames and the horizontal positions of the torso geoms, in order to plot the movement trajectories."
]
},
{
"metadata": {
"id": "8Gx39DMEUZDt"
},
"cell_type": "code",
"source": [
"#@title Video of the movement{vertical-output: true}\n",
"#@test {\"timeout\": 600}\n",
"\n",
"duration = 10 # (Seconds)\n",
"framerate = 30 # (Hz)\n",
"video = []\n",
"pos_x = []\n",
"pos_y = []\n",
"torsos = [] # List of torso geom elements.\n",
"actuators = [] # List of actuator elements.\n",
"for creature in creatures:\n",
" torsos.append(creature.find('geom', 'torso'))\n",
" actuators.extend(creature.find_all('actuator'))\n",
"\n",
"# Control signal frequency, phase, amplitude.\n",
"freq = 5\n",
"phase = 2 * np.pi * random_state.rand(len(actuators))\n",
"amp = 0.9\n",
"\n",
"# Simulate, saving video frames and torso locations.\n",
"physics.reset()\n",
"while physics.data.time < duration:\n",
" # Inject controls and step the physics.\n",
" physics.bind(actuators).ctrl = amp * np.sin(freq * physics.data.time + phase)\n",
" physics.step()\n",
"\n",
" # Save torso horizontal positions using bind().\n",
" pos_x.append(physics.bind(torsos).xpos[:, 0].copy())\n",
" pos_y.append(physics.bind(torsos).xpos[:, 1].copy())\n",
"\n",
" # Save video frames.\n",
" if len(video) < physics.data.time * framerate:\n",
" pixels = physics.render()\n",
" video.append(pixels.copy())\n",
"\n",
"display_video(video, framerate)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "u09JfenWYLZu"
},
"cell_type": "code",
"source": [
"#@title Movement trajectories{vertical-output: true}\n",
"\n",
"creature_colors = physics.bind(torsos).rgba[:, :3]\n",
"fig, ax = plt.subplots(figsize=(4, 4))\n",
"ax.set_prop_cycle(color=creature_colors)\n",
"_ = ax.plot(pos_x, pos_y, linewidth=4)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "kggQyvNpf_Y9"
},
"cell_type": "markdown",
"source": [
"The plot above shows the corresponding movement trajectories of creature positions. Note how `physics.bind(torsos)` was used to access both `xpos` and `rgba` values. Once the `Physics` had been instantiated by `from_mjcf_model()`, the `bind()` method will expose both the associated `mjData` and `mjModel` fields of an `mjcf` element, providing unified access to all quantities in the simulation. "
]
},
{
"metadata": {
"id": "wcRX_wu_8q8u"
},
"cell_type": "markdown",
"source": [
"# Composer tutorial"
]
},
{
"metadata": {
"id": "1DMhNPE5tSdw"
},
"cell_type": "markdown",
"source": [
"In this tutorial we will create a task requiring our \"creature\" above to press a colour-changing button on the floor with a prescribed force. We begin by implementing our creature as a `composer.Entity`:"
]
},
{
"metadata": {
"id": "WwfzIqgNuFKt"
},
"cell_type": "code",
"source": [
"#@title The `Creature` class\n",
"\n",
"\n",
"class Creature(composer.Entity):\n",
" \"\"\"A multi-legged creature derived from `composer.Entity`.\"\"\"\n",
" def _build(self, num_legs):\n",
" self._model = make_creature(num_legs)\n",
"\n",
" def _build_observables(self):\n",
" return CreatureObservables(self)\n",
"\n",
" @property\n",
" def mjcf_model(self):\n",
" return self._model\n",
"\n",
" @property\n",
" def actuators(self):\n",
" return tuple(self._model.find_all('actuator'))\n",
"\n",
"\n",
"# Add simple observable features for joint angles and velocities.\n",
"class CreatureObservables(composer.Observables):\n",
"\n",
" @composer.observable\n",
" def joint_positions(self):\n",
" all_joints = self._entity.mjcf_model.find_all('joint')\n",
" return observable.MJCFFeature('qpos', all_joints)\n",
"\n",
" @composer.observable\n",
" def joint_velocities(self):\n",
" all_joints = self._entity.mjcf_model.find_all('joint')\n",
" return observable.MJCFFeature('qvel', all_joints)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "CXZOBK6RkjxH"
},
"cell_type": "markdown",
"source": [
"The `Creature` Entity includes generic Observables for joint angles and velocities. Because `find_all()` is called on the `Creature`'s MJCF model, it will only return the creature's leg joints, and not the \"free\" joint with which it will be attached to the world. Note that Composer Entities should override the `_build` and `_build_observables` methods rather than `__init__`. The implementation of `__init__` in the base class calls `_build` and `_build_observables`, in that order, to ensure that the entity's MJCF model is created before its observables. This was a design choice which allows the user to refer to an observable as an attribute (`entity.observables.foo`) while still making it clear which attributes are observables. The stateful `Button` class derives from `composer.Entity` and implements the `initialize_episode` and `after_substep` callbacks."
]
},
{
"metadata": {
"id": "BE9VU2EOvR-u"
},
"cell_type": "code",
"source": [
"#@title The `Button` class\n",
"\n",
"NUM_SUBSTEPS = 25 # The number of physics substeps per control timestep.\n",
"\n",
"\n",
"class Button(composer.Entity):\n",
" \"\"\"A button Entity which changes colour when pressed with certain force.\"\"\"\n",
" def _build(self, target_force_range=(5, 10)):\n",
" self._min_force, self._max_force = target_force_range\n",
" self._mjcf_model = mjcf.RootElement()\n",
" self._geom = self._mjcf_model.worldbody.add(\n",
" 'geom', type='cylinder', size=[0.25, 0.02], rgba=[1, 0, 0, 1])\n",
" self._site = self._mjcf_model.worldbody.add(\n",
" 'site', type='cylinder', size=self._geom.size*1.01, rgba=[1, 0, 0, 0])\n",
" self._sensor = self._mjcf_model.sensor.add('touch', site=self._site)\n",
" self._num_activated_steps = 0\n",
"\n",
" def _build_observables(self):\n",
" return ButtonObservables(self)\n",
"\n",
" @property\n",
" def mjcf_model(self):\n",
" return self._mjcf_model\n",
" # Update the activation (and colour) if the desired force is applied.\n",
" def _update_activation(self, physics):\n",
" current_force = physics.bind(self.touch_sensor).sensordata[0]\n",
" self._is_activated = (current_force >= self._min_force and\n",
" current_force <= self._max_force)\n",
" physics.bind(self._geom).rgba = (\n",
" [0, 1, 0, 1] if self._is_activated else [1, 0, 0, 1])\n",
" self._num_activated_steps += int(self._is_activated)\n",
"\n",
" def initialize_episode(self, physics, random_state):\n",
" self._reward = 0.0\n",
" self._num_activated_steps = 0\n",
" self._update_activation(physics)\n",
"\n",
" def after_substep(self, physics, random_state):\n",
" self._update_activation(physics)\n",
"\n",
" @property\n",
" def touch_sensor(self):\n",
" return self._sensor\n",
"\n",
" @property\n",
" def num_activated_steps(self):\n",
" return self._num_activated_steps\n",
"\n",
"\n",
"class ButtonObservables(composer.Observables):\n",
" \"\"\"A touch sensor which averages contact force over physics substeps.\"\"\"\n",
" @composer.observable\n",
" def touch_force(self):\n",
" return observable.MJCFFeature('sensordata', self._entity.touch_sensor,\n",
" buffer_size=NUM_SUBSTEPS, aggregator='mean')"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "D9vB5nCwkyIW"
},
"cell_type": "markdown",
"source": [
"Note how the Button counts the number of sub-steps during which it is pressed with the desired force. It also exposes an `Observable` of the force being applied to the button, whose value is an average of the readings over the physics time-steps.\n",
"\n",
"We import some `variation` modules and an arena factory:"
]
},
{
"metadata": {
"id": "aDTTQMHtVawM"
},
"cell_type": "code",
"source": [
"#@title Random initialiser using `composer.variation`\n",
"\n",
"\n",
"class UniformCircle(variation.Variation):\n",
" \"\"\"A uniformly sampled horizontal point on a circle of radius `distance`.\"\"\"\n",
" def __init__(self, distance):\n",
" self._distance = distance\n",
" self._heading = distributions.Uniform(0, 2*np.pi)\n",
"\n",
" def __call__(self, initial_value=None, current_value=None, random_state=None):\n",
" distance, heading = variation.evaluate(\n",
" (self._distance, self._heading), random_state=random_state)\n",
" return (distance*np.cos(heading), distance*np.sin(heading), 0)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "dgZwP-pvxJdt"
},
"cell_type": "code",
"source": [
"#@title The `PressWithSpecificForce` task\n",
"\n",
"\n",
"class PressWithSpecificForce(composer.Task):\n",
"\n",
" def __init__(self, creature):\n",
" self._creature = creature\n",
" self._arena = floors.Floor()\n",
" self._arena.add_free_entity(self._creature)\n",
" self._arena.mjcf_model.worldbody.add('light', pos=(0, 0, 4))\n",
" self._button = Button()\n",
" self._arena.attach(self._button)\n",
"\n",
" # Configure initial poses\n",
" self._creature_initial_pose = (0, 0, 0.15)\n",
" button_distance = distributions.Uniform(0.5, .75)\n",
" self._button_initial_pose = UniformCircle(button_distance)\n",
"\n",
" # Configure variators\n",
" self._mjcf_variator = variation.MJCFVariator()\n",
" self._physics_variator = variation.PhysicsVariator()\n",
"\n",
" # Configure and enable observables\n",
" pos_corrptor = noises.Additive(distributions.Normal(scale=0.01))\n",
" self._creature.observables.joint_positions.corruptor = pos_corrptor\n",
" self._creature.observables.joint_positions.enabled = True\n",
" vel_corruptor = noises.Multiplicative(distributions.LogNormal(sigma=0.01))\n",
" self._creature.observables.joint_velocities.corruptor = vel_corruptor\n",
" self._creature.observables.joint_velocities.enabled = True\n",
" self._button.observables.touch_force.enabled = True\n",
"\n",
" def to_button(physics):\n",
" button_pos, _ = self._button.get_pose(physics)\n",
" return self._creature.global_vector_to_local_frame(physics, button_pos)\n",
"\n",
" self._task_observables = {}\n",
" self._task_observables['button_position'] = observable.Generic(to_button)\n",
"\n",
" for obs in self._task_observables.values():\n",
" obs.enabled = True\n",
"\n",
" self.control_timestep = NUM_SUBSTEPS * self.physics_timestep\n",
"\n",
" @property\n",
" def root_entity(self):\n",
" return self._arena\n",
"\n",
" @property\n",
" def task_observables(self):\n",
" return self._task_observables\n",
"\n",
" def initialize_episode_mjcf(self, random_state):\n",
" self._mjcf_variator.apply_variations(random_state)\n",
"\n",
" def initialize_episode(self, physics, random_state):\n",
" self._physics_variator.apply_variations(physics, random_state)\n",
" creature_pose, button_pose = variation.evaluate(\n",
" (self._creature_initial_pose, self._button_initial_pose),\n",
" random_state=random_state)\n",
" self._creature.set_pose(physics, position=creature_pose)\n",
" self._button.set_pose(physics, position=button_pose)\n",
"\n",
" def get_reward(self, physics):\n",
" return self._button.num_activated_steps / NUM_SUBSTEPS"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "dRuuZdLpthbv"
},
"cell_type": "code",
"source": [
"#@title Instantiating an environment{vertical-output: true}\n",
"\n",
"creature = Creature(num_legs=4)\n",
"task = PressWithSpecificForce(creature)\n",
"env = composer.Environment(task, random_state=np.random.RandomState(42))\n",
"\n",
"env.reset()\n",
"PIL.Image.fromarray(env.physics.render())"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "giTL_6euZFlw"
},
"cell_type": "markdown",
"source": [
"# The *Control Suite*"
]
},
{
"metadata": {
"id": "zfIcrDECtdB2"
},
"cell_type": "markdown",
"source": [
"The **Control Suite** is a set of stable, well-tested tasks designed to serve as a benchmark for continuous control learning agents. Tasks are written using the basic MuJoCo wrapper interface. Standardised action, observation and reward structures make suite-wide benchmarking simple and learning curves easy to interpret. Control Suite domains are not meant to be modified, in order to facilitate benchmarking. For full details regarding benchmarking, please refer to our original [publication](https://arxiv.org/abs/1801.00690).\n",
"\n",
"A video of solved benchmark tasks is [available here](https://www.youtube.com/watch?v=rAai4QzcYbs&feature=youtu.be).\n",
"\n",
"The suite come with convenient module level tuples for iterating over tasks:"
]
},
{
"metadata": {
"id": "a_whTJG8uTp1"
},
"cell_type": "code",
"source": [
"#@title Iterating over tasks{vertical-output: true}\n",
"\n",
"max_len = max(len(d) for d, _ in suite.BENCHMARKING)\n",
"for domain, task in suite.BENCHMARKING:\n",
" print(f'{domain:<{max_len}} {task}')"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "qN8y3etfZFly"
},
"cell_type": "code",
"source": [
"#@title Loading and simulating a `suite` task{vertical-output: true}\n",
"\n",
"# Load the environment\n",
"random_state = np.random.RandomState(42)\n",
"env = suite.load('hopper', 'stand', task_kwargs={'random': random_state})\n",
"\n",
"# Simulate episode with random actions\n",
"duration = 4 # Seconds\n",
"frames = []\n",
"ticks = []\n",
"rewards = []\n",
"observations = []\n",
"\n",
"spec = env.action_spec()\n",
"time_step = env.reset()\n",
"\n",
"while env.physics.data.time < duration:\n",
"\n",
" action = random_state.uniform(spec.minimum, spec.maximum, spec.shape)\n",
" time_step = env.step(action)\n",
"\n",
" camera0 = env.physics.render(camera_id=0, height=200, width=200)\n",
" camera1 = env.physics.render(camera_id=1, height=200, width=200)\n",
" frames.append(np.hstack((camera0, camera1)))\n",
" rewards.append(time_step.reward)\n",
" observations.append(copy.deepcopy(time_step.observation))\n",
" ticks.append(env.physics.data.time)\n",
"\n",
"html_video = display_video(frames, framerate=1./env.control_timestep())\n",
"\n",
"# Show video and plot reward and observations\n",
"num_sensors = len(time_step.observation)\n",
"\n",
"_, ax = plt.subplots(1 + num_sensors, 1, sharex=True, figsize=(4, 8))\n",
"ax[0].plot(ticks, rewards)\n",
"ax[0].set_ylabel('reward')\n",
"ax[-1].set_xlabel('time')\n",
"\n",
"for i, key in enumerate(time_step.observation):\n",
" data = np.asarray([observations[j][key] for j in range(len(observations))])\n",
" ax[i+1].plot(ticks, data, label=key)\n",
" ax[i+1].set_ylabel(key)\n",
"\n",
"html_video"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "ggVbQr5hZFl5"
},
"cell_type": "code",
"source": [
"#@title Visualizing an initial state of one task per domain in the Control Suite\n",
"#@test {\"timeout\": 180}\n",
"domains_tasks = {domain: task for domain, task in suite.ALL_TASKS}\n",
"random_state = np.random.RandomState(42)\n",
"num_domains = len(domains_tasks)\n",
"n_col = num_domains // int(np.sqrt(num_domains))\n",
"n_row = num_domains // n_col + int(0 < num_domains % n_col)\n",
"_, ax = plt.subplots(n_row, n_col, figsize=(12, 12))\n",
"for a in ax.flat:\n",
" a.axis('off')\n",
" a.grid(False)\n",
"\n",
"print(f'Iterating over all {num_domains} domains in the Suite:')\n",
"for j, [domain, task] in enumerate(domains_tasks.items()):\n",
" print(domain, task)\n",
"\n",
" env = suite.load(domain, task, task_kwargs={'random': random_state})\n",
" timestep = env.reset()\n",
" pixels = env.physics.render(height=200, width=200, camera_id=0)\n",
"\n",
" ax.flat[j].imshow(pixels)\n",
" ax.flat[j].set_title(domain + ': ' + task)\n",
"\n",
"clear_output()"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "JHSvxHiaopDb"
},
"cell_type": "markdown",
"source": [
"# Locomotion"
]
},
{
"metadata": {
"id": "yTn3C03dpHzL"
},
"cell_type": "markdown",
"source": [
"## Humanoid running along corridor with obstacles\n",
"\n",
"As an illustrative example of using the Locomotion infrastructure to build an RL environment, consider placing a humanoid in a corridor with walls, and a task specifying that the humanoid will be rewarded for running along this corridor, navigating around the wall obstacles using vision. We instantiate the environment as a composition of the Walker, Arena, and Task as follows. First, we build a position-controlled CMU humanoid walker. "
]
},
{
"metadata": {
"id": "gE8rrB7PpN9X"
},
"cell_type": "code",
"source": [
"#@title A position controlled `cmu_humanoid`\n",
"\n",
"walker = cmu_humanoid.CMUHumanoidPositionControlledV2020(\n",
" observable_options={'egocentric_camera': dict(enabled=True)})"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "3fYbaDflBrgE"
},
"cell_type": "markdown",
"source": [
"Next, we construct a corridor-shaped arena that is obstructed by walls."
]
},
{
"metadata": {
"id": "t-O17Fnm3E6R"
},
"cell_type": "code",
"source": [
"#@title A corridor arena with wall obstacles\n",
"\n",
"arena = corridor_arenas.WallsCorridor(\n",
" wall_gap=3.,\n",
" wall_width=distributions.Uniform(2., 3.),\n",
" wall_height=distributions.Uniform(2.5, 3.5),\n",
" corridor_width=4.,\n",
" corridor_length=30.,\n",
")"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "970nN38eBx-R"
},
"cell_type": "markdown",
"source": [
"The task constructor places the walker in the arena."
]
},
{
"metadata": {
"id": "dz4Jy2UGpQ4Z"
},
"cell_type": "code",
"source": [
"#@title A task to navigate the arena\n",
"\n",
"task = corridor_tasks.RunThroughCorridor(\n",
" walker=walker,\n",
" arena=arena,\n",
" walker_spawn_position=(0.5, 0, 0),\n",
" target_velocity=3.0,\n",
" physics_timestep=0.005,\n",
" control_timestep=0.03,\n",
")"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "r-Oy-qTSB4HW"
},
"cell_type": "markdown",
"source": [
"Finally, a task that rewards the agent for running down the corridor at a specific velocity is instantiated as a `composer.Environment`."
]
},
{
"metadata": {
"id": "sQXlaEZk3ytl"
},
"cell_type": "code",
"source": [
"#@title The `RunThroughCorridor` environment\n",
"\n",
"env = composer.Environment(\n",
" task=task,\n",
" time_limit=10,\n",
" random_state=np.random.RandomState(42),\n",
" strip_singleton_obs_buffer_dim=True,\n",
")\n",
"env.reset()\n",
"pixels = []\n",
"for camera_id in range(3):\n",
" pixels.append(env.physics.render(camera_id=camera_id, width=240))\n",
"PIL.Image.fromarray(np.hstack(pixels))"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "HuuQLm8YopDe"
},
"cell_type": "markdown",
"source": [
"## Multi-Agent Soccer"
]
},
{
"metadata": {
"id": "OPNshDEEopDf"
},
"cell_type": "markdown",
"source": [
"Building on Composer and Locomotion libraries, the Multi-agent soccer environments, introduced in [this paper](https://arxiv.org/abs/1902.07151), follow a consistent task structure of Walkers, Arena, and Task where instead of a single walker, we inject multiple walkers that can interact with each other physically in the same scene. The code snippet below shows how to instantiate a 2-vs-2 Multi-agent Soccer environment with the simple, 5 degree-of-freedom `BoxHead` walker type."
]
},
{
"metadata": {
"id": "zAb3je0DAeQo"
},
"cell_type": "code",
"source": [
"#@title 2-v-2 `Boxhead` soccer\n",
"\n",
"random_state = np.random.RandomState(42)\n",
"env = soccer.load(\n",
" team_size=2,\n",
" time_limit=45.,\n",
" random_state=random_state,\n",
" disable_walker_contacts=False,\n",
" walker_type=soccer.WalkerType.BOXHEAD,\n",
")\n",
"env.reset()\n",
"pixels = []\n",
"# Select a random subset of 6 cameras (soccer envs have lots of cameras)\n",
"cameras = random_state.choice(env.physics.model.ncam, 6, replace=False)\n",
"for camera_id in cameras:\n",
" pixels.append(env.physics.render(camera_id=camera_id, width=240))\n",
"image = np.vstack((np.hstack(pixels[:3]), np.hstack(pixels[3:])))\n",
"PIL.Image.fromarray(image)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "J_5C2k0NGvxE"
},
"cell_type": "markdown",
"source": [
" It can trivially be replaced by e.g. the `WalkerType.ANT` walker:"
]
},
{
"metadata": {
"id": "WDIGodhBG-Mn"
},
"cell_type": "code",
"source": [
"#@title 3-v-3 `Ant` soccer\n",
"\n",
"random_state = np.random.RandomState(42)\n",
"env = soccer.load(\n",
" team_size=3,\n",
" time_limit=45.,\n",
" random_state=random_state,\n",
" disable_walker_contacts=False,\n",
" walker_type=soccer.WalkerType.ANT,\n",
")\n",
"env.reset()\n",
"\n",
"pixels = []\n",
"cameras = random_state.choice(env.physics.model.ncam, 6, replace=False)\n",
"for camera_id in cameras:\n",
" pixels.append(env.physics.render(camera_id=camera_id, width=240))\n",
"image = np.vstack((np.hstack(pixels[:3]), np.hstack(pixels[3:])))\n",
"PIL.Image.fromarray(image)"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "MvK9BW4A5c9p"
},
"cell_type": "markdown",
"source": [
"# Manipulation"
]
},
{
"metadata": {
"id": "jPt27n2Dch_m"
},
"cell_type": "markdown",
"source": [
"The `manipulation` module provides a robotic arm, a set of simple objects, and tools for building reward functions for manipulation tasks."
]
},
{
"metadata": {
"id": "cZxmJoovahCA"
},
"cell_type": "code",
"source": [
"#@title Listing all `manipulation` tasks{vertical-output: true}\n",
"\n",
"# `ALL` is a tuple containing the names of all of the environments in the suite.\n",
"print('\\n'.join(manipulation.ALL))"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "oj0cJFlR5nTS"
},
"cell_type": "code",
"source": [
"#@title Listing `manipulation` tasks that use vision{vertical-output: true}\n",
"print('\\n'.join(manipulation.get_environments_by_tag('vision')))"
],
"outputs": [],
"execution_count": null
},
{
"metadata": {
"id": "e_6q4FqFIKxy"
},
"cell_type": "code",
"source": [
"#@title Loading and simulating a `manipulation` task{vertical-output: true}\n",
"\n",
"env = manipulation.load('stack_2_of_3_bricks_random_order_vision', seed=42)\n",
"action_spec = env.action_spec()\n",
"\n",
"def sample_random_action():\n",
" return env.random_state.uniform(\n",
" low=action_spec.minimum,\n",
" high=action_spec.maximum,\n",
" ).astype(action_spec.dtype, copy=False)\n",
"\n",
"# Step the environment through a full episode using random actions and record\n",
"# the camera observations.\n",
"frames = []\n",
"timestep = env.reset()\n",
"frames.append(timestep.observation['front_close'])\n",
"while not timestep.last():\n",
" timestep = env.step(sample_random_action())\n",
" frames.append(timestep.observation['front_close'])\n",
"all_frames = np.concatenate(frames, axis=0)\n",
"display_video(all_frames, 30)"
],
"outputs": [],
"execution_count": null
}
],
"metadata": {
"accelerator": "GPU",
"colab": {
"collapsed_sections": [
"YkBQUjm6gbGF",
"YvyGCsgSCxHQ",
"wtDN43hIJh2C",
"jZXz9rPYGA-Y",
"MdUF2UYmR4TA",
"nQ8XOnRQx7T1",
"gf9h_wi9weet",
"NCcZxrDDB1Cj",
"t5hY0fyXFLcf",
"Z0UodCxS_v49",
"22ENjtVuhwsm",
"SHppAOjvSupc",
"rRuFKD2ubPgu",
"UAMItwu8e1WR",
"wcRX_wu_8q8u",
"giTL_6euZFlw",
"JHSvxHiaopDb",
"yTn3C03dpHzL",
"HuuQLm8YopDe",
"MvK9BW4A5c9p"
],
"last_runtime": {
"build_target": "",
"kind": "local"
},
"name": "dm_control",
"private_outputs": true,
"provenance": [],
"toc_visible": true
},
"kernelspec": {
"display_name": "Python 3",
"name": "python3"
}
},
"nbformat": 4,
"nbformat_minor": 0
}
|