-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirectory_tree.txt
152 lines (151 loc) · 7.89 KB
/
directory_tree.txt
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
Folder PATH listing for volume OS
Volume serial number is 0CA7-FEB3
Generated on March 4th, 2021
C:.
│ .gitignore
│ directory_tree.txt
│ main.py
│ README.md
│ setup.py
│
├───.idea
│ │ .gitignore
│ │ aws.xml
│ │ csv-plugin.xml
│ │ misc.xml
│ │ modules.xml
│ │ Ouroboros.iml
│ │ vcs.xml
│ │ workspace.xml
│ │
│ └───inspectionProfiles
│ profiles_settings.xml
│ Project_Default.xml
│
├───configs
│ │ local_graph_demo.json
│ │ local_linear_aux_demo.json
│ │
│ └───tests
│ │
│ └───envs
│
├───data
│ │ combine_preprocessing.py
│ │ data_iterator.py
│ │ graph_preprocessing.py
│ │ linear_preprocessing.py
│ │
│ ├───datafiles
│ │ │ housing_prices.zip
│ │ │
│ │ └───mnist
│ │ └───MNIST
│ │ ├───processed
│ │ │ test.pt
│ │ │ training.pt
│ │ │
│ │ └───raw
│ │ t10k-images-idx3-ubyte
│ │ t10k-images-idx3-ubyte.gz
│ │ t10k-labels-idx1-ubyte
│ │ t10k-labels-idx1-ubyte.gz
│ │ train-images-idx3-ubyte
│ │ train-images-idx3-ubyte.gz
│ │ train-labels-idx1-ubyte
│ │ train-labels-idx1-ubyte.gz
│ │
│ └───__pycache__
│ combine_preprocessing.cpython-37.pyc
│ combine_preprocessing.cpython-38.pyc
│ graph_preprocessing.cpython-37.pyc
│ graph_preprocessing.cpython-38.pyc
│ linear_preprocessing.cpython-37.pyc
│ linear_preprocessing.cpython-38.pyc
│
├───models
│ ├───augmented
│ │ │ classical.py
│ │ │ ouroboros.py
│ │ │ quine.py
│ │ │
│ │ └───__pycache__
│ │ classical.cpython-37.pyc
│ │ classical.cpython-38.pyc
│ │ ouroboros.cpython-37.pyc
│ │ ouroboros.cpython-38.pyc
│ │ quine.cpython-37.pyc
│ │ quine.cpython-38.pyc
│ │
│ ├───standard
│ │ │ graph_model.py
│ │ │ mlp_model.py
│ │ │
│ │ └───__pycache__
│ │ graph_model.cpython-37.pyc
│ │ graph_model.cpython-38.pyc
│ │ mlp_model.cpython-37.pyc
│ │ mlp_model.cpython-38.pyc
│ │
│ └───__pycache__
├───nn
│ │ graph_layers.py
│ │
│ └───__pycache__
│ graph_layers.cpython-37.pyc
│ graph_layers.cpython-38.pyc
│
├───ops
│ │ benchmark.py
│ │ chain.py
│ │ parallel.py
│ │ train.py
│ │ tune.py
│ │
│ └───__pycache__
│ benchmark.cpython-37.pyc
│ benchmark.cpython-38.pyc
│ train.cpython-37.pyc
│ train.cpython-38.pyc
│ tune.cpython-37.pyc
│ tune.cpython-38.pyc
│
├───optim
│ │ algos.py
│ │ losses.py
│ │ parameters.py
│ │
│ └───__pycache__
│ algos.cpython-37.pyc
│ algos.cpython-38.pyc
│ losses.cpython-37.pyc
│ losses.cpython-38.pyc
│ parameters.cpython-37.pyc
│ parameters.cpython-38.pyc
│
├───saves
│ ├───checkpoints
│ │ Linear_MNST_auxiliary_demo_epoch
│ │
│ └───logs
├───tests
│ holdout_test.py
│
└───utils
│ checkpoint.py
│ holdout.py
│ reduction.py
│ scores.py
│ utilities.py
│
└───__pycache__
checkpoint.cpython-37.pyc
checkpoint.cpython-38.pyc
holdout.cpython-37.pyc
holdout.cpython-38.pyc
reduction.cpython-37.pyc
reduction.cpython-38.pyc
scores.cpython-37.pyc
scores.cpython-38.pyc
utilities.cpython-37.pyc
utilities.cpython-38.pyc