Skip to content

Releases: databricks/spark-deep-learning

v1.6.0

08 Jan 19:50
Compare
Choose a tag to compare
  • Deprecated some submodules and classes
  • Updated dependencies

v1.5.0

25 Jan 06:48
Compare
Choose a tag to compare
  • HorovodRunner's main function can now have a return value.
  • Better support for multiple GPU machines (Databricks only version).

v1.4.0

18 Nov 01:31
Compare
Choose a tag to compare
  • Upgrade to TensorFlow 1.12.0.

Release 1.3.0

13 Nov 05:06
Compare
Choose a tag to compare
  • Added HorovovodRunner API.
  • Simplified test and doc build w/ Docker and conda.
  • Updated public Python API docs.
  • Removed persistence from DeepImageFeaturizer.

Release 1.2.0

28 Aug 21:45
Compare
Choose a tag to compare
  • ignore nullable in DeepImageFeaturizer.validateSchema
  • upgrade TensorFrames version to 0.5.0
  • upgrade Tensorflow version to 1.10.0 and Keras version to 2.2.2

Release 1.1.0

18 Jun 21:48
Compare
Choose a tag to compare
  • keras_image_file_estimator support both sparse and dense vectors
  • upgrade TensorFrames version to 0.4.0
  • add style checks to Travis CI
  • doc fixes

Release 1.0.0

01 May 20:07
Compare
Choose a tag to compare

This is the 1.0.0 release. It brings compatibility with newer versions of Spark (2.3) and Tensorflow (1.6+). The custom image schema formerly defined in this package has been replaced with Spark's ImageSchema so there may be some breaking changes when updating to this version.

Notable changes:

  • (breaking change) Using the definition of images from Spark 2.3.0. The new definition uses the BGR channel ordering for 3-channel images instead of the RGB ordering used in this project before the change.
  • Persistence for DeepImageFeaturizer (both Python and Scala).

Release 0.3.0

30 Jan 19:56
Compare
Choose a tag to compare

This is the final release of dl-pipelines prior to migrating to new ImageSchema.

Notable changes:

  • Added vgg16, vgg19 models to DeepImageFeaturizer/DeepImagePredictor (Python).
  • Added a Scala API for DeepImageFeaturizer (for transfer learning for images).
  • Added TFTransformer and KerasTransformer for applying TensorFlow graphs or TensorFlow-backed Keras models to a column of arrays in a Spark DataFrame.

Release 0.2.0

31 Oct 17:32
Compare
Choose a tag to compare

This is the final release for Deep Learning Pipelines 0.2.0

Notable additions since 0.1.0:

  • KerasImageFileEstimator API (train a Keras model on image files)
  • SQL UDF support for Keras models
  • Added Xception, Resnet50 models to DeepImageFeaturizer/DeepImagePredictor.