However, switching it to use error_squared_norm()
seems to be fine:
This value of 4.250 also matches the one that I now see on the public GitHub:
\nhttps://github.com/facebookresearch/theseus/blob/main/tutorials/00_introduction.ipynb
\nThe relevant part is located here and uses error_metric()
:
Has there been a recent change which deprecated some of the APIs? If so, might be worth updating the notebook examples.
","upvoteCount":1,"answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"Ah, the error_metric
method was introduced recently, after version 0.1.4. The tutorials are consistent with the latest source code, but I missed that updating tutorials with this new change would break them for older versions of theseus
. Sorry about this.
Switching to error_squared_norm()
is the correct thing to do if you are on an older version.
error_metric
vs error_squared_norm
?
#531
-
Has there been a recent change that deprecated For ease of copy and paste, the error text is below:
However, switching it to use This value of 4.250 also matches the one that I now see on the public GitHub: https://github.com/facebookresearch/theseus/blob/main/tutorials/00_introduction.ipynb The relevant part is located here and uses Has there been a recent change which deprecated some of the APIs? If so, might be worth updating the notebook examples. |
Beta Was this translation helpful? Give feedback.
-
Ah, the Switching to |
Beta Was this translation helpful? Give feedback.
Ah, the
error_metric
method was introduced recently, after version 0.1.4. The tutorials are consistent with the latest source code, but I missed that updating tutorials with this new change would break them for older versions oftheseus
. Sorry about this.Switching to
error_squared_norm()
is the correct thing to do if you are on an older version.