How to use Orange/SSA-HuBERT-base-5k with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="Orange/SSA-HuBERT-base-5k")
# Load model directly from transformers import AutoProcessor, AutoModel processor = AutoProcessor.from_pretrained("Orange/SSA-HuBERT-base-5k") model = AutoModel.from_pretrained("Orange/SSA-HuBERT-base-5k")
The community tab is the place to discuss and collaborate with the HF community!