Skip to content

Commit

Permalink
chore(dedup): remove private data from cell output
Browse files Browse the repository at this point in the history
  • Loading branch information
vmttn committed Dec 18, 2024
1 parent 8ab26a5 commit 7efcf01
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions deduplication/main.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
},
{
"cell_type": "code",
"execution_count": null,
"execution_count": 10,
"metadata": {},
"outputs": [],
"source": [
Expand All @@ -41,7 +41,8 @@
"from dedupe._typing import TrainingData\n",
"from sklearn import metrics\n",
"from sklearn.model_selection import train_test_split\n",
"from unidecode import unidecode"
"from unidecode import unidecode\n",
"from IPython.display import clear_output"
]
},
{
Expand Down Expand Up @@ -1111,7 +1112,10 @@
" orient=\"records\",\n",
" force_ascii=False,\n",
" indent=4,\n",
")\n"
")\n",
"\n",
"# remove cell output that can contain private data\n",
"clear_output()"
]
},
{
Expand Down

0 comments on commit 7efcf01

Please sign in to comment.