turicreate.sound_classifier.SoundClassifier¶
-
class
turicreate.sound_classifier.SoundClassifier(state)¶ A trained model that is ready to use for sound classification or to export to CoreML.
This model should not be constructed directly.
See also
Methods
SoundClassifier.classify(dataset[, verbose, …]) |
Return the classification for each examples in the dataset. |
SoundClassifier.evaluate(dataset[, metric, …]) |
Evaluate the model by making predictions of target values and comparing these to actual values. |
SoundClassifier.export_coreml(filename) |
Save the model in Core ML format. |
SoundClassifier.name() |
Returns the name of the model. |
SoundClassifier.predict(dataset[, …]) |
Return predictions for dataset. |
SoundClassifier.predict_topk(dataset[, …]) |
Return top-k predictions for the dataset. |
SoundClassifier.save(location) |
Save the model. |
SoundClassifier.summary([output]) |
Print a summary of the model. |