Skip to content

Releases: shenweichen/DeepCTR

v0.9.3

10 Nov 15:48
4db36c2
Compare
Choose a tag to compare

Change Log

Major Features and Improvements

Bug Fixes and Other Changes

DisscussionGroup

公众号:浅梦学习笔记 微信:deepctrbot 学习小组 加入 主题集合
公众号 微信 学习小组

v0.9.2

16 Oct 08:48
ec78b9b
Compare
Choose a tag to compare

Change Log

Major Features and Improvements

Bug Fixes and Other Changes

v0.9.1

11 Jun 07:34
9564e05
Compare
Choose a tag to compare

Change Log

Major Features and Improvements

Bug Fixes and Other Changes

DisscussionGroup

公众号:浅梦学习笔记 微信:deepctrbot 学习小组 加入 主题集合
公众号 微信 学习小组

v0.9.0

03 Sep 05:56
35288ae
Compare
Choose a tag to compare

Change Log

Major Features and Improvements

  • add multitask learning models : link @morningsky @shenweichen
    • SharedBottom
    • ESMM(Entire Space Multi-task Model)
    • MMOE(Multi-gate Mixture-of-Experts)
    • PLE(Progressive Layered Extraction)
  • add example of running multitask model in deepctr link

Bug Fixes and Other Changes

fix truncated feature value error when padding string sequence in run_multivalue_movielens_hash.py #389 @JiaweiCui

API changes

  • set dnn_hidden_units parameter to (256, 128, 64)
    • add new packagedeepctr.models.multitask
  • files of sequence model are moved from deepctr.models to deepctr.models.sequence
    • deepctr.models.din to deepctr.models.sequence.din
    • deepctr.models.dien to deepctr.models.sequence.dien
    • deepctr.models.dsin to deepctr.models.sequence.dsin
    • deepctr.models.bst to deepctr.models.sequence.bst

v0.8.7

18 Jul 16:08
9f15559
Compare
Choose a tag to compare

Change Log

Major Features and Improvements

Bug Fixes and Other Changes

API changes

Add vocabulary_path parameter for deepctr.feature_column.SparseFeat api doc

v0.8.6

14 Jun 11:40
0df401c
Compare
Choose a tag to compare

Change Log

Major Features and Improvements

Bug Fixes and Other Changes

v0.8.5

13 Mar 09:08
a94a8ec
Compare
Choose a tag to compare

Change Log

Major Features and Improvements

  • Add BST model doc
  • support scaled_dot_product,additive attention type and different pooling mode in Transformer layer. doc

API changes

  • Add attention_type and output_type parameter for Transformer layer.

v0.8.4

12 Feb 11:54
4762e85
Compare
Choose a tag to compare

Change Log

Bug Fixes and Other Changes

  • fix error in dcn-mix

v0.8.3

06 Jan 14:40
43b971c
Compare
Choose a tag to compare

Change Log

Major Features and Improvements

API changes

  • signature ofDenseFeat changed
    • before (name, dimension, dtype)
    • now (name, dimension, dtype, transform_fn)
  • The output shape of BilinearInteraction Layer used in FiBiNET changed
    • before:(batch_size, 1, filed_size*(filed_size-1)/2*embedding_size)
    • now: (batch_size, filed_size*(filed_size-1)/2, embedding_size)

Bug Fixes and Other Changes

  • fix model save issues in tf 2.1.0, h5py 3.0.0. #487
  • simplify methods in interaction.py

v0.8.2

11 Oct 14:20
e9c8f08
Compare
Choose a tag to compare

Change Log

Major Features and Improvements

Refactor DNN Layer.