You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.txt
+3-2
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,9 @@ Added logsignature calculations to Path.
4
4
Added the signature_to_logsignature function.
5
5
Added the multi_signature_combine function.
6
6
Improved speed and stability of the backwards operation through Path.
7
-
Added (fixed) memory profiling.
8
-
Dramatically improved the speed of several calculations, in particular the the forward calculation of signatures and logsignatures, via parallelisation
7
+
Dramatically improved the speed of several calculations, in particular the the forward calculation of signatures and logsignatures, via parallelisation.
8
+
Added support for multiple versions of PyTorch via a custom install script.
As can be seen, two pieces of information need to be provided: the final value of :attr:`X` along the stream dimension, and the signature of :attr:`X`.
31
+
As can be seen, two pieces of information need to be provided: the final value of :attr:`X` along the stream dimension, and the signature of :attr:`X`. But not :attr:`X` itself.
32
+
33
+
The first method (using the :attr:`initial` argument) will be much quicker than the second (simpler) method. The first
34
+
method efficiently uses just the new information :attr:`Y`, whilst the second method unnecessarily iterates over all of
35
+
the old information :attr:`X`.
31
36
32
37
In particular note that we only needed the last value of :attr:`X`. If memory efficiency is a concern, then by using the first method we can discard the other 999 terms of :attr:`X` without an issue!
0 commit comments