Commit c751e5d
Release DeepTrack2 1.6.0 (#191)
* chore: autopublish 2022-07-26T13:54:44Z
* Remove create-badges job
* Delete test.py
* Add multi-head masked attention
* Update multi-head gated attention to match parent layer
* Update documentation
* Test multi-head masked attention
* allow gated attention layers to use bias
* test bias in gated attention layers
* set return_attention_weights to False to avoid multi-outputs
Use MultiHeadSelfAttention and MultiHeadGatedSelfAttention if want to return the attention weights
* reformat gnns/layers.py
This commit adds new message-passing graph layers (MPN) and graph convolutional layers to dt, including vanilla MPN, GRUMPN, Masked-attention FGNN, and GraphTransformer.
* Update layers.py
* Update test_layers.py
* Update models.py
* Update test_models.py
* Update test_models.py
* Fix indexing problems related to tf.gather
* Allow multi-inputs in ContinuousGenerator
* Fix bad conversion to integer
* version bump
* Fix phase correction at focus and offset calculation
* Fix phase correction in propagation
* Fix mie phase out of foucs
* Fix mie phase out of foucs
* Update README.md
* Bm/version 1.4.0 (#137)
* Update layers.py
* Update convolutional.py
Transformer-based models can now be reused and expanded quickly and easily
* Update documentation
* Update Transformer-based models
* Delete classifying_MNIST_vit_tutorial.ipynb
* Create classifying_MNIST_vit_tutorial.ipynb
* Update datasets.py
* Allows kwargs as inputs in single_layer_call
* Update embeddings.py
* masked transformers
* reformat transformer models
* Create trajectory_analysis_tutorial.ipynb
* Add Variational autoencoders
* Add variational autoencoders
* Update vae.py
* Create MNIST_VAE_tutorial.ipynb
* Update MNIST_VAE_tutorial.ipynb
* Create folder for course examples
* Update README.md
* Update README.md
* Update examples
* Update README.md
* Update README.md
* Update MNIST VAE examples
* Added MLP regression example
* Update README.md
* Create image_segmentation_Unet.ipynb
* Update README.md
* Documented and tested cell_counting_tutorial.ipynb
* improve dnn example
* Shift variant mie
* Position mie scatterer correctly
* implement set z
* implement mnist v1
* implement z dependence
* remove logging
* Implement flattening methods
* Implement pooling and resizing
* Implement TensorflowDataset
* Finalize MNIST
* Implement Malaria classification
* alpha0 release
* fix batchsize in fit
* implement dataset.take
* Implement datasets
* fix phase in mie
* Fix mie positioning and focusing
* Commit to new branch
* add tensorflow datasets dependence
* remove test
Co-authored-by: Jesús Pineda <[email protected]>
Co-authored-by: Jesús Pineda <[email protected]>
Co-authored-by: Benjamin Midtvedt <[email protected]>
Co-authored-by: Ccx55 <[email protected]>
* Add tensorflow datasets to the list of dependencies.
* Read requirements.txt into setup.py
* remove sphinx from build
* remove create badges
* Create CITATION.cff
* Create .zenodo.json
* Update transformer models
* Update pint_definition.py
* Update requirements.txt
* create TimeDistributed CNN
* small fixes to lodestar
* Update layers.py
* Update test_layers.py
* remove direct getter of properties
* Update scatterers.py
Coherence length fix for MieScatterer
* Update scatterers.py
Added coherence length to the conversion table
* mie phase fix
* removed pydeepimagej from deps
* Change loss input order of CGAN and PCGAN
* Create dmdataset (dataset for graph-level regression tasks)
* Update gnns/__init__.py
* Add detection_linking_hela dataset
* Update dmdataset.py
* Create the regression_diffusion_landscape
* Update scatterers.py
CuPy fix for coherence length
* Update test_scatterers.py
Added a new method for testing MieSphere when coherence length parameter is provided.
* Update augmentations.py
* Update test_scatterers.py
* Update test_scatterers.py
* Create endothelial_vs dataset
* Update layers.py
* Update utils.py
* Update docs link
* Update README.md
* version bump
* version bump
* Update README.md
* Update README.md
* Update graphs.py
* Update test_generators.py
* Update generators.py
* fix test
* Update vae.py
* Bugfix in endothelial_vs dataset
* Fix issue with repeated oneof-features (#169)
* Update cell_migration_analysis.ipynb
* Update features.py (#189)
* added WAE (both MMD and GAN) (#185)
* added deterministic wae_gan, slightly modified vae (input size))
* changes to VAE, WAE_GAN, and GAN
Implemented proposed changes to GAN, VAE, WAE_GAN:
- optimizers of WAE_GAN as input parameters by overriding the compile method.
- included documentation of input parameters for VAE and WAE_GAN.
- WAE_GAN: different learning rates for the autoencoder and the discriminator, 1e-3 and 5e-4, respectively as in the original paper.
- included a unit test for WAE_GAN, VAE, and GAN.
- removed @as_KerasModel from GAN.
- formatted the code for compatibility.
* Update test_models.py
* fixed typo
* extra fixes
* WAE generalized
allows WAE-GAN and WAE-MMD
* fixes
* check unit test
* compatibility issue
removed match for compatibility, replaced with if
* test unit
corrected assert in test unit for GAN, VAE. and WAE
* fixed dimension in test_models
* added compile for GAN and WAE in test_model
* defined call in gan
* fixed input size in GAN
---------
Co-authored-by: BenjaminMidtvedt <[email protected]>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Jesús Pineda <[email protected]>
Co-authored-by: Benjamin Midtvedt <[email protected]>
Co-authored-by: Jesús Pineda <[email protected]>
Co-authored-by: Ccx55 <[email protected]>
Co-authored-by: Harshith Bachimanchi <[email protected]>
Co-authored-by: gideon <[email protected]>
Co-authored-by: Benjamin Midtvedt <[email protected]>
Co-authored-by: Carlo <[email protected]>1 parent cdb6097 commit c751e5d
File tree
7 files changed
+436
-58
lines changed- deeptrack
- models
- gans
- vaes
- waes
- test
7 files changed
+436
-58
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1637 | 1637 | | |
1638 | 1638 | | |
1639 | 1639 | | |
1640 | | - | |
| 1640 | + | |
1641 | 1641 | | |
1642 | 1642 | | |
1643 | 1643 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| 10 | + | |
10 | 11 | | |
11 | 12 | | |
12 | 13 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
6 | | - | |
7 | | - | |
8 | 6 | | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
9 | 18 | | |
10 | 19 | | |
11 | 20 | | |
| 21 | + | |
12 | 22 | | |
13 | 23 | | |
14 | | - | |
15 | 24 | | |
16 | 25 | | |
17 | 26 | | |
| |||
21 | 30 | | |
22 | 31 | | |
23 | 32 | | |
| 33 | + | |
| 34 | + | |
24 | 35 | | |
25 | 36 | | |
26 | 37 | | |
| 38 | + | |
| 39 | + | |
27 | 40 | | |
28 | 41 | | |
29 | 42 | | |
| |||
36 | 49 | | |
37 | 50 | | |
38 | 51 | | |
39 | | - | |
| 52 | + | |
40 | 53 | | |
41 | 54 | | |
42 | | - | |
| 55 | + | |
43 | 56 | | |
44 | 57 | | |
45 | | - | |
| 58 | + | |
46 | 59 | | |
47 | 60 | | |
48 | 61 | | |
49 | | - | |
| 62 | + | |
| 63 | + | |
50 | 64 | | |
51 | 65 | | |
52 | 66 | | |
| |||
58 | 72 | | |
59 | 73 | | |
60 | 74 | | |
61 | | - | |
| 75 | + | |
62 | 76 | | |
63 | 77 | | |
64 | | - | |
| 78 | + | |
65 | 79 | | |
66 | 80 | | |
67 | | - | |
68 | | - | |
| 81 | + | |
69 | 82 | | |
70 | 83 | | |
71 | 84 | | |
| |||
75 | 88 | | |
76 | 89 | | |
77 | 90 | | |
| 91 | + | |
| 92 | + | |
78 | 93 | | |
79 | 94 | | |
80 | 95 | | |
81 | 96 | | |
82 | 97 | | |
| 98 | + | |
| 99 | + | |
| 100 | + | |
| 101 | + | |
83 | 102 | | |
| 103 | + | |
84 | 104 | | |
85 | 105 | | |
86 | 106 | | |
| |||
98 | 118 | | |
99 | 119 | | |
100 | 120 | | |
| 121 | + | |
101 | 122 | | |
102 | 123 | | |
103 | 124 | | |
| |||
112 | 133 | | |
113 | 134 | | |
114 | 135 | | |
115 | | - | |
| 136 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
4 | 3 | | |
5 | 4 | | |
6 | 5 | | |
7 | | - | |
8 | 6 | | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
9 | 18 | | |
10 | | - | |
| 19 | + | |
11 | 20 | | |
12 | | - | |
| 21 | + | |
13 | 22 | | |
14 | 23 | | |
| 24 | + | |
15 | 25 | | |
16 | 26 | | |
17 | 27 | | |
18 | 28 | | |
19 | 29 | | |
20 | 30 | | |
21 | 31 | | |
22 | | - | |
23 | 32 | | |
24 | 33 | | |
| 34 | + | |
25 | 35 | | |
| 36 | + | |
26 | 37 | | |
27 | 38 | | |
28 | 39 | | |
| |||
32 | 43 | | |
33 | 44 | | |
34 | 45 | | |
35 | | - | |
| 46 | + | |
36 | 47 | | |
37 | | - | |
38 | | - | |
39 | 48 | | |
40 | 49 | | |
41 | | - | |
42 | | - | |
43 | | - | |
44 | | - | |
| 50 | + | |
| 51 | + | |
45 | 52 | | |
46 | 53 | | |
47 | | - | |
| 54 | + | |
48 | 55 | | |
49 | 56 | | |
50 | | - | |
| 57 | + | |
51 | 58 | | |
| 59 | + | |
52 | 60 | | |
53 | | - | |
54 | | - | |
55 | | - | |
56 | | - | |
57 | | - | |
58 | | - | |
| 61 | + | |
59 | 62 | | |
60 | 63 | | |
| 64 | + | |
61 | 65 | | |
62 | 66 | | |
63 | 67 | | |
64 | 68 | | |
65 | 69 | | |
66 | 70 | | |
67 | 71 | | |
| 72 | + | |
68 | 73 | | |
69 | 74 | | |
70 | 75 | | |
| 76 | + | |
71 | 77 | | |
72 | 78 | | |
73 | 79 | | |
| |||
88 | 94 | | |
89 | 95 | | |
90 | 96 | | |
91 | | - | |
92 | | - | |
93 | | - | |
| 97 | + | |
94 | 98 | | |
95 | 99 | | |
96 | 100 | | |
97 | 101 | | |
98 | 102 | | |
| 103 | + | |
99 | 104 | | |
100 | 105 | | |
101 | 106 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
0 commit comments