Skip to content

Commit

Permalink
Remove capture from notebooks/least_core_basic and use tag to hide ou…
Browse files Browse the repository at this point in the history
…tput
  • Loading branch information
schroedk committed Oct 5, 2023
1 parent 43c2231 commit e29d9f7
Showing 1 changed file with 27 additions and 6 deletions.
33 changes: 27 additions & 6 deletions notebooks/least_core_basic.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -318,10 +318,17 @@
"cell_type": "code",
"execution_count": 12,
"id": "1091849a",
"metadata": {},
"metadata": {
"editable": true,
"slideshow": {
"slide_type": ""
},
"tags": [
"hide-output"
]
},
"outputs": [],
"source": [
"%%capture\n",
"budget_array = np.linspace(200, 2 ** len(small_dataset), num=10, dtype=int)\n",
"\n",
"all_estimated_values_df = []\n",
Expand Down Expand Up @@ -502,10 +509,17 @@
"cell_type": "code",
"execution_count": 17,
"id": "985c27e0",
"metadata": {},
"metadata": {
"editable": true,
"slideshow": {
"slide_type": ""
},
"tags": [
"hide-output"
]
},
"outputs": [],
"source": [
"%%capture\n",
"all_scores = []\n",
"\n",
"for i in trange(5):\n",
Expand Down Expand Up @@ -602,10 +616,17 @@
"cell_type": "code",
"execution_count": 19,
"id": "6f33b5bb",
"metadata": {},
"metadata": {
"editable": true,
"slideshow": {
"slide_type": ""
},
"tags": [
"hide-output"
]
},
"outputs": [],
"source": [
"%%capture\n",
"all_scores = []\n",
"\n",
"for i in trange(5):\n",
Expand Down

0 comments on commit e29d9f7

Please sign in to comment.