How to leverage pre-trained DNN for CEBRA? #94
-
Hi authors, first of all, thank you for your amazing work. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @jungwoooseo , yes that is possible. You need to define a model architecture for your pretrained encoder (see cebra/models/model for examples on how to register). Preload your weights during initialisation, and then use the model either through the sklearn/torch API. In sklearn you'd pass the architecture Name you used to register the encoder. Let me know if you have additional questions! |
Beta Was this translation helpful? Give feedback.
Hi @jungwoooseo , yes that is possible. You need to define a model architecture for your pretrained encoder (see cebra/models/model for examples on how to register).
Preload your weights during initialisation, and then use the model either through the sklearn/torch API. In sklearn you'd pass the architecture Name you used to register the encoder.
Let me know if you have additional questions!