Skip to content

Commit 0c6273d

Browse files
committed
Comment out EDMD from LANDO tutorial
1 parent 859ff0d commit 0c6273d

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

tutorials/tutorial18/tutorial-18-lando.ipynb

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -291,18 +291,20 @@
291291
}
292292
],
293293
"source": [
294-
"t1 = time.time()\n",
295-
"edmd = EDMD(\n",
296-
" svd_rank=18,\n",
297-
" kernel_metric=\"poly\",\n",
298-
" kernel_params={\"degree\": 3, \"coef0\": 1.0, \"gamma\": 1.0},\n",
299-
")\n",
300-
"edmd.fit(X)\n",
301-
"t2 = time.time()\n",
302-
"print(\"EDMD Fitting Time: {}\".format(t2 - t1))\n",
303-
"\n",
304-
"edmd_recon = edmd.reconstructed_data.real\n",
305-
"plot_lorenz_reconstruction(X, edmd_recon, \"EDMD reconstruction\", \"tab:orange\")"
294+
"# Note: This cell may take a while to run (approximately 10 minutes).\n",
295+
"\n",
296+
"# t1 = time.time()\n",
297+
"# edmd = EDMD(\n",
298+
"# svd_rank=18,\n",
299+
"# kernel_metric=\"poly\",\n",
300+
"# kernel_params={\"degree\": 3, \"coef0\": 1.0, \"gamma\": 1.0},\n",
301+
"# )\n",
302+
"# edmd.fit(X)\n",
303+
"# t2 = time.time()\n",
304+
"# print(\"EDMD Fitting Time: {}\".format(t2 - t1))\n",
305+
"\n",
306+
"# edmd_recon = edmd.reconstructed_data.real\n",
307+
"# plot_lorenz_reconstruction(X, edmd_recon, \"EDMD reconstruction\", \"tab:orange\")"
306308
]
307309
},
308310
{

0 commit comments

Comments
 (0)