transformers-fork
Version:
State-of-the-art Machine Learning for the web. Run 🤗 Transformers directly in your browser, with no need for a server!
16 lines (13 loc) • 591 B
JavaScript
import { Processor } from "../../base/processing_utils.js";
import { AutoFeatureExtractor } from "../auto/feature_extraction_auto.js";
export class Wav2Vec2ProcessorWithLM extends Processor {
static feature_extractor_class = AutoFeatureExtractor
/**
* Calls the feature_extractor function with the given audio input.
* @param {any} audio The audio input to extract features from.
* @returns {Promise<any>} A Promise that resolves with the extracted features.
*/
async _call(audio) {
return await this.feature_extractor(audio)
}
}