-
Hi, I know we can get equivariant features by setting "invariants_only=False" in "get_descriptors", but is it possible to further distinguish vector and tensor features (both are equivariant features as far as I know) within it? I greatly appreciate it if such functions could be added. Thank you all! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Hi, Yes, you can distinguish the individual components of If you use a model with
Note: Equivariant features ( L > 0 ) are not created for the final interaction layer. Regarding your request for extracting specific ( L = x ) descriptors: while implementing such functionality in Let me know if you need further clarification or guidance! |
Beta Was this translation helpful? Give feedback.
-
Can this structure info please be ported into the documentation (if it's not there already!) |
Beta Was this translation helpful? Give feedback.
-
It is in some form: |
Beta Was this translation helpful? Give feedback.
Hi,
Yes, you can distinguish the individual components of
get_descriptors
. Here's an example breakdown:If you use a model with
--max_L=2
,--num_channels=64
, and two interaction layers, settinginvariants_only=False
results in a 640-dimensional output vector per atom. The structure of this vector is as follows:Note: Equivariant features ( L > 0 ) are not created for the final intera…