- 02 Nov, 2017 3 commits
-
-
Davis King authored
-
Davis King authored
atomics. This makes the timing code a lot more precise.
-
Davis King authored
minutes in the output.
-
- 01 Nov, 2017 1 commit
-
-
Davis King authored
as input layer specifications. This will create input tensors with K channels.
-
- 29 Oct, 2017 8 commits
-
-
Davis King authored
-
Davis King authored
-
Davis King authored
be smaller. Instead, they now behave like std::vector in that they just change their nominal size but keep the same memory, only reallocating if they are resized to something larger than their underlying memory block. This change makes some uses of dlib faster, in particular, running networks on a large set of images of differing sizes will now run faster since there won't be any GPU reallocations, which are notoriously slow.
-
Davis King authored
-
Davis King authored
-
Davis King authored
-
Davis King authored
-
Davis King authored
-
- 28 Oct, 2017 7 commits
-
-
Davis King authored
when we switched everything to std::shared_ptr. Turns out std::shared_ptr has some surprising limitations. This change fixes a bug where the program crashes or hangs sometimes during program shutdown.
-
Davis King authored
-
Davis King authored
-
Davis King authored
-
Davis King authored
-
Davis King authored
included in the edge graph. If it isn't then the output labels from chinese_whispers would be missing faces in this degenerate case. So basically this fixes a bug where chinese_whispers(), when called from python, would sometimes return a labels array that doesn't include labels for all the inputs.
-
Davis King authored
included in the edge graph. If it isn't then the output labels from chinese_whispers would be missing faces in this degenerate case.
-
- 27 Oct, 2017 4 commits
-
-
Davis King authored
-
Davis King authored
-
Davis King authored
of thing with cmake targets already in set_compiler_specific_options.cmake.
-
Sean Warren authored
* Fall back on find_package for blas, lapack on Windows * Remove debugging message
-
- 25 Oct, 2017 3 commits
-
-
Davis King authored
out of the random_cropper.
-
Davis King authored
dimensions in the same format as the mmod_options object (i.e. two lengths measured in pixels). This should make defining random_cropping strategies that are consistent with MMOD settings much more straightforward since you can just take the mmod_options settings and give them to the random_cropper and it will do the right thing.
-
Davis King authored
-
- 24 Oct, 2017 3 commits
-
-
Davis King authored
-
Davis King authored
-
Sean Warren authored
* Use banded Cholesky factorization if possible Computation cost from n.n.n -> n.n.b where b is band size * Tidy up whitespace * Remove typo * Escape from banded matrix detection correctly * Use LAPACK banded Cholesky factorisation where possible * Add banded chol tests * Add test for banded chol in column major layout * Use row major layout for banded chol - more efficient as we will pass to LAPACK
-
- 23 Oct, 2017 1 commit
-
-
Davis King authored
infinity.
-
- 21 Oct, 2017 6 commits
-
-
Gilles Rochefort authored
* Add some operator() to cv_image for compatibility with mmod. * Update documentation
-
Davis King authored
-
Gilles Rochefort authored
-
Davis King authored
early iterations since the model might produce a huge number of false alarms while the detector is still bad. Processing all these detections can cause it to run slowly until the model is good enough to avoid really excessive amounts of false alarms. This change puts more of a limit on the number of false alarms processed during those early iterations and avoids the slowdown.
-
Davis King authored
doesn't effect normal use, but it's still wrong and this change fixes it.
-
Davis King authored
-
- 20 Oct, 2017 2 commits
-
-
Davis King authored
-
Davis King authored
-
- 19 Oct, 2017 1 commit
-
-
Davis King authored
*before* allocating new memory. It used to be the other way around which caused momentary spikes of increased memory usage. This could put you over the total memory available in some cases which is obviously less than ideal behavior.
-
- 18 Oct, 2017 1 commit
-
-
Davis King authored
-