Skip to content

Commit c495a41

Browse files
micha
1 parent 594c9bf commit c495a41

4 files changed

Lines changed: 346 additions & 403 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,3 +346,5 @@ notebooks/00_spotPython_tests_files/libs/quarto-html/quarto-syntax-highlighting-
346346
/Literature.d
347347
notebooks/spot_nystrom_ackley_100d.ipynb
348348
notebooks/spot_nystrom_demo.ipynb
349+
.vscode/settings.json
350+
.vscode/settings.json

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,8 @@
4848
"test"
4949
],
5050
"python.testing.unittestEnabled": false,
51-
"python.testing.pytestEnabled": true
51+
"python.testing.pytestEnabled": true,
52+
"python-envs.defaultEnvManager": "ms-python.python:conda",
53+
"python-envs.defaultPackageManager": "ms-python.python:conda",
54+
"python-envs.pythonProjects": []
5255
}

notebooks/spot_sk_matern_michalewicz_10d_30repeats.ipynb

Lines changed: 41 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,17 @@
1616
},
1717
{
1818
"cell_type": "code",
19-
"execution_count": null,
19+
"execution_count": 1,
2020
"metadata": {},
21-
"outputs": [],
21+
"outputs": [
22+
{
23+
"name": "stderr",
24+
"output_type": "stream",
25+
"text": [
26+
"Seed set to 123\n"
27+
]
28+
}
29+
],
2230
"source": [
2331
"import warnings\n",
2432
"warnings.filterwarnings(\"ignore\")\n",
@@ -41,7 +49,37 @@
4149
"cell_type": "code",
4250
"execution_count": null,
4351
"metadata": {},
44-
"outputs": [],
52+
"outputs": [
53+
{
54+
"name": "stderr",
55+
"output_type": "stream",
56+
"text": [
57+
"Seed set to 12345\n",
58+
"Seed set to 12346\n"
59+
]
60+
},
61+
{
62+
"name": "stdout",
63+
"output_type": "stream",
64+
"text": [
65+
"Experiment saved to 000_res.pkl\n"
66+
]
67+
},
68+
{
69+
"name": "stderr",
70+
"output_type": "stream",
71+
"text": [
72+
"Seed set to 12347\n"
73+
]
74+
},
75+
{
76+
"name": "stdout",
77+
"output_type": "stream",
78+
"text": [
79+
"Experiment saved to 000_res.pkl\n"
80+
]
81+
}
82+
],
4583
"source": [
4684
"import json\n",
4785
"import numpy as np\n",

0 commit comments

Comments
 (0)