-
Notifications
You must be signed in to change notification settings - Fork 3
/
.gitignore
50 lines (42 loc) · 875 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# these folders are taken directly from the provided folders mu.zip and um.zip
# code will not run unless these folders are present with the listed files
mu/*
# contents:
# all.dta
# all.idx
# example.dta
# qual.dta
# README
um/*
# contents:
# all.dta
# all.idx
# example.dta
# qual.dta
# README
# run dataset_creation.py to populate this folder as listed
data/*
# contents:
# mu_train.csv
# mu_val.csv
# mu_hidden.csv
# mu_probe.csv
# mu_qual.csv
# um_train.csv
# um_val.csv
# um_hidden.csv
# um_probe.csv
# um_qual.csv
# submissions from all models should be saved here
submissions/*
# trash pmf submissions
pmf/trash_predictions/*
pmf/real_data/mu_train.txt
pmf/real_data/real_mu_train.txt
pmf/real_data.model
# save model parameters here
models/*
# compiled pythons are venomous
__pycache__/*
# save outputs here
outputs/*