`__radd__` does not work with arrays
On line 377 of model.py
the test if not other
raises an error when other
is a numpy array. Should change the test to if other is 0
to get the intended behaviour. Adding a Model
to an array from the left works as intended.