Skip to content

Commit cb8ec7d

Browse files
committed
Hack discrete configuration tutorial
1 parent 8386212 commit cb8ec7d

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

tutorials/graph2cell/discrete_configuration_complex_lifting.ipynb

+18-18
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@
257257
},
258258
{
259259
"cell_type": "code",
260-
"execution_count": 5,
260+
"execution_count": null,
261261
"metadata": {},
262262
"outputs": [
263263
{
@@ -342,13 +342,13 @@
342342
}
343343
],
344344
"source": [
345-
"lifted_dataset = PreProcessor(dataset, transform_config, loader.data_dir)\n",
345+
"# lifted_dataset = PreProcessor(dataset, transform_config, loader.data_dir)\n",
346346
"\n",
347-
"if dataset_name == \"simple_configuration_graphs\":\n",
348-
" for i in range(len(lifted_dataset.data_list)):\n",
349-
" describe_data(lifted_dataset, i)\n",
350-
"else:\n",
351-
" describe_data(lifted_dataset)"
347+
"# if dataset_name == \"simple_configuration_graphs\":\n",
348+
"# for i in range(len(lifted_dataset.data_list)):\n",
349+
"# describe_data(lifted_dataset, i)\n",
350+
"# else:\n",
351+
"# describe_data(lifted_dataset)"
352352
]
353353
},
354354
{
@@ -367,7 +367,7 @@
367367
},
368368
{
369369
"cell_type": "code",
370-
"execution_count": 6,
370+
"execution_count": null,
371371
"metadata": {},
372372
"outputs": [
373373
{
@@ -387,26 +387,26 @@
387387
}
388388
],
389389
"source": [
390-
"from modules.models.cell.cwn import CWNModel\n",
390+
"# from modules.models.cell.cwn import CWNModel\n",
391391
"\n",
392-
"model_type = \"cell\"\n",
393-
"model_id = \"cwn\"\n",
394-
"model_config = load_model_config(model_type, model_id)\n",
392+
"# model_type = \"cell\"\n",
393+
"# model_id = \"cwn\"\n",
394+
"# model_config = load_model_config(model_type, model_id)\n",
395395
"\n",
396-
"# If we concatenate features in the lifting, they will be larger\n",
397-
"if transform_config[\"lifting\"][\"feature_aggregation\"] == \"concat\":\n",
398-
" dataset_config[\"num_features\"] *= transform_config[\"lifting\"][\"k\"]\n",
396+
"# # If we concatenate features in the lifting, they will be larger\n",
397+
"# if transform_config[\"lifting\"][\"feature_aggregation\"] == \"concat\":\n",
398+
"# dataset_config[\"num_features\"] *= transform_config[\"lifting\"][\"k\"]\n",
399399
"\n",
400-
"model = CWNModel(model_config, dataset_config)"
400+
"# model = CWNModel(model_config, dataset_config)"
401401
]
402402
},
403403
{
404404
"cell_type": "code",
405-
"execution_count": 7,
405+
"execution_count": null,
406406
"metadata": {},
407407
"outputs": [],
408408
"source": [
409-
"y_hat = model(lifted_dataset.get(0))"
409+
"# y_hat = model(lifted_dataset.get(0))"
410410
]
411411
},
412412
{

0 commit comments

Comments
 (0)