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
If there is no intercell seeding for magic cells, would we be able to autograde things like the SQL RAND() functions without having to specify a seed in every RAND() call across multiple cells?
If there is no intercell seeding for magic cells, would we be able to autograde things like the SQL RAND() functions without having to specify a seed in every RAND() call across multiple cells?
The current implementation of intercell seeding does not support seeding SQL; it only seeds numpy and the built-in random library. So yes, to seed RAND in SQL, you would need to add the seeds yourself.
For cells that use cell magics, intercell seeding may cause errors that prevent those cells from executing. For example, a cell like
becomes
I think the solution here should be just to not insert intercell seeding code for cells that start with
%%
.The text was updated successfully, but these errors were encountered: