oguerrer / ppi

The model of Policy Priority Inference
MIT License
10 stars 5 forks source link

line 204 #1

Closed grobles2 closed 1 year ago

grobles2 commented 1 year ago

I think instead of the following line 204 in ppi.py assert len(alphas) == N, 'betas should have the same size as I0'

you'd like to see

assert len(alphas) == len(betas), 'betas should have the same size as I0' or at least assert len(betas) == N, 'betas should have the same size as I0'

oguerrer commented 1 year ago

Corrected