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
A common use case is to store the last model in the on_model callback. This works fine with the current API but a lot of intermediate Symbol objects are created. Given Python's incredibly slow object construction, it would be better to implement the symbol array in C.
The text was updated successfully, but these errors were encountered:
This breaks backward compatibility because `Models.symbols` no longer
returns a list. Given the performance/memory problems with the previous
solutions it is hopefully worth it.
A common use case is to store the last model in the
on_model
callback. This works fine with the current API but a lot of intermediate Symbol objects are created. Given Python's incredibly slow object construction, it would be better to implement the symbol array in C.The text was updated successfully, but these errors were encountered: