node-red-contrib-max-audio-classifier
Advanced tools
Comparing version 0.1.2 to 0.1.3
{ | ||
"name": "node-red-contrib-max-audio-classifier", | ||
"version": "0.1.2", | ||
"version": "0.1.3", | ||
"description": "Node-RED node for audio-classifier", | ||
@@ -25,4 +25,4 @@ "main": "node.js", | ||
}, | ||
"author": "", | ||
"author": "kastentx", | ||
"license": "Apache-2.0" | ||
} |
@@ -17,13 +17,14 @@ node-red-contrib-max-audio-classifier | ||
----- | ||
### Methods | ||
- get_metadata | ||
Return the metadata associated with the model | ||
- predict | ||
Predict audio classes from input data | ||
<html> | ||
<p>This model recognizes a signed 16-bit PCM wav file as an input, generates embeddings, applies PCA transformation/quantization, uses the embeddings as an input to a multi-attention classifier and outputs top 5 class predictions and probabilities as output. The model currently supports 527 classes which are part of the Audioset Ontology.</p> | ||
<h3>Inputs</h3> | ||
<dl class="message-properties"> | ||
<dt>payload <span class="property-type">Buffer</span></dt> | ||
<dd>Buffer data of 16-bit PCM wav file.</dd> | ||
</dl> | ||
<h3>Outputs</h3> | ||
<dl class="message-properties"> | ||
<dt>payload <span class="property-type">object</span></dt> | ||
<dd>Prediction.</dd> | ||
</dl> | ||
</html> |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No contributors or author data
MaintenancePackage does not specify a list of contributors or an author in package.json.
Found 1 instance in 1 package
36790
2