File tree Expand file tree Collapse file tree 3 files changed +3
-9
lines changed
Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change 11Changes for this version of DIPLOMAT:
2- - Added improved clustering algorithms.
3- - New offset aware viterbi.
4- - Refined frame filtering.
5- - Improved UI startup times.
6- - New up scaling frame mode supported, currently behind a CLI flag.
7- - Fixes to offset domination checks.
8- - Many additional minor tweaks and bug fixes.
2+ - Fix crash that occurs with older versions of numpy.
Original file line number Diff line number Diff line change 22A tool providing multi-animal tracking capabilities on top of other Deep learning based tracking software.
33"""
44
5- __version__ = "0.2.0 "
5+ __version__ = "0.2.1 "
66# Can be used by functions to determine if diplomat was invoked through it's CLI interface.
77CLI_RUN = False
88
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ def pack(
126126 x_coords ,
127127 y_coords ,
128128 probs
129- ], dtype = self .mem_type , axis = 0 )
129+ ], axis = 0 ). astype ( self .mem_type )
130130 return self
131131
132132 def unpack_unscaled (self ):
You can’t perform that action at this time.
0 commit comments