You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey! I am trying to fit a model for solenoids attracting pieces of ferromagnetic particles placed on water surface for nano/micro robotic manipulation. I have two custom libraries and one Polynomial library tensored together. Since no movement occurs without a current value, I believe, the current needs to be multiplied with each term (hence the Polynomial library).
To achieve this, I am using the inputs_per_library argument for the Generalized Library. This gives the correct terms for combinations that consists of tensoring only two libraries, but for three libraries, the terms are incorrect.
According to the set inputs_per_library, the last term in each term should be I/I^2/I^3 which is correct for all libraries generated by tensoring with only 2 libraries but for libraries generated with tensoring three libraries, 'r' is used instead of 'I'. You can see this issue for features from 'cos(theta) 1/r r' to 'cos(theta) 1/r^3 r^3'.
'cos(theta) 1/r^3 r^3' should be 'cos(theta) 1/r^3 I^3' instead, for example.
The text was updated successfully, but these errors were encountered:
Hey! I am trying to fit a model for solenoids attracting pieces of ferromagnetic particles placed on water surface for nano/micro robotic manipulation. I have two custom libraries and one Polynomial library tensored together. Since no movement occurs without a current value, I believe, the current needs to be multiplied with each term (hence the Polynomial library).
To achieve this, I am using the inputs_per_library argument for the Generalized Library. This gives the correct terms for combinations that consists of tensoring only two libraries, but for three libraries, the terms are incorrect.
Reproducing code example:
This gives me the following feature_names:
According to the set inputs_per_library, the last term in each term should be I/I^2/I^3 which is correct for all libraries generated by tensoring with only 2 libraries but for libraries generated with tensoring three libraries, 'r' is used instead of 'I'. You can see this issue for features from 'cos(theta) 1/r r' to 'cos(theta) 1/r^3 r^3'.
'cos(theta) 1/r^3 r^3' should be 'cos(theta) 1/r^3 I^3' instead, for example.
The text was updated successfully, but these errors were encountered: