Detext Versions Save

DeText: A Deep Neural Text Understanding Framework for Ranking and Classification Tasks

v2.0.6

3 years ago

Changes:

  • Use external dependency smart-arg instead of the temporary arg_suite solution (#38 )
  • Fix bugs related to text processing (#40 )

v2.0.5-alpha

3 years ago

test automatic release

v1.2.0

3 years ago

Currently DeText's design for sparse feature has simple modeling power for sparse features.

  1. only linear model is applied on sparse features
  2. there's no interaction between sparse features and dense features (model_score = dense_score + sparse_score)

DeText v1.2.0 resolves the above limitation on sparse feature by

  1. computing dense representation of sparse features
  2. allowing interactions between sparse features and wide features

More specifically, the model architecture changes from

dense_score = dense_ftrs -> MLP
sparse_score = sparse_ftrs -> Linear
final_score = dense_score + sparse_score

to

sparse_emb_ftrs = sparse_ftrs -> Dense(sp_emb_size)
all_ftrs = (dense_ftrs, sparse_emb_ftrs) -> Concatenate
final_score= all_ftrs -> MLP

v1.1.0

3 years ago

v1.0.12

4 years ago

expose tfrecord dataset transformation function for LinkedIn usage (#10 )