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
UnboundLocalError: local variable 'fit' referenced before assignment happens due to the assignment fit['beta'] = beta on line 233 not benefiting from fit = dict() of line 217 which is out of scope. It seems that the latter statement should be moved to just after line 188.
The text was updated successfully, but these errors were encountered:
UnboundLocalError: local variable 'fit' referenced before assignment
happens due to the assignmentfit['beta'] = beta
on line 233 not benefiting fromfit = dict()
of line 217 which is out of scope. It seems that the latter statement should be moved to just after line 188.The text was updated successfully, but these errors were encountered: