ctr_model_zoo
ctr_model_zoo copied to clipboard
some ctr model, implemented by PyTorch, such as Factorization Machines, Field-aware Factorization Machines, DeepFM, xDeepFM, Deep Interest Network
Results
1
ctr_model_zoo issues
Sort by
recently updated
recently updated
newest added
In FFM, I see the following parameters. ``` self.embedding_size = params['embedding_size'] self.field_size = params['field_size'] self.feature_size = params['feature_size'] feature_idx = features["feature_idx"] feature_values = features["feature_values"] ``` If I have 17 columns, each...