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
Hi, the error suggests you are running out of memory. How big the all_models dataframe is? And how much free RAM did you have? Also what verison of libarary are you using?
The MAR function does not do any batching, i.e. it tries to allocate meomry in order of O(circuit_size * num_datapoints) which could be big. You can try calling MAR on a smaller subset of your data and see what happens. If the error persists might be other issues.
test_data.csv is an easy way to define the domains of the variables
a,c,b,d
True,True,True,True
False,False,False,False
When using MAR, this always results in the following error
Is there something wrong in my code?
Greetings
Sieben
The text was updated successfully, but these errors were encountered: