diff --git a/beaker-notebooks/LASSO_L0.bkr b/beaker-notebooks/LASSO_L0.bkr
index c6a050c2a1020f3779135a824c7747f0b0d9dea1..c533be458d50eb31bb0f064e74bc7266983ed64b 100644
--- a/beaker-notebooks/LASSO_L0.bkr
+++ b/beaker-notebooks/LASSO_L0.bkr
@@ -47,45 +47,86 @@
     ],
     "cells": [
         {
-            "id": "code2melQ0",
-            "type": "code",
-            "evaluator": "HTML",
-            "input": {
-                "body": [
-                    "<a target=\"_blank\" href=\"http://forum.analytics-toolkit.nomad-coe.eu/\" class=\"btn btn-primary\"> Send your feedback to the analytics-toolkit forum</a><h2> Your comments are invaluable in helping us provide a user friendly experience for all! </h2>"
-                ]
-            },
-            "output": {
-                "state": {},
-                "result": {
-                    "type": "BeakerDisplay",
-                    "innertype": "Html",
-                    "object": "<script>\nvar beaker = bkHelper.getBeakerObject().beakerObj;\n</script>\n<a target=\"_blank\" href=\"http://forum.analytics-toolkit.nomad-coe.eu/\" class=\"btn btn-primary\"> Send your feedback to the analytics-toolkit forum</a><h2> Your comments are invaluable in helping us provide a user friendly experience for all! </h2>"
-                },
-                "selectedType": "BeakerDisplay",
-                "elapsedTime": 0,
-                "height": 119
-            },
-            "evaluatorReader": true,
-            "lineCount": 1
-        },
-        {
-            "id": "markdownRBGLQA",
+            "id": "markdownpEW8aT",
             "type": "markdown",
             "body": [
-                "<p style=\"color: #20335d;;font-weight: 900; font-size: 22pt;\">  NOMAD analytics toolkit</p>",
-                "<label style=\"text-align: center; color: #20335d; font-weight: 900; font-size: 18pt;\">Tutorial example on Crystal prediction I:</label> <label style=\"color: #20335d;font-weight: 900; font-size: 15pt;\"> The case of octet-binary zincblende-vs.-rocksalt semiconductors</label>",
+                "<label style=\"text-align: left; color: #20335d; font-weight: 900; font-size: 18pt; padding-top: 2em;\">",
+                "  Predicting energy differences between crystal structures:</label><br/><label style=\"color: #20335d;font-weight: 900; font-size: 15pt;\"> Octet-binary zincblende vs. rocksalt semiconductors</label>",
                 " </p>",
-                " <p style=\"font-size: 15px;\"> developed by Angelo Ziletti, Ankit Kariryaa, Emre Ahmetcik, Fawzi Mohamed, Luca Ghiringhelli, and Matthias Scheffler. [Last update November 23, 2016]</p>"
+                " <p style=\"font-size: 15px;\">Angelo Ziletti, Ankit Kariryaa, Emre Ahmetcik, Fawzi Mohamed, Luca Ghiringhelli, Matthias Scheffler <span style=\"font-size: smaller;\">[version 2017-01-02]</span></p>",
+                " ",
+                "<div style=\"padding-top: 1em;\">",
+                "This tutorial shows how to find descriptive parameters (short formulas) that predict crystal structure, using the example of octet binary compounds that have either rocksalt (RS) or zincblende (ZB) structure. It is based on</div>",
+                "<div style=\"padding: 1ex; margin-top: 1ex; margin-bottom: 1ex; border-style: dotted; border-width: 1pt; border-color: blue; border-radius: 3px;\">",
+                "L. M. Ghiringhelli, J. Vybiral, S. V. Levchenko, C. Draxl, M. Scheffler: <span style=\"font-style: italic;\">Big Data of Materials Science: Critical Role of the Descriptor</span>,  Phys. Rev. Lett. 114, 105503 (2015) <a href=\"http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.114.105503\">[PDF]</a>",
+                "</div>",
+                "<div>",
+                "Click on \"Run\" below to reproduce results from this publication; click \"Background\" for an explanation of the approach; or, modify \"Settings\" to produce your own results.",
+                "</div>",
+                "<div style=\"padding-top: 2ex;\">",
+                "<span style=\"font-weight: bold;\">Idea: </span> Starting from simple physical quantities (\"building blocks\", here properties of the constituent free atoms such as orbital radii), thousands of candidate formulas are generated by applying arithmetic operations combining building blocks, for example forming sums and products of them. Then, a sparse regression method is used to select only a few of these formulas that explain the data.",
+                "</div>"
             ],
             "evaluatorReader": false
         },
         {
-            "id": "codeubF2um",
+            "id": "code43f7kq",
             "type": "code",
             "evaluator": "HTML",
             "input": {
                 "body": [
+                    "<script>",
+                    "var run_lasso = function() {",
+                    "  $(\"#lasso_result_button\").removeClass(\"active\").addClass(\"disabled\");",
+                    "  getFeatures();",
+                    "  getOperators();",
+                    "  getMaxDim();",
+                    "  beaker.evaluate(\"lasso_cell\"); // evaluate cells with tag \"lasso_cell\"",
+                    " // view_result()",
+                    "};",
+                    "var reset_lasso = function(){",
+                    "  beaker.evaluate(\"lasso-settings-cell\");",
+                    "  var e = document.getElementById('lasso-hidden-settings-div');",
+                    "  var b = document.getElementById('lasso-hidden-settings-button');",
+                    "  e.style.display = 'block';",
+                    "  b.style.display = 'inline';",
+                    "};",
+                    "var getFeatures = function() {",
+                    "    beaker.selected_feature_list = [];",
+                    "    $('#lasso_features_select input:checkbox').each(function () {",
+                    "        if(this.checked )",
+                    "          beaker.selected_feature_list.push(this.value);",
+                    "    });",
+                    "};",
+                    "var getOperators = function() {",
+                    "    beaker.allowed_operations = [];",
+                    "    $('#lasso_operators_select input:checkbox').each(function () {",
+                    "        if(this.checked )",
+                    "          beaker.allowed_operations.push(this.value);",
+                    "    });",
+                    "};  ",
+                    "var getMaxDim = function() {",
+                    "   beaker.max_dim = $(\"#lasso_max_dim_selector\").val();",
+                    "};",
+                    "var toggle_settings = function(){",
+                    "  var e = document.getElementById('lasso-hidden-settings-div');",
+                    "  var b = document.getElementById('lasso-hidden-settings-button');",
+                    "  if(e.style.display == 'block'){",
+                    "    e.style.display = 'none';",
+                    "    b.style.display = 'none';",
+                    "  }",
+                    "  else{",
+                    "    e.style.display = 'block';",
+                    "    b.style.display = 'inline';",
+                    "  }",
+                    "};",
+                    "beaker.view_result = function(result_link) {",
+                    "//   beaker.evaluate(\"lasso_viewer_result\").then(function(x) {",
+                    "    $(\"#lasso_result_button\").attr(\"href\", result_link);",
+                    "//   }); ",
+                    "  $(\"#lasso_result_button\").removeClass(\"disabled\").addClass(\"active\");",
+                    "}",
+                    "</script>",
                     "<style type=\"text/css\">",
                     " .lasso_instructions{",
                     "    font-size: 15px;",
@@ -93,8 +134,8 @@
                     "</style>",
                     "<!-- Button trigger modal -->",
                     "<button type=\"button\" class=\"btn btn-default\" data-toggle=\"modal\" data-target=\"#lasso-motivation-modal\">",
-                    " Introduction and motivation",
-                    "</button>",
+                    " Background",
+                    "</button>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;",
                     "",
                     "<!-- Modal -->",
                     "<div class=\"modal fade\" id=\"lasso-motivation-modal\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"lasso-motivation-modal-label\">",
@@ -102,7 +143,7 @@
                     "    <div class=\"modal-content\">",
                     "      <div class=\"modal-header\">",
                     "        <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\"><span aria-hidden=\"true\">×</span></button>",
-                    "        <h4 class=\"modal-title\" id=\"lasso-motivation-modal-label\">Introduction and motivation</h4>",
+                    "        <h4 class=\"modal-title\" id=\"lasso-motivation-modal-label\">Background</h4>",
                     "      </div>",
                     "      <div class=\"modal-body lasso_instructions\">",
                     "        <p> In this tutorial we present a tool for predicting the crystal structure of octet binary compounds, by using a set of descriptive parameters (a descriptor) based on free-atom data of the atomic species constituting the binary material.</p>",
@@ -138,57 +179,12 @@
                     "      </div>",
                     "    </div>",
                     "  </div>",
-                    "</div>"
-                ],
-                "hidden": true
-            },
-            "output": {
-                "state": {},
-                "result": {
-                    "type": "BeakerDisplay",
-                    "innertype": "Html",
-                    "object": "<script>\nvar beaker = bkHelper.getBeakerObject().beakerObj;\n</script>\n<style type=\"text/css\">\n .lasso_instructions{\n    font-size: 15px;\n  } \n</style>\n<!-- Button trigger modal -->\n<button type=\"button\" class=\"btn btn-default\" data-toggle=\"modal\" data-target=\"#lasso-motivation-modal\">\n Introduction and motivation\n</button>\n\n<!-- Modal -->\n<div class=\"modal fade\" id=\"lasso-motivation-modal\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"lasso-motivation-modal-label\">\n  <div class=\"modal-dialog modal-lg\" role=\"document\">\n    <div class=\"modal-content\">\n      <div class=\"modal-header\">\n        <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\"><span aria-hidden=\"true\">×</span></button>\n        <h4 class=\"modal-title\" id=\"lasso-motivation-modal-label\">Introduction and motivation</h4>\n      </div>\n      <div class=\"modal-body lasso_instructions\">\n        <p> In this tutorial we present a tool for predicting the crystal structure of octet binary compounds, by using a set of descriptive parameters (a descriptor) based on free-atom data of the atomic species constituting the binary material.</p>\n\n        <p>In this example, we address only Rocksalt (RS) and Zincblende (ZB) crystal structures, that are the most common for the material class of octet binaries. Specifically, the tool predicts the difference in total energy between RS and ZB equilibrated structures (i.e., each structure is relaxed to its local minimum).</p>\n\n        <p>The prediction of RS vs ZB structure from a simple descriptor has a notable history in materials science [1-7], where descriptors were designed by chemically/physically-inspired intuition. The tool presented here allows for the machine-learning-aided automatic discovery of a descriptor and a model for the prediction of the difference in energy between RS and ZB for 82 octet binary materials.</p>\n\n        <p>The tool is based on Compressed-sensing (LASSO performed on a tailor-made feature space, followed by L0-regularized minimization, click <a href=\"https://gitlab.rzg.mpg.de/nomad-lab/public-wiki/wikis/analytics/LASSO_L0\" target=\"_blank\">here</a> for more info on the LASSO+L0 method), as introduced in:  </p>\n\n        <p> \"Big Data of Materials Science: Critical Role of the Descriptor\". L. M. Ghiringhelli, J. Vybiral, S. V. Levchenko, C. Draxl, and M. Scheffler Phys. Rev. Lett. 114, 105503 (2015) <a href=\"http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.114.105503\" target=\"_blank\"> (Click here for the free access pdf) </a></p>\n\n        <p> By running the tutorial with the default setting, the results of the <a href=\"http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.114.105503\" target=\"_blank\">PRL 2015</a> can be recovered. In particular, by clicking on “View interactive 2D plot”, an interactive structure-map (a chart where different structures are located in different regions of a low-dimensional representation, here two dimensional) will be opened in a new tab, similar to the following (an extended version of Fig. 2 in <a href=\"http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.114.105503\" target=\"_blank\">PRL 2015</a>): </p>\n        \n        <img style=\"width:67%;height:67%\" src=\"https://gitlab.mpcdf.mpg.de/nomad-lab/public-wiki/uploads/eb33f1415db1b6d489cbbc3e6a899942/2016-08-02_ZB_RS3-2.png\">\n        <br>\n        <br>\n        <p> In this map the octet binaries are located via the descriptor found by our LASSO+L0 approach. The descriptor is based purely on free-atom data, namely radii of the s and p valence orbitals (rs and rp) of the atomic species and their Ionizaiton Potential and Electron Affinity (IP and EA). Mateirals in the red (bue) region crystallize preferably in the zincblende (rocksalt) structure. The distance to the green line is proportional to the difference in energy between the two structures. In the interactive plot accessible at the end of the learning performed by the present tool, one can obtain information on the materials by hovering and clicking on the data points. </p>\n        <p>References:</p>\n        <ol>\n          <li>J. A. van Vechten, Phys. Rev. 182, 891 (1969).</li>\n          <li>J. C. Phillips, Rev. Mod. Phys. 42, 317 (1970).</li>\n          <li>J. St. John and A.N. Bloch, Phys. Rev. Lett. 33, 1095 (1974).</li>\n          <li>J. R. Chelikowsky and J. C. Phillips, Phys. Rev. B 17, 2453 (1978).</li>\n          <li>A. Zunger, Phys. Rev. B 22, 5839 (1980).</li>\n          <li>D. G. Pettifor, Solid State Commun. 51, 31 (1984).</li>\n          <li>Y. Saad, D. Gao, T. Ngo, S. Bobbitt, J. R. Chelikowsky, and W. Andreoni, Phys. Rev. B 85, 104104 (2012).</li>\n        </ol>\n      </div>\n      <div class=\"modal-footer\">\n        <button type=\"button\" class=\"btn btn-default\" data-dismiss=\"modal\">Close</button>\n<!--         <button type=\"button\" class=\"btn btn-primary\">Save changes</button> -->\n      </div>\n    </div>\n  </div>\n</div>"
-                },
-                "selectedType": "BeakerDisplay",
-                "elapsedTime": 1,
-                "height": 72
-            },
-            "evaluatorReader": true,
-            "lineCount": 53
-        },
-        {
-            "id": "markdowntnAHej",
-            "type": "markdown",
-            "body": [
-                "<p style=\"font-size: 15px;\"> <b> Machine learning method: </b> Compressed sensing (LASSO performed on a tailor-made feature space, followed by L0-regularized minimization).<br>",
-                "Click <a href=\"https://gitlab.rzg.mpg.de/nomad-lab/public-wiki/wikis/analytics/LASSO_L0\" target=\"_blank\"> here </a> for more info on the LASSO+L0 method.</p>"
-            ],
-            "evaluatorReader": false
-        },
-        {
-            "id": "markdownBKmhbj",
-            "type": "markdown",
-            "body": [
-                "<p style=\"font-size: 15px;\"> <b> Reference: </b> \"Big Data of Materials Science: Critical Role of the Descriptor\" <br>",
-                "L. M. Ghiringhelli, J. Vybiral, S. V. Levchenko, C. Draxl, and M. Scheffler, Phys. Rev. Lett. 114, 105503 (2015)  <a href=\"http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.114.105503\" target=\"_blank\"> (Click here for the free access pdf) </a> </p>"
-            ],
-            "evaluatorReader": false
-        },
-        {
-            "id": "codeZ2DSp3",
-            "type": "code",
-            "evaluator": "HTML",
-            "input": {
-                "body": [
-                    "<style type=\"text/css\">",
-                    " .lasso_instructions{",
-                    "    font-size: 15px;",
-                    "  } ",
-                    "</style>",
+                    "</div>",
+                    "",
                     "<!-- Button trigger modal -->",
                     "<button type=\"button\" class=\"btn btn-default\" data-toggle=\"modal\" data-target=\"#lasso-instructions-modal\">",
                     " Instructions",
-                    "</button>",
+                    "</button>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;",
                     "",
                     "<!-- Modal -->",
                     "<div class=\"modal fade\" id=\"lasso-instructions-modal\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"lasso-instructions-modal-label\">",
@@ -204,9 +200,9 @@
                     "<p>The descriptor is selected out of a large number of candidates constructed as functions of basic input features, the primary features. </p>",
                     "",
                     "<p>You can select the primary features as well as which kind of unary and binary operations are allowed from the checklist below. You can also select the maximum dimensionality of the descriptor. </p>",
-                    "<p>        After the wished features have been selected, click <b>Run LASSO+L0</b> for performing the calculations (loading the values of the primary features, creation of the feature space, and optimization via LASSO+L0). </p>",
+                    "<p>        After the wished features have been selected, click <b>RUN!</b> for performing the calculations (loading the values of the primary features, creation of the feature space, and optimization via LASSO+L0). </p>",
                     "",
-                    "During the run, a brief summary is printed out below the <b>Run LASSO+L0 </b> button. At the end of the run: ",
+                    "During the run, a brief summary is printed out below the <b>RUN!</b> button. At the end of the run: ",
                     "  <ul>",
                     "  <li> the solution (machine-learned descriptor, model, and its performance in terms of training error) is printed out underneath starting from the one-dimensional solution to the selected maximum dimensionality and</li>",
                     "<li> the “View interactive 2D scatter plot” button unlocks; by clicking, the scatter plot with the two-dimensional descriptor appears in a separate tab. In case a dimensionality higher than 2 was selected for the descriptor, the plot displays the first two dimensions.</li>",
@@ -219,7 +215,15 @@
                     "      </div>",
                     "    </div>",
                     "  </div>",
-                    "</div>"
+                    "</div>",
+                    "",
+                    "<!-- Button trigger modal -->",
+                    "<button type=\"button\" class=\"btn btn-default\" onclick='toggle_settings()'>",
+                    " Settings",
+                    "</button>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;",
+                    "",
+                    "",
+                    "<a target=\"_blank\" href=\"http://forum.analytics-toolkit.nomad-coe.eu/\" class=\"btn btn-primary\"> Tell us what you think</a>"
                 ],
                 "hidden": true
             },
@@ -228,117 +232,69 @@
                 "result": {
                     "type": "BeakerDisplay",
                     "innertype": "Html",
-                    "object": "<script>\nvar beaker = bkHelper.getBeakerObject().beakerObj;\n</script>\n<style type=\"text/css\">\n .lasso_instructions{\n    font-size: 15px;\n  } \n</style>\n<!-- Button trigger modal -->\n<button type=\"button\" class=\"btn btn-default\" data-toggle=\"modal\" data-target=\"#lasso-instructions-modal\">\n Instructions\n</button>\n\n<!-- Modal -->\n<div class=\"modal fade\" id=\"lasso-instructions-modal\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"lasso-instructions-modal-label\" style=\"display: none;\">\n  <div class=\"modal-dialog\" role=\"document\">\n    <div class=\"modal-content\">\n      <div class=\"modal-header\">\n        <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\"><span aria-hidden=\"true\">×</span></button>\n        <h4 class=\"modal-title\" id=\"lasso-instructions-modal-label\">Instructions</h4>\n      </div>\n      <div class=\"modal-body lasso_instructions\">\n<p>In this example, you can run a compressed-sensing based algorithm for finding the optimal descriptor and model that predicts the difference in energy between crystal structures (here, rocksalt vs. zincblende). </p>\n\n<p>The descriptor is selected out of a large number of candidates constructed as functions of basic input features, the primary features. </p>\n\n<p>You can select the primary features as well as which kind of unary and binary operations are allowed from the checklist below. You can also select the maximum dimensionality of the descriptor. </p>\n<p>        After the wished features have been selected, click <b>Run LASSO+L0</b> for performing the calculations (loading the values of the primary features, creation of the feature space, and optimization via LASSO+L0). </p>\n\nDuring the run, a brief summary is printed out below the <b>Run LASSO+L0 </b> button. At the end of the run: \n  <ul>\n  <li> the solution (machine-learned descriptor, model, and its performance in terms of training error) is printed out underneath starting from the one-dimensional solution to the selected maximum dimensionality and</li>\n<li> the “View interactive 2D scatter plot” button unlocks; by clicking, the scatter plot with the two-dimensional descriptor appears in a separate tab. In case a dimensionality higher than 2 was selected for the descriptor, the plot displays the first two dimensions.</li>\n</ul>\n<p>Note: the plot stays active also after another run is performed, so that the output of several sets of input parameters can be compared in the viewer tabs.</p>\n      </div>\n      <div class=\"modal-footer\">\n        <button type=\"button\" class=\"btn btn-default\" data-dismiss=\"modal\">Close</button>\n<!--         <button type=\"button\" class=\"btn btn-primary\">Save changes</button> -->\n      </div>\n    </div>\n  </div>\n</div>"
+                    "object": "<script>\nvar beaker = bkHelper.getBeakerObject().beakerObj;\n</script>\n<script>\nvar run_lasso = function() {\n  $(\"#lasso_result_button\").removeClass(\"active\").addClass(\"disabled\");\n  getFeatures();\n  getOperators();\n  getMaxDim();\n  beaker.evaluate(\"lasso_cell\"); // evaluate cells with tag \"lasso_cell\"\n // view_result()\n};\nvar reset_lasso = function(){\n  beaker.evaluate(\"lasso-settings-cell\");\n  var e = document.getElementById('lasso-hidden-settings-div');\n  var b = document.getElementById('lasso-hidden-settings-button');\n  e.style.display = 'block';\n  b.style.display = 'inline';\n};\nvar getFeatures = function() {\n    beaker.selected_feature_list = [];\n    $('#lasso_features_select input:checkbox').each(function () {\n        if(this.checked )\n          beaker.selected_feature_list.push(this.value);\n    });\n};\nvar getOperators = function() {\n    beaker.allowed_operations = [];\n    $('#lasso_operators_select input:checkbox').each(function () {\n        if(this.checked )\n          beaker.allowed_operations.push(this.value);\n    });\n};  \nvar getMaxDim = function() {\n   beaker.max_dim = $(\"#lasso_max_dim_selector\").val();\n};\nvar toggle_settings = function(){\n  var e = document.getElementById('lasso-hidden-settings-div');\n  var b = document.getElementById('lasso-hidden-settings-button');\n  if(e.style.display == 'block'){\n    e.style.display = 'none';\n    b.style.display = 'none';\n  }\n  else{\n    e.style.display = 'block';\n    b.style.display = 'inline';\n  }\n};\nbeaker.view_result = function(result_link) {\n//   beaker.evaluate(\"lasso_viewer_result\").then(function(x) {\n    $(\"#lasso_result_button\").attr(\"href\", result_link);\n//   }); \n  $(\"#lasso_result_button\").removeClass(\"disabled\").addClass(\"active\");\n}\n</script>\n<style type=\"text/css\">\n .lasso_instructions{\n    font-size: 15px;\n  } \n</style>\n<!-- Button trigger modal -->\n<button type=\"button\" class=\"btn btn-default\" data-toggle=\"modal\" data-target=\"#lasso-motivation-modal\">\n Background\n</button>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\n\n<!-- Modal -->\n<div class=\"modal fade\" id=\"lasso-motivation-modal\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"lasso-motivation-modal-label\">\n  <div class=\"modal-dialog modal-lg\" role=\"document\">\n    <div class=\"modal-content\">\n      <div class=\"modal-header\">\n        <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\"><span aria-hidden=\"true\">×</span></button>\n        <h4 class=\"modal-title\" id=\"lasso-motivation-modal-label\">Background</h4>\n      </div>\n      <div class=\"modal-body lasso_instructions\">\n        <p> In this tutorial we present a tool for predicting the crystal structure of octet binary compounds, by using a set of descriptive parameters (a descriptor) based on free-atom data of the atomic species constituting the binary material.</p>\n\n        <p>In this example, we address only Rocksalt (RS) and Zincblende (ZB) crystal structures, that are the most common for the material class of octet binaries. Specifically, the tool predicts the difference in total energy between RS and ZB equilibrated structures (i.e., each structure is relaxed to its local minimum).</p>\n\n        <p>The prediction of RS vs ZB structure from a simple descriptor has a notable history in materials science [1-7], where descriptors were designed by chemically/physically-inspired intuition. The tool presented here allows for the machine-learning-aided automatic discovery of a descriptor and a model for the prediction of the difference in energy between RS and ZB for 82 octet binary materials.</p>\n\n        <p>The tool is based on Compressed-sensing (LASSO performed on a tailor-made feature space, followed by L0-regularized minimization, click <a href=\"https://gitlab.rzg.mpg.de/nomad-lab/public-wiki/wikis/analytics/LASSO_L0\" target=\"_blank\">here</a> for more info on the LASSO+L0 method), as introduced in:  </p>\n\n        <p> \"Big Data of Materials Science: Critical Role of the Descriptor\". L. M. Ghiringhelli, J. Vybiral, S. V. Levchenko, C. Draxl, and M. Scheffler Phys. Rev. Lett. 114, 105503 (2015) <a href=\"http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.114.105503\" target=\"_blank\"> (Click here for the free access pdf) </a></p>\n\n        <p> By running the tutorial with the default setting, the results of the <a href=\"http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.114.105503\" target=\"_blank\">PRL 2015</a> can be recovered. In particular, by clicking on “View interactive 2D plot”, an interactive structure-map (a chart where different structures are located in different regions of a low-dimensional representation, here two dimensional) will be opened in a new tab, similar to the following (an extended version of Fig. 2 in <a href=\"http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.114.105503\" target=\"_blank\">PRL 2015</a>): </p>\n        \n        <img style=\"width:67%;height:67%\" src=\"https://gitlab.mpcdf.mpg.de/nomad-lab/public-wiki/uploads/eb33f1415db1b6d489cbbc3e6a899942/2016-08-02_ZB_RS3-2.png\">\n        <br>\n        <br>\n        <p> In this map the octet binaries are located via the descriptor found by our LASSO+L0 approach. The descriptor is based purely on free-atom data, namely radii of the s and p valence orbitals (rs and rp) of the atomic species and their Ionizaiton Potential and Electron Affinity (IP and EA). Materials in the red (bue) region crystallize preferably in the zincblende (rocksalt) structure. The distance to the green line is proportional to the difference in energy between the two structures. In the interactive plot accessible at the end of the learning performed by the present tool, one can obtain information on the materials by hovering and clicking on the data points. </p>\n        <p>References:</p>\n        <ol>\n          <li>J. A. van Vechten, Phys. Rev. 182, 891 (1969).</li>\n          <li>J. C. Phillips, Rev. Mod. Phys. 42, 317 (1970).</li>\n          <li>J. St. John and A.N. Bloch, Phys. Rev. Lett. 33, 1095 (1974).</li>\n          <li>J. R. Chelikowsky and J. C. Phillips, Phys. Rev. B 17, 2453 (1978).</li>\n          <li>A. Zunger, Phys. Rev. B 22, 5839 (1980).</li>\n          <li>D. G. Pettifor, Solid State Commun. 51, 31 (1984).</li>\n          <li>Y. Saad, D. Gao, T. Ngo, S. Bobbitt, J. R. Chelikowsky, and W. Andreoni, Phys. Rev. B 85, 104104 (2012).</li>\n        </ol>\n      </div>\n      <div class=\"modal-footer\">\n        <button type=\"button\" class=\"btn btn-default\" data-dismiss=\"modal\">Close</button>\n<!--         <button type=\"button\" class=\"btn btn-primary\">Save changes</button> -->\n      </div>\n    </div>\n  </div>\n</div>\n\n<!-- Button trigger modal -->\n<button type=\"button\" class=\"btn btn-default\" data-toggle=\"modal\" data-target=\"#lasso-instructions-modal\">\n Instructions\n</button>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\n\n<!-- Modal -->\n<div class=\"modal fade\" id=\"lasso-instructions-modal\" tabindex=\"-1\" role=\"dialog\" aria-labelledby=\"lasso-instructions-modal-label\">\n  <div class=\"modal-dialog\" role=\"document\">\n    <div class=\"modal-content\">\n      <div class=\"modal-header\">\n        <button type=\"button\" class=\"close\" data-dismiss=\"modal\" aria-label=\"Close\"><span aria-hidden=\"true\">×</span></button>\n        <h4 class=\"modal-title\" id=\"lasso-instructions-modal-label\">Instructions</h4>\n      </div>\n      <div class=\"modal-body lasso_instructions\">\n<p>In this example, you can run a compressed-sensing based algorithm for finding the optimal descriptor and model that predicts the difference in energy between crystal structures (here, rocksalt vs. zincblende). </p>\n\n<p>The descriptor is selected out of a large number of candidates constructed as functions of basic input features, the primary features. </p>\n\n<p>You can select the primary features as well as which kind of unary and binary operations are allowed from the checklist below. You can also select the maximum dimensionality of the descriptor. </p>\n<p>        After the wished features have been selected, click <b>RUN!</b> for performing the calculations (loading the values of the primary features, creation of the feature space, and optimization via LASSO+L0). </p>\n\nDuring the run, a brief summary is printed out below the <b>RUN!</b> button. At the end of the run: \n  <ul>\n  <li> the solution (machine-learned descriptor, model, and its performance in terms of training error) is printed out underneath starting from the one-dimensional solution to the selected maximum dimensionality and</li>\n<li> the “View interactive 2D scatter plot” button unlocks; by clicking, the scatter plot with the two-dimensional descriptor appears in a separate tab. In case a dimensionality higher than 2 was selected for the descriptor, the plot displays the first two dimensions.</li>\n</ul>\n<p>Note: the plot stays active also after another run is performed, so that the output of several sets of input parameters can be compared in the viewer tabs.</p>\n      </div>\n      <div class=\"modal-footer\">\n        <button type=\"button\" class=\"btn btn-default\" data-dismiss=\"modal\">Close</button>\n<!--         <button type=\"button\" class=\"btn btn-primary\">Save changes</button> -->\n      </div>\n    </div>\n  </div>\n</div>\n\n<!-- Button trigger modal -->\n<button type=\"button\" class=\"btn btn-default\" onclick=\"toggle_settings()\">\n Settings\n</button>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\n\n\n<a target=\"_blank\" href=\"http://forum.analytics-toolkit.nomad-coe.eu/\" class=\"btn btn-primary\"> Tell us what you think</a>"
                 },
                 "selectedType": "BeakerDisplay",
                 "elapsedTime": 0,
-                "height": 72
+                "height": 52
             },
             "evaluatorReader": true,
-            "lineCount": 40
+            "lineCount": 149
         },
         {
-            "id": "lasso_gui",
+            "id": "lasso-settings-cell",
             "type": "code",
             "evaluator": "HTML",
             "input": {
                 "body": [
-                    "<script>",
-                    "var run_lasso = function() {",
-                    "  $(\"#lasso_result_button\").removeClass(\"active\").addClass(\"disabled\");",
-                    "  getFeatures();",
-                    "  getOperators();",
-                    "  getMaxDim();",
-                    "  beaker.evaluate(\"lasso_cell\"); // evaluate cells with tag \"lasso_cell\"",
-                    " // view_result()",
-                    "};",
-                    "var reset_lasso = function(){",
-                    "  beaker.evaluate(\"lasso_gui\");",
-                    "};",
-                    "var getFeatures = function() {",
-                    "    beaker.selected_feature_list = [];",
-                    "    $('#lasso_features_select input:checkbox').each(function () {",
-                    "        if(this.checked )",
-                    "          beaker.selected_feature_list.push(this.value);",
-                    "    });",
-                    "};",
-                    "var getOperators = function() {",
-                    "    beaker.allowed_operations = [];",
-                    "    $('#lasso_operators_select input:checkbox').each(function () {",
-                    "        if(this.checked )",
-                    "          beaker.allowed_operations.push(this.value);",
-                    "    });",
-                    "};  ",
-                    "var getMaxDim = function() {",
-                    "   beaker.max_dim = $(\"#lasso_max_dim_selector\").val();",
-                    "};",
-                    "beaker.view_result = function(result_link) {",
-                    "//   beaker.evaluate(\"lasso_viewer_result\").then(function(x) {",
-                    "    $(\"#lasso_result_button\").attr(\"href\", result_link);",
-                    "//   }); ",
-                    "  $(\"#lasso_result_button\").removeClass(\"disabled\").addClass(\"active\");",
-                    "}",
-                    "</script>",
                     "<style type=\"text/css\">",
-                    "    label {",
-                    "    font-size: 18px;",
-                    "  }",
-                    " .lasso_control{",
-                    "    font-size: 18px;",
+                    " #lasso-hidden-settings-div{",
+                    "    display:none;",
+                    "  } ",
+                    " #lasso-hidden-settings-button{",
+                    "    display:none;",
                     "  }   ",
-                    ".lasso_form_group input {",
-                    "    width: 15px;",
-                    "    height: 15px;",
-                    "    padding: 0;",
-                    "    margin:0;",
-                    "    padding-right:5px; ",
-                    "    vertical-align: bottom;",
-                    "    top: -1px;",
-                    "} ",
-                    " .lasso_selection_description{",
-                    "        padding: 10px 15px;",
-                    "  }",
                     "</style>",
-                    "<div class=\"lasso_control\">",
+                    "<div class=\"lasso_control\" id=\"lasso-hidden-settings-div\">",
                     "  <div class=\"row\">",
                     "    <p class=\"lasso_selection_description\"><b>Primary features </b>",
                     "  (hover the mouse",
                     "pointer over the feature names to see a full description):</p>",
                     "    <form id=\"lasso_features_select\">",
                     "      <div class=\"lasso_form_group\">",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\" title=\"Ionization potential of atom A\"> <input type=\"checkbox\" value=\"IP(A)\" CHECKED > <i>IP</i> <sup>A</sup></label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"IP(B)\" CHECKED > <span title=\"Ionization potential of atom B\"><i>IP</i> <sup>B</sup></span></label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"EA(A)\" CHECKED > <span title=\"Electron affinity of atom A\"> <i>EA</i> <sup>A</sup></span></label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"EA(B)\" CHECKED > <span title=\"Electron affinity of atom B\"> <i>EA</i> <sup>B</sup></span></label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"HOMO(A)\" CHECKED > <span title=\"Energy of highest occupied molecular orbital for atom A\"><i>E</i> <sup>A</sup><sub>HOMO</sub></span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"HOMO(B)\" CHECKED > <span title=\"Energy of highest occupied molecular orbital for atom B\"> <i>E</i> <sup>B</sup><sub>HOMO</sub>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"LUMO(A)\" CHECKED > <span title=\"Energy of lowest unoccupied molecular orbital for atom A\"> <i>E</i> <sup>A</sup><sub>LUMO</sub>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"LUMO(B)\" CHECKED > <span title=\"Energy of lowest unoccupied molecular orbital for atom B\"> <i>E</i> <sup>B</sup><sub>LUMO</sub>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"rs(A)\" CHECKED > <span title=\"Radius at which the radial probability density of the valence s orbital is maximum for atom A\"> <i>r</i><sub>s</sub><sup>A</sup>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"rs(B)\" CHECKED > <span title=\"Radius at which the radial probability density of the valence s orbital is maximum for atom B\"> <i>r</i><sub>s</sub><sup>B</sup>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"rp(A)\" CHECKED > <span title=\"Radius at which the radial probability density of the valence p orbital is maximum for atom A\"> <i>r</i><sub>p</sub><sup>A</sup>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"rp(B)\" CHECKED > <span title=\"Radius at which the radial probability density of the valence p orbital is maximum for atom B\"> <i>r</i><sub>p</sub><sup>B</sup>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"rd(A)\" CHECKED > <span title=\"Radius at which the radial probability density of the valence d orbital is maximum for atom A\"> <i>r</i><sub>d</sub><sup>A</sup>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"rd(B)\" CHECKED > <span title=\"Radius at which the radial probability density of the valence d orbital is maximum for atom B\"> <i>r</i><sub>d</sub><sup>B</sup>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"d_AA\" > <span title=\"Bond length of atomA-atomA dimer\"> <i>d</i><sup>AA</sup>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"d_BB\"> <span title=\"Bond length of atomB-atomB dimer\"> <i>d</i><sup>BB</sup>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"HL_gap_AA\" > <span title=\"HOMO-LUMO gap of atomA-atomA dimer\"> Δ<i>E</i> <sup>AA</sup><sub>HL</sub>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"HL_gap_BB\" > <span title=\"HOMO-LUMO gap of atomB-atomB dimer\"> Δ<i>E</i> <sup>BB</sup><sub>HL</sub>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"Ebinding_AA\" > <span title=\"Binding energy of atomA-atomA dimer\"> <i>E</i> <sup>AA</sup><sub>b</sub>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"Ebinding_BB\" > <span title=\"Binding energy of atomB-atomB dimer\"> <i>E</i> <sup>BB</sup><sub>b</sub>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"Z(A)\" > <span title=\"Atomic number of atom A\"> <i>Z</i> <sup>A</sup>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"Z(B)\" > <span title=\"Atomic number of atom B\"> <i>Z</i> <sup>B</sup>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"val(A)\" > <span title=\"Number of valence electron of atom A\"> <i>Z</i> <sup>A</sup><sub>val</sub>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"val(B)\" > <span title=\"Number of valence electron of atom B\"> <i>Z</i> <sup>B</sup><sub>val</sub>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"period(A)\" > <span title=\"Period (in the periodic table) of atom A\"> <i>n</i> <sup>A</sup><sub>period</sub>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"period(B)\" > <span title=\"Period (in the periodic table) of atom B\"> <i>n</i> <sup>B</sup><sub>period</sub>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"r_sigma\" > <span title=\"John-Bloch's indicator1: |rp(A) + rs(A) - rp(B) -rs(B)| ",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\" title=\"Ionization potential of atom A\"> <input type=\"checkbox\" value=\"IP(A)\" CHECKED > <i>IP</i> <sup>A</sup></label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"IP(B)\" CHECKED > <span title=\"Ionization potential of atom B\"><i>IP</i> <sup>B</sup></span></label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"EA(A)\" CHECKED > <span title=\"Electron affinity of atom A\"> <i>EA</i> <sup>A</sup></span></label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"EA(B)\" CHECKED > <span title=\"Electron affinity of atom B\"> <i>EA</i> <sup>B</sup></span></label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"HOMO(A)\" CHECKED > <span title=\"Energy of highest occupied molecular orbital for atom A\"><i>E</i> <sup>A</sup><sub>HOMO</sub></span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"HOMO(B)\" CHECKED > <span title=\"Energy of highest occupied molecular orbital for atom B\"> <i>E</i> <sup>B</sup><sub>HOMO</sub>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"LUMO(A)\" CHECKED > <span title=\"Energy of lowest unoccupied molecular orbital for atom A\"> <i>E</i> <sup>A</sup><sub>LUMO</sub>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"LUMO(B)\" CHECKED > <span title=\"Energy of lowest unoccupied molecular orbital for atom B\"> <i>E</i> <sup>B</sup><sub>LUMO</sub>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"rs(A)\" CHECKED > <span title=\"Radius at which the radial probability density of the valence s orbital is maximum for atom A\"> <i>r</i><sub>s</sub><sup>A</sup>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"rs(B)\" CHECKED > <span title=\"Radius at which the radial probability density of the valence s orbital is maximum for atom B\"> <i>r</i><sub>s</sub><sup>B</sup>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"rp(A)\" CHECKED > <span title=\"Radius at which the radial probability density of the valence p orbital is maximum for atom A\"> <i>r</i><sub>p</sub><sup>A</sup>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"rp(B)\" CHECKED > <span title=\"Radius at which the radial probability density of the valence p orbital is maximum for atom B\"> <i>r</i><sub>p</sub><sup>B</sup>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"rd(A)\" CHECKED > <span title=\"Radius at which the radial probability density of the valence d orbital is maximum for atom A\"> <i>r</i><sub>d</sub><sup>A</sup>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"rd(B)\" CHECKED > <span title=\"Radius at which the radial probability density of the valence d orbital is maximum for atom B\"> <i>r</i><sub>d</sub><sup>B</sup>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"d_AA\" > <span title=\"Bond length of atomA-atomA dimer\"> <i>d</i><sup>AA</sup>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"d_BB\"> <span title=\"Bond length of atomB-atomB dimer\"> <i>d</i><sup>BB</sup>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"HL_gap_AA\" > <span title=\"HOMO-LUMO gap of atomA-atomA dimer\"> Δ<i>E</i> <sup>AA</sup><sub>HL</sub>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"HL_gap_BB\" > <span title=\"HOMO-LUMO gap of atomB-atomB dimer\"> Δ<i>E</i> <sup>BB</sup><sub>HL</sub>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"Ebinding_AA\" > <span title=\"Binding energy of atomA-atomA dimer\"> <i>E</i> <sup>AA</sup><sub>b</sub>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"Ebinding_BB\" > <span title=\"Binding energy of atomB-atomB dimer\"> <i>E</i> <sup>BB</sup><sub>b</sub>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"Z(A)\" > <span title=\"Atomic number of atom A\"> <i>Z</i> <sup>A</sup>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"Z(B)\" > <span title=\"Atomic number of atom B\"> <i>Z</i> <sup>B</sup>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"val(A)\" > <span title=\"Number of valence electron of atom A\"> <i>Z</i> <sup>A</sup><sub>val</sub>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"val(B)\" > <span title=\"Number of valence electron of atom B\"> <i>Z</i> <sup>B</sup><sub>val</sub>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"period(A)\" > <span title=\"Period (in the periodic table) of atom A\"> <i>n</i> <sup>A</sup><sub>period</sub>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"period(B)\" > <span title=\"Period (in the periodic table) of atom B\"> <i>n</i> <sup>B</sup><sub>period</sub>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"r_sigma\" > <span title=\"John-Bloch's indicator1: |rp(A) + rs(A) - rp(B) -rs(B)| ",
                     "           [Phys. Rev. Lett. 33. 1095 (1974)]\"> r<sub>σ</sub>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"r_pi\" > <span title=\"John-Bloch's indicator2: |rp(A) - rs(A)| +| rp(B) -rs(B)| ",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"r_pi\" > <span title=\"John-Bloch's indicator2: |rp(A) - rs(A)| +| rp(B) -rs(B)| ",
                     "          [Phys. Rev. Lett. 33. 1095 (1974)]\">  r<sub>π</sub>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"d_AB\" > <span title=\"Bond length of atomA-atomB dimer\"> <i>d</i><sup>AB</sup>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"HL_gap_AB\" > <span title=\"HOMO-LUMO gap of atomA-atomB dimer\"> Δ<i>E</i> <sup>AB</sup><sub>HL</sub>  </span> </label>",
-                    "         <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"Ebinding_AB\" > <span title=\"Binding energy of atomA-atomB dimer\"> <i>E</i> <sup>AB</sup><sub>b</sub>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"d_AB\" > <span title=\"Bond length of atomA-atomB dimer\"> <i>d</i><sup>AB</sup>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"HL_gap_AB\" > <span title=\"HOMO-LUMO gap of atomA-atomB dimer\"> Δ<i>E</i> <sup>AB</sup><sub>HL</sub>  </span> </label>",
+                    "         <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"Ebinding_AB\" > <span title=\"Binding energy of atomA-atomB dimer\"> <i>E</i> <sup>AB</sup><sub>b</sub>  </span> </label>",
                     "      </div>",
                     "    </form>",
                     "  </div>  <!-- End of row-->",
@@ -347,14 +303,14 @@
                     "  Given features x and y, apply these operations:</p>",
                     "    <form id=\"lasso_operators_select\">",
                     "      <div class=\"lasso_form_group\">",
-                    "        <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"|+|\" CHECKED > |x+y|  </label>",
-                    "        <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"+\" > x+y  </label>",
-                    "        <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"|-|\" CHECKED > |x-y|  </label>",
-                    "        <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"-\" > x-y  </label>",
-                    "        <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"/\" CHECKED > x/y  </label>",
-                    "        <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"^2\" CHECKED > x^2  </label>",
-                    "        <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"^3\" > x^3  </label>",
-                    "        <label class =\"col-xs-4 col-md-4 col-lg-1\"> <input type=\"checkbox\" value=\"exp\" CHECKED > exp(x)  </label>",
+                    "        <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"|+|\" CHECKED > |x+y|  </label>",
+                    "        <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"+\" > x+y  </label>",
+                    "        <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"|-|\" CHECKED > |x-y|  </label>",
+                    "        <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"-\" > x-y  </label>",
+                    "        <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"/\" CHECKED > x/y  </label>",
+                    "        <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"^2\" CHECKED > x^2  </label>",
+                    "        <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"^3\" > x^3  </label>",
+                    "        <label class =\"col-xs-4 col-md-4 col-lg-3\"> <input type=\"checkbox\" value=\"exp\" CHECKED > exp(x)  </label>",
                     "      </div>",
                     "    </form>",
                     "  </div>  <!-- End of row-->",
@@ -368,8 +324,42 @@
                     "  </select> </p>",
                     "  </div><!-- End of row-->",
                     "<!-- <span title=''> <img src=\"http://images.clipartpanda.com/question-purzen_Icon_with_question_mark_Vector_Clipart.png\" style=\"height: 30px; width: 30px;\"> </span> -->",
-                    "  <button class=\"btn btn-default\" onclick='run_lasso()'>RUN LASSO+L0</button>",
-                    "  <button class=\"btn btn-default\" onclick='reset_lasso()'>RESET</button>",
+                    "<!--   <button class=\"btn btn-default\" onclick='run_lasso()'>RUN LASSO+L0</button> -->",
+                    "<!--   <button class=\"btn btn-default\" onclick='reset_lasso()'>RESET</button> -->",
+                    "<!--   <label title=\"This button becomes active when the",
+                    "run is finished. By clicking it, an interactive plot of the first 2",
+                    "dimensions of the optimized descriptor will be opened\"> ",
+                    "  <a href=\"#\" target=\"_blank\" class=\"btn btn-primary disabled\" id=\"lasso_result_button\" >View interactive 2D scatter plot</a> </label> -->",
+                    "</div>"
+                ],
+                "hidden": true
+            },
+            "output": {
+                "state": {},
+                "result": {
+                    "type": "BeakerDisplay",
+                    "innertype": "Html",
+                    "object": "<script>\nvar beaker = bkHelper.getBeakerObject().beakerObj;\n</script>\n<style type=\"text/css\">\n #lasso-hidden-settings-div{\n    display:none;\n  } \n #lasso-hidden-settings-button{\n    display:none;\n  }   \n</style>\n<div class=\"lasso_control\" id=\"lasso-hidden-settings-div\">\n  <div class=\"row\">\n    <p class=\"lasso_selection_description\"><b>Primary features </b>\n  (hover the mouse\npointer over the feature names to see a full description):</p>\n    <form id=\"lasso_features_select\">\n      <div class=\"lasso_form_group\">\n         <label class=\"col-xs-4 col-md-4 col-lg-3\" title=\"Ionization potential of atom A\"> <input value=\"IP(A)\" checked=\"\" type=\"checkbox\"> <i>IP</i> <sup>A</sup></label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"IP(B)\" checked=\"\" type=\"checkbox\"> <span title=\"Ionization potential of atom B\"><i>IP</i> <sup>B</sup></span></label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"EA(A)\" checked=\"\" type=\"checkbox\"> <span title=\"Electron affinity of atom A\"> <i>EA</i> <sup>A</sup></span></label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"EA(B)\" checked=\"\" type=\"checkbox\"> <span title=\"Electron affinity of atom B\"> <i>EA</i> <sup>B</sup></span></label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"HOMO(A)\" checked=\"\" type=\"checkbox\"> <span title=\"Energy of highest occupied molecular orbital for atom A\"><i>E</i> <sup>A</sup><sub>HOMO</sub></span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"HOMO(B)\" checked=\"\" type=\"checkbox\"> <span title=\"Energy of highest occupied molecular orbital for atom B\"> <i>E</i> <sup>B</sup><sub>HOMO</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"LUMO(A)\" checked=\"\" type=\"checkbox\"> <span title=\"Energy of lowest unoccupied molecular orbital for atom A\"> <i>E</i> <sup>A</sup><sub>LUMO</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"LUMO(B)\" checked=\"\" type=\"checkbox\"> <span title=\"Energy of lowest unoccupied molecular orbital for atom B\"> <i>E</i> <sup>B</sup><sub>LUMO</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"rs(A)\" checked=\"\" type=\"checkbox\"> <span title=\"Radius at which the radial probability density of the valence s orbital is maximum for atom A\"> <i>r</i><sub>s</sub><sup>A</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"rs(B)\" checked=\"\" type=\"checkbox\"> <span title=\"Radius at which the radial probability density of the valence s orbital is maximum for atom B\"> <i>r</i><sub>s</sub><sup>B</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"rp(A)\" checked=\"\" type=\"checkbox\"> <span title=\"Radius at which the radial probability density of the valence p orbital is maximum for atom A\"> <i>r</i><sub>p</sub><sup>A</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"rp(B)\" checked=\"\" type=\"checkbox\"> <span title=\"Radius at which the radial probability density of the valence p orbital is maximum for atom B\"> <i>r</i><sub>p</sub><sup>B</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"rd(A)\" checked=\"\" type=\"checkbox\"> <span title=\"Radius at which the radial probability density of the valence d orbital is maximum for atom A\"> <i>r</i><sub>d</sub><sup>A</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"rd(B)\" checked=\"\" type=\"checkbox\"> <span title=\"Radius at which the radial probability density of the valence d orbital is maximum for atom B\"> <i>r</i><sub>d</sub><sup>B</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"d_AA\" type=\"checkbox\"> <span title=\"Bond length of atomA-atomA dimer\"> <i>d</i><sup>AA</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"d_BB\" type=\"checkbox\"> <span title=\"Bond length of atomB-atomB dimer\"> <i>d</i><sup>BB</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"HL_gap_AA\" type=\"checkbox\"> <span title=\"HOMO-LUMO gap of atomA-atomA dimer\"> Δ<i>E</i> <sup>AA</sup><sub>HL</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"HL_gap_BB\" type=\"checkbox\"> <span title=\"HOMO-LUMO gap of atomB-atomB dimer\"> Δ<i>E</i> <sup>BB</sup><sub>HL</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"Ebinding_AA\" type=\"checkbox\"> <span title=\"Binding energy of atomA-atomA dimer\"> <i>E</i> <sup>AA</sup><sub>b</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"Ebinding_BB\" type=\"checkbox\"> <span title=\"Binding energy of atomB-atomB dimer\"> <i>E</i> <sup>BB</sup><sub>b</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"Z(A)\" type=\"checkbox\"> <span title=\"Atomic number of atom A\"> <i>Z</i> <sup>A</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"Z(B)\" type=\"checkbox\"> <span title=\"Atomic number of atom B\"> <i>Z</i> <sup>B</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"val(A)\" type=\"checkbox\"> <span title=\"Number of valence electron of atom A\"> <i>Z</i> <sup>A</sup><sub>val</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"val(B)\" type=\"checkbox\"> <span title=\"Number of valence electron of atom B\"> <i>Z</i> <sup>B</sup><sub>val</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"period(A)\" type=\"checkbox\"> <span title=\"Period (in the periodic table) of atom A\"> <i>n</i> <sup>A</sup><sub>period</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"period(B)\" type=\"checkbox\"> <span title=\"Period (in the periodic table) of atom B\"> <i>n</i> <sup>B</sup><sub>period</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"r_sigma\" type=\"checkbox\"> <span title=\"John-Bloch's indicator1: |rp(A) + rs(A) - rp(B) -rs(B)| \n           [Phys. Rev. Lett. 33. 1095 (1974)]\"> r<sub>σ</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"r_pi\" type=\"checkbox\"> <span title=\"John-Bloch's indicator2: |rp(A) - rs(A)| +| rp(B) -rs(B)| \n          [Phys. Rev. Lett. 33. 1095 (1974)]\">  r<sub>π</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"d_AB\" type=\"checkbox\"> <span title=\"Bond length of atomA-atomB dimer\"> <i>d</i><sup>AB</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"HL_gap_AB\" type=\"checkbox\"> <span title=\"HOMO-LUMO gap of atomA-atomB dimer\"> Δ<i>E</i> <sup>AB</sup><sub>HL</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"Ebinding_AB\" type=\"checkbox\"> <span title=\"Binding energy of atomA-atomB dimer\"> <i>E</i> <sup>AB</sup><sub>b</sub>  </span> </label>\n      </div>\n    </form>\n  </div>  <!-- End of row-->\n  <div class=\"row\"> <!-- Start of second row-->\n    <p class=\"lasso_selection_description\"><b>Allowed operations:</b> <br>\n  Given features x and y, apply these operations:</p>\n    <form id=\"lasso_operators_select\">\n      <div class=\"lasso_form_group\">\n        <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"|+|\" checked=\"\" type=\"checkbox\"> |x+y|  </label>\n        <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"+\" type=\"checkbox\"> x+y  </label>\n        <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"|-|\" checked=\"\" type=\"checkbox\"> |x-y|  </label>\n        <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"-\" type=\"checkbox\"> x-y  </label>\n        <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"/\" checked=\"\" type=\"checkbox\"> x/y  </label>\n        <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"^2\" checked=\"\" type=\"checkbox\"> x^2  </label>\n        <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"^3\" type=\"checkbox\"> x^3  </label>\n        <label class=\"col-xs-4 col-md-4 col-lg-3\"> <input value=\"exp\" checked=\"\" type=\"checkbox\"> exp(x)  </label>\n      </div>\n    </form>\n  </div>  <!-- End of row-->\n  <div class=\"row\"> <!-- Start of third row-->\n    <p class=\"lasso_selection_description\"><b>Optimal descriptor maximum dimension: </b> \n  <select id=\"lasso_max_dim_selector\">\n    <option value=\"2\"> 2D</option>\n    <option value=\"3\"> 3D</option>\n    <option value=\"4\"> 4D</option>\n    <option value=\"5\"> 5D</option>\n  </select> </p>\n  </div><!-- End of row-->\n<!-- <span title=''> <img src=\"http://images.clipartpanda.com/question-purzen_Icon_with_question_mark_Vector_Clipart.png\" style=\"height: 30px; width: 30px;\"> </span> -->\n<!--   <button class=\"btn btn-default\" onclick='run_lasso()'>RUN LASSO+L0</button> -->\n<!--   <button class=\"btn btn-default\" onclick='reset_lasso()'>RESET</button> -->\n<!--   <label title=\"This button becomes active when the\nrun is finished. By clicking it, an interactive plot of the first 2\ndimensions of the optimized descriptor will be opened\"> \n  <a href=\"#\" target=\"_blank\" class=\"btn btn-primary disabled\" id=\"lasso_result_button\" >View interactive 2D scatter plot</a> </label> -->\n</div>"
+                },
+                "selectedType": "BeakerDisplay",
+                "elapsedTime": 0,
+                "height": 33
+            },
+            "evaluatorReader": true,
+            "lineCount": 84,
+            "tags": "lasso-setting"
+        },
+        {
+            "id": "codevOZFSW",
+            "type": "code",
+            "evaluator": "HTML",
+            "input": {
+                "body": [
+                    "<div class=\"lasso_control\">",
+                    "",
+                    "  <p style=\"margin-top: 1ex;\"></p>",
+                    "  <button class=\"btn btn-default\" onclick='run_lasso()' style=\"font-weight: bold;\">RUN</button>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;",
+                    "  <div id=\"lasso-hidden-settings-button\"><button class=\"btn btn-default\" onclick='reset_lasso()'>RESET</button>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</div>",
                     "  <label title=\"This button becomes active when the",
                     "run is finished. By clicking it, an interactive plot of the first 2",
                     "dimensions of the optimized descriptor will be opened\"> ",
@@ -380,19 +370,18 @@
                 "hidden": true
             },
             "output": {
-                "selectedType": "BeakerDisplay",
-                "outputArrived": true,
-                "elapsedTime": 0,
                 "state": {},
                 "result": {
                     "type": "BeakerDisplay",
                     "innertype": "Html",
-                    "object": "<script>\nvar beaker = bkHelper.getBeakerObject().beakerObj;\n</script>\n<script>\nvar run_lasso = function() {\n  $(\"#lasso_result_button\").removeClass(\"active\").addClass(\"disabled\");\n  getFeatures();\n  getOperators();\n  getMaxDim();\n  beaker.evaluate(\"lasso_cell\"); // evaluate cells with tag \"lasso_cell\"\n // view_result()\n};\nvar reset_lasso = function(){\n  beaker.evaluate(\"lasso_gui\");\n};\nvar getFeatures = function() {\n    beaker.selected_feature_list = [];\n    $('#lasso_features_select input:checkbox').each(function () {\n        if(this.checked )\n          beaker.selected_feature_list.push(this.value);\n    });\n};\nvar getOperators = function() {\n    beaker.allowed_operations = [];\n    $('#lasso_operators_select input:checkbox').each(function () {\n        if(this.checked )\n          beaker.allowed_operations.push(this.value);\n    });\n};  \nvar getMaxDim = function() {\n   beaker.max_dim = $(\"#lasso_max_dim_selector\").val();\n};\nbeaker.view_result = function(result_link) {\n//   beaker.evaluate(\"lasso_viewer_result\").then(function(x) {\n    $(\"#lasso_result_button\").attr(\"href\", result_link);\n//   }); \n  $(\"#lasso_result_button\").removeClass(\"disabled\").addClass(\"active\");\n}\n</script>\n<style type=\"text/css\">\n    label {\n    font-size: 18px;\n  }\n .lasso_control{\n    font-size: 18px;\n  }   \n.lasso_form_group input {\n    width: 15px;\n    height: 15px;\n    padding: 0;\n    margin:0;\n    padding-right:5px; \n    vertical-align: bottom;\n    top: -1px;\n} \n .lasso_selection_description{\n        padding: 10px 15px;\n  }\n</style>\n<div class=\"lasso_control\">\n  <div class=\"row\">\n    <p class=\"lasso_selection_description\"><b>Primary features </b>\n  (hover the mouse\npointer over the feature names to see a full description):</p>\n    <form id=\"lasso_features_select\">\n      <div class=\"lasso_form_group\">\n         <label class=\"col-xs-4 col-md-4 col-lg-1\" title=\"Ionization potential of atom A\"> <input value=\"IP(A)\" checked=\"\" type=\"checkbox\"> <i>IP</i> <sup>A</sup></label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"IP(B)\" checked=\"\" type=\"checkbox\"> <span title=\"Ionization potential of atom B\"><i>IP</i> <sup>B</sup></span></label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"EA(A)\" checked=\"\" type=\"checkbox\"> <span title=\"Electron affinity of atom A\"> <i>EA</i> <sup>A</sup></span></label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"EA(B)\" checked=\"\" type=\"checkbox\"> <span title=\"Electron affinity of atom B\"> <i>EA</i> <sup>B</sup></span></label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"HOMO(A)\" checked=\"\" type=\"checkbox\"> <span title=\"Energy of highest occupied molecular orbital for atom A\"><i>E</i> <sup>A</sup><sub>HOMO</sub></span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"HOMO(B)\" checked=\"\" type=\"checkbox\"> <span title=\"Energy of highest occupied molecular orbital for atom B\"> <i>E</i> <sup>B</sup><sub>HOMO</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"LUMO(A)\" checked=\"\" type=\"checkbox\"> <span title=\"Energy of lowest unoccupied molecular orbital for atom A\"> <i>E</i> <sup>A</sup><sub>LUMO</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"LUMO(B)\" checked=\"\" type=\"checkbox\"> <span title=\"Energy of lowest unoccupied molecular orbital for atom B\"> <i>E</i> <sup>B</sup><sub>LUMO</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"rs(A)\" checked=\"\" type=\"checkbox\"> <span title=\"Radius at which the radial probability density of the valence s orbital is maximum for atom A\"> <i>r</i><sub>s</sub><sup>A</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"rs(B)\" checked=\"\" type=\"checkbox\"> <span title=\"Radius at which the radial probability density of the valence s orbital is maximum for atom B\"> <i>r</i><sub>s</sub><sup>B</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"rp(A)\" checked=\"\" type=\"checkbox\"> <span title=\"Radius at which the radial probability density of the valence p orbital is maximum for atom A\"> <i>r</i><sub>p</sub><sup>A</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"rp(B)\" checked=\"\" type=\"checkbox\"> <span title=\"Radius at which the radial probability density of the valence p orbital is maximum for atom B\"> <i>r</i><sub>p</sub><sup>B</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"rd(A)\" checked=\"\" type=\"checkbox\"> <span title=\"Radius at which the radial probability density of the valence d orbital is maximum for atom A\"> <i>r</i><sub>d</sub><sup>A</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"rd(B)\" checked=\"\" type=\"checkbox\"> <span title=\"Radius at which the radial probability density of the valence d orbital is maximum for atom B\"> <i>r</i><sub>d</sub><sup>B</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"d_AA\" type=\"checkbox\"> <span title=\"Bond length of atomA-atomA dimer\"> <i>d</i><sup>AA</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"d_BB\" type=\"checkbox\"> <span title=\"Bond length of atomB-atomB dimer\"> <i>d</i><sup>BB</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"HL_gap_AA\" type=\"checkbox\"> <span title=\"HOMO-LUMO gap of atomA-atomA dimer\"> Δ<i>E</i> <sup>AA</sup><sub>HL</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"HL_gap_BB\" type=\"checkbox\"> <span title=\"HOMO-LUMO gap of atomB-atomB dimer\"> Δ<i>E</i> <sup>BB</sup><sub>HL</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"Ebinding_AA\" type=\"checkbox\"> <span title=\"Binding energy of atomA-atomA dimer\"> <i>E</i> <sup>AA</sup><sub>b</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"Ebinding_BB\" type=\"checkbox\"> <span title=\"Binding energy of atomB-atomB dimer\"> <i>E</i> <sup>BB</sup><sub>b</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"Z(A)\" type=\"checkbox\"> <span title=\"Atomic number of atom A\"> <i>Z</i> <sup>A</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"Z(B)\" type=\"checkbox\"> <span title=\"Atomic number of atom B\"> <i>Z</i> <sup>B</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"val(A)\" type=\"checkbox\"> <span title=\"Number of valence electron of atom A\"> <i>Z</i> <sup>A</sup><sub>val</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"val(B)\" type=\"checkbox\"> <span title=\"Number of valence electron of atom B\"> <i>Z</i> <sup>B</sup><sub>val</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"period(A)\" type=\"checkbox\"> <span title=\"Period (in the periodic table) of atom A\"> <i>n</i> <sup>A</sup><sub>period</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"period(B)\" type=\"checkbox\"> <span title=\"Period (in the periodic table) of atom B\"> <i>n</i> <sup>B</sup><sub>period</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"r_sigma\" type=\"checkbox\"> <span title=\"John-Bloch's indicator1: |rp(A) + rs(A) - rp(B) -rs(B)| \n           [Phys. Rev. Lett. 33. 1095 (1974)]\"> r<sub>σ</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"r_pi\" type=\"checkbox\"> <span title=\"John-Bloch's indicator2: |rp(A) - rs(A)| +| rp(B) -rs(B)| \n          [Phys. Rev. Lett. 33. 1095 (1974)]\">  r<sub>π</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"d_AB\" type=\"checkbox\"> <span title=\"Bond length of atomA-atomB dimer\"> <i>d</i><sup>AB</sup>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"HL_gap_AB\" type=\"checkbox\"> <span title=\"HOMO-LUMO gap of atomA-atomB dimer\"> Δ<i>E</i> <sup>AB</sup><sub>HL</sub>  </span> </label>\n         <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"Ebinding_AB\" type=\"checkbox\"> <span title=\"Binding energy of atomA-atomB dimer\"> <i>E</i> <sup>AB</sup><sub>b</sub>  </span> </label>\n      </div>\n    </form>\n  </div>  <!-- End of row-->\n  <div class=\"row\"> <!-- Start of second row-->\n    <p class=\"lasso_selection_description\"><b>Allowed operations:</b> <br>\n  Given features x and y, apply these operations:</p>\n    <form id=\"lasso_operators_select\">\n      <div class=\"lasso_form_group\">\n        <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"|+|\" checked=\"\" type=\"checkbox\"> |x+y|  </label>\n        <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"+\" type=\"checkbox\"> x+y  </label>\n        <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"|-|\" checked=\"\" type=\"checkbox\"> |x-y|  </label>\n        <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"-\" type=\"checkbox\"> x-y  </label>\n        <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"/\" checked=\"\" type=\"checkbox\"> x/y  </label>\n        <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"^2\" checked=\"\" type=\"checkbox\"> x^2  </label>\n        <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"^3\" type=\"checkbox\"> x^3  </label>\n        <label class=\"col-xs-4 col-md-4 col-lg-1\"> <input value=\"exp\" checked=\"\" type=\"checkbox\"> exp(x)  </label>\n      </div>\n    </form>\n  </div>  <!-- End of row-->\n  <div class=\"row\"> <!-- Start of third row-->\n    <p class=\"lasso_selection_description\"><b>Optimal descriptor maximum dimension: </b> \n  <select id=\"lasso_max_dim_selector\">\n    <option value=\"2\"> 2D</option>\n    <option value=\"3\"> 3D</option>\n    <option value=\"4\"> 4D</option>\n    <option value=\"5\"> 5D</option>\n  </select> </p>\n  </div><!-- End of row-->\n<!-- <span title=''> <img src=\"http://images.clipartpanda.com/question-purzen_Icon_with_question_mark_Vector_Clipart.png\" style=\"height: 30px; width: 30px;\"> </span> -->\n  <button class=\"btn btn-default\" onclick=\"run_lasso()\">RUN LASSO+L0</button>\n  <button class=\"btn btn-default\" onclick=\"reset_lasso()\">RESET</button>\n  <label title=\"This button becomes active when the\nrun is finished. By clicking it, an interactive plot of the first 2\ndimensions of the optimized descriptor will be opened\"> \n  <a href=\"#\" target=\"_blank\" class=\"btn btn-primary disabled\" id=\"lasso_result_button\">View interactive 2D scatter plot</a> </label>\n</div>\n"
+                    "object": "<script>\nvar beaker = bkHelper.getBeakerObject().beakerObj;\n</script>\n<div class=\"lasso_control\">\n\n  <p style=\"margin-top: 1ex;\"></p>\n  <button class=\"btn btn-default\" onclick=\"run_lasso()\" style=\"font-weight: bold;\">RUN</button>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\n  <div id=\"lasso-hidden-settings-button\"><button class=\"btn btn-default\" onclick=\"reset_lasso()\">RESET</button>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</div>\n  <label title=\"This button becomes active when the\nrun is finished. By clicking it, an interactive plot of the first 2\ndimensions of the optimized descriptor will be opened\"> \n  <a href=\"#\" target=\"_blank\" class=\"btn btn-primary disabled\" id=\"lasso_result_button\">View interactive 2D scatter plot</a> </label>\n</div>\n"
                 },
-                "height": 361
+                "selectedType": "BeakerDisplay",
+                "elapsedTime": 0,
+                "height": 66
             },
             "evaluatorReader": true,
-            "lineCount": 133
+            "lineCount": 11
         },
         {
             "id": "code2uVtKX",
@@ -438,9 +427,9 @@
                 "selectedType": "Results",
                 "state": {},
                 "pluginName": "IPython",
-                "shellId": "19465B95568749F2844AAAE6E1809935",
+                "shellId": "C0BB775254314BB0B7B145DE566B81E6",
                 "height": 374,
-                "elapsedTime": 19051
+                "elapsedTime": 10979
             },
             "evaluatorReader": true,
             "lineCount": 31,
@@ -463,9 +452,9 @@
                 "state": {},
                 "selectedType": "Results",
                 "pluginName": "IPython",
-                "shellId": "19465B95568749F2844AAAE6E1809935",
+                "shellId": "C0BB775254314BB0B7B145DE566B81E6",
                 "height": 566,
-                "elapsedTime": 9196
+                "elapsedTime": 9011
             },
             "evaluatorReader": true,
             "lineCount": 4,
@@ -501,26 +490,14 @@
                 "state": {},
                 "selectedType": "Results",
                 "pluginName": "IPython",
-                "shellId": "19465B95568749F2844AAAE6E1809935",
+                "shellId": "C0BB775254314BB0B7B145DE566B81E6",
                 "height": 278,
-                "elapsedTime": 5620
+                "elapsedTime": 3691
             },
             "evaluatorReader": true,
             "lineCount": 17,
             "tags": "lasso_cell"
         },
-        {
-            "id": "markdownetkGD7",
-            "type": "markdown",
-            "body": [
-                "<!-- <p style=\"font-size: 15px;\"> <b> Note </b>: the default selection will produce an interactive version of  </p>",
-                "<div class=\"crop\"   style=\"overflow:hidden;height:346px;width:346px\"> ",
-                "<a href=\"http://journals.aps.org/prl/article/10.1103/PhysRevLett.114.105503/figures/2/medium\" target=\"_blank\"> <img style=\"margin: -188px 0 0 0\" src=\"http://journals.aps.org/prl/article/10.1103/PhysRevLett.114.105503/figures/2/medium\"> </a>",
-                "</div>",
-                "<p  style=\"font-size: 15px;\"> from <a href=\"http://journals.aps.org/prl/abstract/10.1103/PhysRevLett.114.105503\" target=\"_blank\"> Phys. Rev. Lett. 114, 105503 (2015) </a>. </p> -->"
-            ],
-            "evaluatorReader": false
-        },
         {
             "id": "codeVFrr3c",
             "type": "code",
@@ -537,7 +514,7 @@
                 "pluginName": "JavaScript",
                 "state": {},
                 "hidden": true,
-                "elapsedTime": 71
+                "elapsedTime": 70
             },
             "evaluatorReader": true,
             "lineCount": 2,