Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
Keras SSD v0.7.0.tar.gz | 2018-03-26 | 10.4 MB | |
Keras SSD v0.7.0.zip | 2018-03-26 | 10.4 MB | |
README.md | 2018-03-26 | 1.1 kB | |
Totals: 3 Items | 20.8 MB | 0 |
Release 0.7.0
Breaking Changes
- Introduced a new data generator.
Major Features and Improvements
- Introduced a new data generator that has several advantages over the old data generator:
- It can replicate the data augmentation pipeline of the original Caffe SSD implementation.
- It's very flexible: Image transformations are no longer hard-coded into the generator itself. Instead, the generator takes a list of transformation objects that it applies to the data. This allows you to realize arbitrary image processing chains. In particular, you can now put transformations in any order or even have multiple parallel transformation chains from which one chain is randomly chosen. The generator comes with a number of useful image transformation classes that can be used out of the box. Among them are most common photometric and geometric transformations, and, in particular, many useful patch sampling transformations.
API Changes
The API of the new data generator is not compatible with the old data generator.
Known Issues
None