|
|
|
|
|
by altairiumblue
2669 days ago
|
|
- I really don't think that Python needs an additional layer of abstraction, especially when using scikit-learn which is high level enough as it is. - The workflow in the readme is missing the part when you actually use the model. This will often need to be connected to your original preprocessing in some way - for example, if the dataset that you're predicting on has a categorical variable with a unique value which wasn't present in the training dataset, this effectively introduces a new feature in your dataset, which makes it impossible to do model.predict(). The need to manage things like this changes that workflow chart quite a bit. |
|