| --- |
| library_name: transformers |
|
|
| language: |
| - en |
| tags: |
| - ppg |
| - multimodal |
| - health |
| - qwen |
| - physiology |
| - biosignal |
| pipeline_tag: text-generation |
| base_model: Qwen/Qwen2.5-7B-Instruct |
| datasets: |
| - Manhph2211/PulseLM |
| --- |
| |
| <div align="center" style="font-size: 2em;"> |
| <strong>PulseLM: A Foundation Dataset and Benchmark for PPG-Text Learning</strong> |
| </div> |
|
|
| <div align="center"> |
| <a href="https://github.com/manhph2211/PulseLM/"><img src="https://img.shields.io/badge/Website WebPage-blue?style=for-the-badge"></a> |
| <a href="https://huggingface.co/datasets/Manhph2211/PulseLM"><img src="https://img.shields.io/badge/Dataset-%F0%9F%A4%97%20Hugging%20Face-White?style=for-the-badge"></a> |
| <a href="https://huggingface.co/Manhph2211/PulseLM"><img src="https://img.shields.io/badge/Checkpoint-%F0%9F%A4%97%20Hugging%20Face-White?style=for-the-badge"></a> |
| </div> |
|
|
| <!-- <div align="center"> |
| <a href="https://github.com/manhph2211/" target="_blank">Hung Manh Pham*</a>   |
| <a href="" target="_blank">Jinyang Wu*</a>   |
| <a href="" target="_blank">Xiao Ma</a>   |
| <a href="" target="_blank">Yiming Zhang</a>   |
| <a href="" target="_blank">Yixin Xu</a>   |
| <a href="https://aqibsaeed.github.io/" target="_blank">Aaqib Saeed</a>   |
| <a href="" target="_blank">Bin Zhu†</a>   |
| <a href="" target="_blank">Zhou Pan†</a>   |
| <a href="https://www.dongma.info/" target="_blank">Dong Ma†</a> |
| </div> --> |
| <!-- <br> |
| <div align="center"> |
| <em>* Equal contribution † Corresponding authors</em> |
| </div> --> |
|
|
| ## Quick Start |
|
|
| ```python |
| # transformers>=4.46.0 accelerate>=1.0.1 peft>=0.13.2 safetensors |
| from transformers import AutoModelForCausalLM, AutoTokenizer |
| import torch |
| |
| tokenizer = AutoTokenizer.from_pretrained("Manhph2211/PulseLM", trust_remote_code=True) |
| model = AutoModelForCausalLM.from_pretrained( |
| "Manhph2211/PulseLM", |
| trust_remote_code=True, |
| torch_dtype=torch.bfloat16, |
| device_map="auto" |
| ) |
| ``` |
|
|