Visualize the model
#211
-
How do we visualize the model architecture in CEBRA? eg. using make_dot |
Beta Was this translation helpful? Give feedback.
Answered by
stes
Jan 25, 2025
Replies: 1 comment 3 replies
-
Hi @yuyiyi , the cebra encoder is a regular PyTorch Module, ie any visualisation library for such modules would work. However, many standard models only have a few layers without a complicated architecture, so it might also make sense to look at their string representation and go from there with a manual visualisation as well. Please let me know if that addresses the question already, or if you're looking for something else. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @yuyiyi , yes this is possible, you need to follow sklearn-logic for this (i.e., you need to call the
fit()
function once, e.g. by setting the # of steps very low).