File tree
24 files changed
+235
-214
lines changed- riddle
- models
- tests/riddle
- data
- models
24 files changed
+235
-214
lines changed+2-2
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
5 | 5 |
| |
6 | 6 |
| |
7 | 7 |
| |
8 |
| - | |
| 8 | + | |
9 | 9 |
| |
10 | 10 |
| |
11 | 11 |
| |
| |||
20 | 20 |
| |
21 | 21 |
| |
22 | 22 |
| |
23 |
| - | |
| 23 | + | |
24 | 24 |
| |
25 | 25 |
| |
26 | 26 |
| |
|
+11-16
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
14 | 14 |
| |
15 | 15 |
| |
16 | 16 |
| |
17 |
| - | |
| 17 | + | |
18 | 18 |
| |
19 | 19 |
| |
20 | 20 |
| |
| |||
38 | 38 |
| |
39 | 39 |
| |
40 | 40 |
| |
41 |
| - | |
42 |
| - | |
43 |
| - | |
44 |
| - | |
45 |
| - | |
46 |
| - | |
| 41 | + | |
| 42 | + | |
47 | 43 |
| |
48 | 44 |
| |
49 | 45 |
| |
| |||
61 | 57 |
| |
62 | 58 |
| |
63 | 59 |
| |
64 |
| - | |
65 |
| - | |
66 |
| - | |
| 60 | + | |
| 61 | + | |
| 62 | + | |
67 | 63 |
| |
68 |
| - | |
69 |
| - | |
70 |
| - | |
| 64 | + | |
| 65 | + | |
71 | 66 |
| |
72 |
| - | |
73 |
| - | |
74 |
| - | |
| 67 | + | |
| 68 | + | |
| 69 | + | |
75 | 70 |
| |
76 | 71 |
| |
77 | 72 |
| |
|
- .gitignore+5-1
- .travis.yml+6-5
- README.md+86-72
- deeplift.egg-info/PKG-INFO+3-2
- deeplift.egg-info/SOURCES.txt+9-8
- deeplift.egg-info/requires.txt+1-1
- deeplift/__init__.py+1-1
- deeplift/backend/__init__.py-3
- deeplift/backend/common.py-21
- deeplift/backend/theano_backend.py-321
- deeplift/blobs/convolution.py-720
- deeplift/conversion/keras_conversion.py-640
- deeplift/conversion/kerasapi_conversion.py+818
- deeplift/layers/__init__.py+3-1
- deeplift/layers/activations.py+33-30
- deeplift/layers/convolutional.py+326
- deeplift/layers/core.py+130-283
- deeplift/layers/helper_functions.py+54
- deeplift/layers/normalization.py+104
- deeplift/layers/pooling.py+335
- deeplift/models.py+25-41
- deeplift/util.py+94-259
- examples/.gitignore-3
- examples/convert_models/keras1.2to2/MNIST.ipynb+386
- examples/genomics/.gitignore+2
- examples/genomics/genomics_simulation.ipynb+863
- examples/genomics/grab_model_and_data.sh+33
- examples/mnist/MNIST_replicate_figures.ipynb+781
- examples/mnist/grab_model.sh+10
- examples/public/genomics/.gitignore-1
- examples/public/genomics/genomics_simulation.ipynb-1.2k
- examples/public/genomics/grab_model_and_data.sh-33
- examples/public/mnist/.gitignore-2
- examples/public/mnist/MNIST_replicate_figures.ipynb-782
- examples/public/mnist/grab_model.sh-9
- setup.py+14-7
- tests/README.md-4
- tests/blobs/test_batchnorm.py-115
- tests/blobs/test_conv2d.py-176
- tests/blobs/test_deeplift_genomics_default_mode.py-142
- tests/blobs/test_integrated_grads.py-77
- tests/blobs/test_revealcancel_dense.py-75
- tests/conversion/functional/test_functional_concatenate_model.py+120
- tests/conversion/functional_test/test_functional_concatenate_model.py-120
- tests/conversion/graph_test/test_concat_model.py-142
- tests/conversion/sequential/test_conv1d_model_same_padding.py+96
- tests/conversion/sequential/test_conv1d_model_valid_padding.py+89
- tests/conversion/sequential/test_conv2d_model_channels_first.py+86
- tests/conversion/sequential/test_conv2d_model_same_padding.py+96
- tests/conversion/sequential/test_conv2d_model_valid_padding.py+87
- tests/conversion/sequential/test_load_batchnorm.py+163
- tests/conversion/sequential_test/test_conv1d_model.py-104
- tests/conversion/sequential_test/test_conv2d_model.py-107
- tests/conversion/sequential_test/test_conv2d_model_tensorflow_ordering.py-107
- tests/conversion/sequential_test/test_load_batchnorm.py-195
- tests/layers/test_activation.py+32-28
- tests/layers/test_concat.py+20-19
- tests/layers/test_conv1d.py+51-55
- tests/layers/test_conv2d.py+183
- tests/layers/test_deeplift_genomics_default_mode.py+146
- tests/layers/test_dense.py+28-22
- tests/layers/test_pool1d.py+39-48
- tests/layers/test_pool2d.py+47-50
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
188 | 188 |
| |
189 | 189 |
| |
190 | 190 |
| |
191 |
| - | |
| 191 | + | |
192 | 192 |
| |
193 | 193 |
| |
194 |
| - | |
| 194 | + | |
195 | 195 |
| |
196 | 196 |
| |
197 | 197 |
| |
198 | 198 |
| |
199 | 199 |
| |
200 |
| - | |
| 200 | + | |
201 | 201 |
| |
202 |
| - | |
| 202 | + | |
203 | 203 |
| |
204 |
| - | |
| 204 | + | |
205 | 205 |
| |
206 | 206 |
| |
207 | 207 |
| |
| |||
233 | 233 |
| |
234 | 234 |
| |
235 | 235 |
| |
| 236 | + | |
236 | 237 |
| |
237 | 238 |
| |
238 | 239 |
| |
|
+10-7
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
115 | 115 |
| |
116 | 116 |
| |
117 | 117 |
| |
118 |
| - | |
119 |
| - | |
| 118 | + | |
| 119 | + | |
| 120 | + | |
| 121 | + | |
120 | 122 |
| |
121 | 123 |
| |
122 | 124 |
| |
123 | 125 |
| |
124 | 126 |
| |
125 |
| - | |
| 127 | + | |
126 | 128 |
| |
127 | 129 |
| |
128 | 130 |
| |
| |||
173 | 175 |
| |
174 | 176 |
| |
175 | 177 |
| |
176 |
| - | |
| 178 | + | |
177 | 179 |
| |
178 | 180 |
| |
179 |
| - | |
| 181 | + | |
180 | 182 |
| |
181 | 183 |
| |
182 | 184 |
| |
183 | 185 |
| |
184 | 186 |
| |
185 | 187 |
| |
186 |
| - | |
| 188 | + | |
| 189 | + | |
187 | 190 |
| |
188 | 191 |
| |
189 |
| - | |
| 192 | + | |
190 | 193 |
| |
191 | 194 |
| |
192 | 195 |
| |
|
+9-10
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
141 | 141 |
| |
142 | 142 |
| |
143 | 143 |
| |
144 |
| - | |
| 144 | + | |
145 | 145 |
| |
146 | 146 |
| |
147 | 147 |
| |
148 | 148 |
| |
149 | 149 |
| |
150 | 150 |
| |
151 |
| - | |
| 151 | + | |
152 | 152 |
| |
153 | 153 |
| |
154 | 154 |
| |
| |||
167 | 167 |
| |
168 | 168 |
| |
169 | 169 |
| |
170 |
| - | |
| 170 | + | |
171 | 171 |
| |
172 | 172 |
| |
173 | 173 |
| |
| |||
177 | 177 |
| |
178 | 178 |
| |
179 | 179 |
| |
180 |
| - | |
| 180 | + | |
181 | 181 |
| |
182 | 182 |
| |
183 | 183 |
| |
184 | 184 |
| |
185 | 185 |
| |
186 | 186 |
| |
187 | 187 |
| |
188 |
| - | |
| 188 | + | |
189 | 189 |
| |
190 | 190 |
| |
191 | 191 |
| |
192 | 192 |
| |
193 | 193 |
| |
194 | 194 |
| |
195 |
| - | |
| 195 | + | |
196 | 196 |
| |
197 | 197 |
| |
198 | 198 |
| |
199 | 199 |
| |
200 | 200 |
| |
201 | 201 |
| |
202 | 202 |
| |
203 |
| - | |
| 203 | + | |
204 | 204 |
| |
205 | 205 |
| |
206 | 206 |
| |
| |||
209 | 209 |
| |
210 | 210 |
| |
211 | 211 |
| |
212 |
| - | |
213 | 212 |
| |
214 | 213 |
| |
215 | 214 |
| |
| |||
258 | 257 |
| |
259 | 258 |
| |
260 | 259 |
| |
261 |
| - | |
| 260 | + | |
262 | 261 |
| |
263 | 262 |
| |
264 | 263 |
| |
| |||
275 | 274 |
| |
276 | 275 |
| |
277 | 276 |
| |
278 |
| - | |
| 277 | + | |
279 | 278 |
| |
280 | 279 |
| |
281 | 280 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + |
+3-3
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
181 | 181 |
| |
182 | 182 |
| |
183 | 183 |
| |
184 |
| - | |
| 184 | + | |
185 | 185 |
| |
186 | 186 |
| |
187 | 187 |
| |
| |||
197 | 197 |
| |
198 | 198 |
| |
199 | 199 |
| |
200 |
| - | |
| 200 | + | |
201 | 201 |
| |
202 | 202 |
| |
203 |
| - | |
| 203 | + | |
204 | 204 |
| |
205 | 205 |
| |
206 | 206 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
11 | 11 |
| |
12 | 12 |
| |
13 | 13 |
| |
14 |
| - | |
| 14 | + | |
15 | 15 |
| |
16 | 16 |
| |
17 | 17 |
| |
18 | 18 |
| |
19 | 19 |
| |
20 | 20 |
| |
21 |
| - |
+8-7
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
106 | 106 |
| |
107 | 107 |
| |
108 | 108 |
| |
109 |
| - | |
| 109 | + | |
| 110 | + | |
110 | 111 |
| |
111 | 112 |
| |
112 | 113 |
| |
| |||
125 | 126 |
| |
126 | 127 |
| |
127 | 128 |
| |
128 |
| - | |
| 129 | + | |
129 | 130 |
| |
130 | 131 |
| |
131 | 132 |
| |
132 |
| - | |
| 133 | + | |
133 | 134 |
| |
134 | 135 |
| |
135 | 136 |
| |
136 | 137 |
| |
137 | 138 |
| |
138 |
| - | |
139 |
| - | |
| 139 | + | |
| 140 | + | |
140 | 141 |
| |
141 | 142 |
| |
142 | 143 |
| |
| |||
199 | 200 |
| |
200 | 201 |
| |
201 | 202 |
| |
202 |
| - | |
| 203 | + | |
203 | 204 |
| |
204 | 205 |
| |
205 | 206 |
| |
206 | 207 |
| |
207 | 208 |
| |
208 |
| - | |
| 209 | + | |
209 | 210 |
| |
210 | 211 |
| |
211 | 212 |
| |
|
0 commit comments