tensornet-0.1.0
TensorNet V-0.1.0
First version of TensorNet.
In this version we have published tensornet with async train mode support which we have tested completely.
the main API contained:
-
tn.distribute.PsStrategy.
tn.distribute.PsStrategy
with same interface with tensorflow's strategy in order to cluster management. -
tn.feature_column.category_column
tn.feature_column.category_column
is one of the important API of tensornet, with which we could define sparse feature column support dimension close to 2**64.tn.feature_column.category_column
has the same interface withtf.feature_column
. -
tn.layers.EmbeddingFeatures
tn.layers.EmbeddingFeatures
is the second important API in tensornet, in which we pull and push sparse embeddiong vector from parameter server. -
tn.optimizer.Optimizer
We wrapped tensorflow optimizer intn.optimizer.Optimizer
, this is mainly used in asyc train mode, in which we intercept tensorflow's gradients update logic, and update gradients in parameter server asynchronously. -
tn.model.Model
We inherited keras.layers.model and override its save model method to support save and load sparse feature in parameter server.