Instructions to use MERaLiON/MERaLiON-2-10B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use MERaLiON/MERaLiON-2-10B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="MERaLiON/MERaLiON-2-10B", trust_remote_code=True)# Load model directly from transformers import AutoModelForSpeechSeq2Seq model = AutoModelForSpeechSeq2Seq.from_pretrained("MERaLiON/MERaLiON-2-10B", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
Update vLLM link to PyPI and remove bundled vllm_plugin folder
#4
by YingxuHe - opened
The vllm-plugin-meralion2 package is now published on PyPI:
https://pypi.org/project/vllm-plugin-meralion2/
Changes:
- Updated vLLM link in README to point to PyPI instead of the bundled folder
- Removed the vllm_plugin_meralion2/ folder (now available via
pip install vllm-plugin-meralion2)
YingxuHe changed pull request status to merged