-
Dear Team and Community, I truly appreciate this project and the work being done here. I wanted to inquire if there’s an easy way to extract the latent space from this model. As someone fairly new to machine learning, I would greatly appreciate it if you could provide a code snippet or point me towards an API reference that could assist with this. Thank you in advance for your help! :) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
Hi, Thank you for starting this discussion and for your kind words about the project! Currently, none of the models in Mambular are pre-trained or prior-fitted on any tasks. While we do use embeddings, they are specific to the task and directly integrated into the model head. As a result, Mambular does not provide a way to generate embeddings for unseen data, unlike pre-trained models. To clarify, are you looking to extract embeddings from a model you've already trained on your dataset, or are you asking whether we offer pre-trained models similar to TabPFN that can generalize to unseen tables? |
Beta Was this translation helpful? Give feedback.
-
Thanks for the clarification. We have not thought about this usecase so the library does not support it so far. Feel free to raise an issue with a fetaure request and we will add it in the next release (Hopefully within 4 weeks). In the meantime, you could look at the models in mambular/base_models and directly extract the latent spaces from there, but it would require to rewrite this base class which could be a bit tricky. |
Beta Was this translation helpful? Give feedback.
Thanks for the clarification. We have not thought about this usecase so the library does not support it so far. Feel free to raise an issue with a fetaure request and we will add it in the next release (Hopefully within 4 weeks). In the meantime, you could look at the models in mambular/base_models and directly extract the latent spaces from there, but it would require to rewrite this base class which could be a bit tricky.