Autoint latent bottleneck features #518
Replies: 1 comment
-
Hey there, @jmrichardson! I'm a bot here to help you with bugs, questions, and contributions while you wait for a human maintainer. Let me know how I can assist you with the Autoint model. Yes, it is possible to obtain the bottleneck features from a tabular model AutoInt after it is fit for use in a downstream model. You can achieve this by using the Here's how you can obtain them: # Assuming `model` is an instance of AutoIntModel and `input_data` is your input tensor
bottleneck_features = model.backbone(input_data) This will give you the transformed features from the AutoInt model, which can be used as input to another model [1]. |
Beta Was this translation helpful? Give feedback.
-
Hi,
After the tabular model Autoint is fit, is it possible to obtain the bottleneck features for use in a downstream model?
Beta Was this translation helpful? Give feedback.
All reactions