Viktorre / Netflix_Prize_Deep_Learning_Solution

ML algorithm infrastructure to predict user movie ratings on netflix platform
2 stars 0 forks source link

Think of a way to handle the input data's dtpyes #26

Open Viktorre opened 2 years ago

Viktorre commented 2 years ago

Apart form astype(), several other operations in the code change the dtype of the input data, which might cause redundancies. This should be regulated in some way. Maybe unit tests?

AndreasLuckert commented 2 years ago

Look into pydantic.

Unittests are always a good idea. Testing all components forms the underlying foundation on which trustworthy and maintainable software is built.