Skip to content

Commit 07b9c84

Browse files
committed
Rename dataset
1 parent 802db78 commit 07b9c84

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed
File renamed without changes.

notebooks/Transfer_Learning.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"source": [
5858
"## Some basic settings and data loading\n",
5959
"\n",
60-
"We begin by introducing some settings that will be used later in this notebook. We also load the data, which is the same data used in the `Chemical_Encoding` notebook."
60+
"We begin by introducing some settings that will be used later in this notebook. We also load the data, which is the a slightly adjusted version of the Shields-Dataset used in other notebooks, where the `Temperature` has been replaced by `Lab`."
6161
]
6262
},
6363
{
@@ -69,7 +69,7 @@
6969
"source": [
7070
"import pandas as pd\n",
7171
"\n",
72-
"data = pd.read_csv(\"../data/shields.csv\")\n",
72+
"data = pd.read_csv(\"../data/shields_tl.csv\")\n",
7373
"data"
7474
]
7575
},
@@ -235,7 +235,7 @@
235235
"metadata": {},
236236
"outputs": [],
237237
"source": [
238-
"analyze_data(Path(\"../data/shields.csv\"), \"lab\")"
238+
"analyze_data(Path(\"../data/shields_tl.csv\"), \"lab\")"
239239
]
240240
},
241241
{
@@ -287,7 +287,7 @@
287287
"from utils import create_dict_from_columns\n",
288288
"\n",
289289
"encoding = \"RDKIT2DDESCRIPTORS\"\n",
290-
"df = pd.read_csv(\"../data/shields.csv\")\n",
290+
"df = pd.read_csv(\"../data/shields_tl.csv\")\n",
291291
"\n",
292292
"substances = {\n",
293293
" \"bases\": create_dict_from_columns(df, \"Base_Name\", \"Base_SMILES\"),\n",

notebooks/Transfer_Learning.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def _(mo):
3636
mo.md(r"""
3737
## Some basic settings and data loading
3838
39-
We begin by introducing some settings that will be used later in this notebook. We also load the data, which is the same data used in the `Chemical_Encoding` notebook.
39+
We begin by introducing some settings that will be used later in this notebook. We also load the data, which is the a slightly adjusted version of the Shields-Dataset used in other notebooks, where the `Temperature` has been replaced by `Lab`.
4040
""")
4141
return
4242

@@ -45,7 +45,7 @@ def _(mo):
4545
def _():
4646
import pandas as pd
4747

48-
data = pd.read_csv("data/shields.csv")
48+
data = pd.read_csv("data/shields_tl.csv")
4949
data
5050
return data, pd
5151

@@ -186,7 +186,7 @@ def _(mo):
186186

187187
@app.cell
188188
def _(Path, analyze_data):
189-
analyze_data(Path("data/shields.csv"), "lab")
189+
analyze_data(Path("data/shields_tl.csv"), "lab")
190190
return
191191

192192

@@ -223,7 +223,7 @@ def _(concentrations, pd):
223223
from utils import create_dict_from_columns
224224

225225
encoding = "RDKIT2DDESCRIPTORS"
226-
df = pd.read_csv("data/shields.csv")
226+
df = pd.read_csv("data/shields_tl.csv")
227227

228228
substances = {
229229
"bases": create_dict_from_columns(df, "Base_Name", "Base_SMILES"),

0 commit comments

Comments
 (0)