We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7ca0b2 commit 55712aaCopy full SHA for 55712aa
utils.py
@@ -14,7 +14,7 @@
14
15
def load_bios_data(ys_to_keep = ["professor"], zs_to_keep = [1,0]):
16
17
- with open("../bios_data/bios_train.pickle", "rb") as f:
+ with open("interim/bios_data/bios_train.pickle", "rb") as f:
18
data = pickle.load(f)
19
y = np.array([d["p"] for d in data])
20
z = np.array([1 if d["g"] == "m" else 0 for d in data])
0 commit comments