Skip to content

Commit 55712aa

Browse files
Update utils.py
1 parent d7ca0b2 commit 55712aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
def load_bios_data(ys_to_keep = ["professor"], zs_to_keep = [1,0]):
1616

17-
with open("../bios_data/bios_train.pickle", "rb") as f:
17+
with open("interim/bios_data/bios_train.pickle", "rb") as f:
1818
data = pickle.load(f)
1919
y = np.array([d["p"] for d in data])
2020
z = np.array([1 if d["g"] == "m" else 0 for d in data])

0 commit comments

Comments
 (0)