Source code for sparknlp.annotator.audio.hubert_for_ctc

#  Copyright 2017-2022 John Snow Labs
#
#  Licensed under the Apache License, Version 2.0 (the "License");
#  you may not use this file except in compliance with the License.
#  You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
#  Unless required by applicable law or agreed to in writing, software
#  distributed under the License is distributed on an "AS IS" BASIS,
#  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#  See the License for the specific language governing permissions and
#  limitations under the License.

"""Contains classes concerning HubertForCTC."""

from sparknlp.common import *


[docs]class HubertForCTC(AnnotatorModel, HasBatchedAnnotateAudio, HasAudioFeatureProperties, HasEngine): """Hubert Model with a language modeling head on top for Connectionist Temporal Classification (CTC). Hubert was proposed in HuBERT: Self-Supervised Speech Representation Learning by Masked Prediction of Hidden Units by Wei-Ning Hsu, Benjamin Bolte, Yao-Hung Hubert Tsai, Kushal Lakhotia, Ruslan Salakhutdinov, Abdelrahman Mohamed. The annotator takes audio files and transcribes it as text. The audio needs to be provided pre-processed an array of floats. Note that this annotator is currently not supported on Apple Silicon processors such as the M1. This is due to the processor not supporting instructions for XLA. Pretrained models can be loaded with ``pretrained`` of the companion object: >>> speechToText = HubertForCTC.pretrained() \\ ... .setInputCols(["audio_assembler"]) \\ ... .setOutputCol("text") The default model is ``"asr_hubert_large_ls960"``, if no name is provided. For available pretrained models please see the `Models Hub <https://sparknlp.org/models>`__. To see which models are compatible and how to import them see https://github.com/JohnSnowLabs/spark-nlp/discussions/5669 and to see more extended examples, see `HubertForCTCTestSpec <https://github.com/JohnSnowLabs/spark-nlp/blob/master/src/test/scala/com/johnsnowlabs/nlp/annotators/audio/HubertForCTCTestSpec.scala>`__. **Paper Abstract:** *Self-supervised approaches for speech representation learning are challenged by three unique problems: (1) there are multiple sound units in each input utterance, (2) there is no lexicon of input sound units during the pre-training phase, and (3) sound units have variable lengths with no explicit segmentation. To deal with these three problems, we propose the Hidden-Unit BERT (HuBERT) approach for self-supervised speech representation learning, which utilizes an offline clustering step to provide aligned target labels for a BERT-like prediction loss. A key ingredient of our approach is applying the prediction loss over the masked regions only, which forces the model to learn a combined acoustic and language model over the continuous inputs. HuBERT relies primarily on the consistency of the unsupervised clustering step rather than the intrinsic quality of the assigned cluster labels. Starting with a simple k-means teacher of 100 clusters, and using two iterations of clustering, the HuBERT model either matches or improves upon the state-of-the-art wav2vec 2.0 performance on the Librispeech (960h) and Libri-light (60,000h) benchmarks with 10min, 1h, 10h, 100h, and 960h fine-tuning subsets. Using a 1B parameter model, HuBERT shows up to 19% and 13% relative WER reduction on the more challenging dev-other and test-other evaluation subsets.* References ---------- `HuBERT: Self-Supervised Speech Representation Learning by Masked Prediction of Hidden Units <https://arxiv.org/abs/2106.07447>`__ ====================== ====================== Input Annotation types Output Annotation type ====================== ====================== ``AUDIO`` ``DOCUMENT`` ====================== ====================== Parameters ---------- batchSize Size of each batch, by default 4 Examples -------- >>> import sparknlp >>> from sparknlp.base import * >>> from sparknlp.annotator import * >>> from pyspark.ml import Pipeline >>> audioAssembler = AudioAssembler() \\ ... .setInputCol("audio_content") \\ ... .setOutputCol("audio_assembler") >>> speechToText = HubertForCTC \\ ... .pretrained() \\ ... .setInputCols(["audio_assembler"]) \\ ... .setOutputCol("text") >>> pipeline = Pipeline().setStages([audioAssembler, speechToText]) >>> processedAudioFloats = spark.createDataFrame([[rawFloats]]).toDF("audio_content") >>> result = pipeline.fit(processedAudioFloats).transform(processedAudioFloats) >>> result.select("text.result").show(truncate = False) +------------------------------------------------------------------------------------------+ |result | +------------------------------------------------------------------------------------------+ |[MISTER QUILTER IS THE APOSTLE OF THE MIDLE CLASES AND WE ARE GLAD TO WELCOME HIS GOSPEL ]| +------------------------------------------------------------------------------------------+ """ name = "HubertForCTC" inputAnnotatorTypes = [AnnotatorType.AUDIO] outputAnnotatorType = AnnotatorType.DOCUMENT configProtoBytes = Param(Params._dummy(), "configProtoBytes", "ConfigProto from tensorflow, serialized into byte array. Get with " "config_proto.SerializeToString()", TypeConverters.toListInt)
[docs] def setConfigProtoBytes(self, b): """Sets configProto from tensorflow, serialized into byte array. Parameters ---------- b : List[int] ConfigProto from tensorflow, serialized into byte array """ return self._set(configProtoBytes=b)
@keyword_only def __init__(self, classname="com.johnsnowlabs.nlp.annotators.audio.HubertForCTC", java_model=None): super(HubertForCTC, self).__init__( classname=classname, java_model=java_model ) self._setDefault( batchSize=4 ) @staticmethod
[docs] def loadSavedModel(folder, spark_session): """Loads a locally saved model. Parameters ---------- folder : str Folder of the saved model spark_session : pyspark.sql.SparkSession The current SparkSession Returns ------- HubertForCTC The restored model """ from sparknlp.internal import _HubertForCTC jModel = _HubertForCTC(folder, spark_session._jsparkSession)._java_obj return HubertForCTC(java_model=jModel)
@staticmethod
[docs] def pretrained(name="asr_hubert_large_ls960", lang="en", remote_loc=None): """Downloads and loads a pretrained model. Parameters ---------- name : str, optional Name of the pretrained model, by default "asr_hubert_large_ls960" lang : str, optional Language of the pretrained model, by default "en" remote_loc : str, optional Optional remote address of the resource, by default None. Will use Spark NLPs repositories otherwise. Returns ------- HubertForCTC The restored model """ from sparknlp.pretrained import ResourceDownloader return ResourceDownloader.downloadModel(HubertForCTC, name, lang, remote_loc)