Skip to content

Releases: r3tex/ObjectDetector.jl

v0.2.2

13 Apr 19:01
ee87e7e
Compare
Choose a tag to compare

ObjectDetector v0.2.2

Diff since v0.2.1

Merged pull requests:

  • CompatHelper: bump compat for "BenchmarkTools" to "0.7" (#64) (@github-actions[bot])
  • CompatHelper: bump compat for "PrettyTables" to "0.12" (#65) (@github-actions[bot])
  • Reduce type instability during forward pass (#66) (@IanButterworth)

v0.2.1

28 Mar 23:45
1afd66c
Compare
Choose a tag to compare

ObjectDetector v0.2.1

Diff since v0.2.0

Merged pull requests:

  • CompatHelper: bump compat for "Flux" to "0.12" (#62) (@github-actions[bot])
  • Fix Flux BatchNorm deprecation (#63) (@IanButterworth)

v0.2.0

28 Mar 04:56
Compare
Choose a tag to compare

ObjectDetector v0.2.0

Diff since v0.1.14

Merged pull requests:

Breaking changes

  • Make empty output type stable and have correct empty shape #61
    Previously an empty result would erroneously return as either CUDA.zeros(Float32, 1, 1) if CUDA was enabled or
    zeros(Float32, 1, 1) if CPU-only. This was poor behavior as the latter stages of the yolo model always happens
    on CPU, so the output should always be Matrix{Float32}.
    Additionally, the (1,1) size of the output was illogical and hard to handle.
    Zero detections are now returned as Matrix{Float32} with a size that is stable in the first dimension.
    i.e. 89×0 Matrix{Float32} for YOLO.v3_608_COCO

Bugfixes

  • Fix batches > 1 #60
    It turns out that batches > 1 were broken due to the overlapthreshold check not being batch page specific, meaning
    it was rejecting bboxes from other pages if they overlapped too much. Fixed and added tests to catch it

v0.1.14

18 Mar 03:19
a555d50
Compare
Choose a tag to compare

ObjectDetector v0.1.14

Diff since v0.1.13

Closed issues:

  • reshape with float tuple (#58)

Merged pull requests:

  • CompatHelper: bump compat for "BenchmarkTools" to "0.6" (#57) (@github-actions[bot])
  • Fix div (#59) (@IanButterworth)

v0.1.13

08 Feb 15:33
9b58513
Compare
Choose a tag to compare

ObjectDetector v0.1.13

Diff since v0.1.12

Merged pull requests:

  • CompatHelper: bump compat for "PrettyTables" to "0.10" (#50) (@github-actions[bot])
  • CompatHelper: bump compat for "PrettyTables" to "0.11" (#54) (@github-actions[bot])

v0.1.12

13 Jan 22:19
547f298
Compare
Choose a tag to compare

ObjectDetector v0.1.12

Diff since v0.1.11

Merged pull requests:

  • Fixups for 1.6, add 1.6 beta and nightly to CI (#51) (@ianshmean)

v0.1.11

07 Aug 06:10
3ecfefa
Compare
Choose a tag to compare

ObjectDetector v0.1.11

Diff since v0.1.10

Merged pull requests:

  • Fix newly erroring count call within keepdetections (#48) (@ianshmean)

v0.1.10

13 Jul 20:08
91a7cc6
Compare
Choose a tag to compare

ObjectDetector v0.1.10

Diff since v0.1.9

v0.1.9

13 Jul 17:07
ef69fd6
Compare
Choose a tag to compare

ObjectDetector v0.1.9

Diff since v0.1.8

Merged pull requests:

v0.1.8

12 Jul 01:08
52f450c
Compare
Choose a tag to compare

ObjectDetector v0.1.8

Diff since v0.1.7

Merged pull requests:

  • [Edited] CompatHelper: bump compat for "Flux" to "0.11" (#44) (@github-actions[bot])