-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathChangeLog
More file actions
75 lines (57 loc) · 1.86 KB
/
ChangeLog
File metadata and controls
75 lines (57 loc) · 1.86 KB
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
CHANGES
=======
v0.1.2
------
* get_vote_weights_*: use softmax to avoid overflow issues
v0.1.1
------
* Priority Vote: Adjusting kernel size for priority vote operations will now affect blurring
* Priority Vote: Consensus threshold can be 0
v0.1.0
------
* Add priority\_vote
* Add vote\_with\_distances
* Add voting\_with\_variances to include prior weights
v0.0.6
------
* feat(use\_identity\_mapping\_cache): allow caching identity\_mapping() results
* fix: 0.7.0 compatibility (#8)
* Update license in setup.cfg
v0.0.5
------
* Update documentation for sample()
* Allow non-square displacement fields
* Clean up identity mapping code
* Remove caching of identity mappings
* Use align\_corners=False from PyTorch 1.3.0 Will no longer work with earlier PyTorch versions
* Convert to using MIT License
v0.0.4
------
* Prevent producing NaN in inverse backward pass
* Allow accessing field type as torchfields.Field
* Ensure contiguous gradients in inversion backward pass
* Allow padding to be explicitly given in \_pad()
* Bump required pytorch version to 1.1.0
* Factor out voting, inversion, and util functions
* Update README.md
* Update README.md
v0.0.3
------
* Change ndim to ndimension() to support wider range of PyTorch versions
v0.0.2
------
* [Fix] affine\_field incorrect dimensions bug
v0.0.1
------
* [Fix] inverse not working on cpu
* Add setup.py, setup.cfg, README.md, .gitignore, and requirements.txt
* DisplacementField: minor bug fixes, refactors, and comments
* Safe division to avoid NaNs during backward pass
* Use winding number to test inclusion rather than bounding i,j
* Epsilon for comparison to zero
* Autopad functionality in left inverse
* More efficient left inverse using sparse tensors
* Mean finite vector function
* Inefficient implementation of left inverse
* Add DisplacementField class to abstract displacement field operations
* Initial commit