Instructions to use team-lucid/hubert-base-korean with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use team-lucid/hubert-base-korean with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="team-lucid/hubert-base-korean", trust_remote_code=True)# Load model directly from transformers import AutoProcessor, AutoModel processor = AutoProcessor.from_pretrained("team-lucid/hubert-base-korean", trust_remote_code=True) model = AutoModel.from_pretrained("team-lucid/hubert-base-korean", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
any training details?
it's good to see new hubert model trained on korea, could you inform training details(e.g. hyperparams, dataset) about this model?
Sorry for the late confirmation
Currently, the model card has been updated, so please check it.
I will close the issue
thanks for reply.
could you explain more about which dataset is used for training kmeans model for second training?
like in hubert paper, authors used subset of librispeech
Similarly, we randomly sampled 100 hours from the combination of datasets we used and used them to train the kmeans model.
@hyunwoo3235 thanks for sharing, what was final loss and top-k accuracy of training? for both base and large model
The final losses for the base and large models were 1.995 and 2.25, respectively.
unfortunately, the model was not tested as it was trained as a validation for another project. therefore, there are no other performance metrics.
thanks!