Reputation: 177
I cannot seem to save any of my models, nor any of the data created from their training. What am I missing? The input is >15,000 images created in ~200 classes.
Upvotes: 3
Views: 438
Reputation: 1492
Your Save Data (3)
widget does not save anything since widget does not get any data at the input - note dashed line connecting Logistic Regression
and Save Widget (3)
. Logistic regression does not output any data since it does not get any data at the input.
You neither can save the models this way since they are not trained on data. In your example, they just provide the learner to the Test and Score
widget. In order to use the Save Model
widget, the previous widget (e.g. Logistic regression
) must get the data at the input which it uses for training. See the example in the documentation.
Upvotes: 1