Add audio-text-to-text pipeline tag (#3)
Browse files- Add audio-text-to-text pipeline tag (b285b538396664f7d54200d2787690aa99146886)
Co-authored-by: Niels Rogge <nielsr@users.noreply.huggingface.co>
README.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
| 1 |
---
|
| 2 |
-
license: apache-2.0
|
| 3 |
library_name: transformers
|
|
|
|
| 4 |
tags: []
|
|
|
|
| 5 |
---
|
| 6 |
|
| 7 |
# R1-AQA --- Reinforcement Learning Outperforms Supervised Fine-Tuning: A Case Study on Audio Question Answering
|
|
@@ -74,5 +75,4 @@ generated_ids = generated_ids[:, inputs.input_ids.size(1):]
|
|
| 74 |
response = processor.batch_decode(generated_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)
|
| 75 |
|
| 76 |
print(response)
|
| 77 |
-
```
|
| 78 |
-
|
|
|
|
| 1 |
---
|
|
|
|
| 2 |
library_name: transformers
|
| 3 |
+
license: apache-2.0
|
| 4 |
tags: []
|
| 5 |
+
pipeline_tag: audio-text-to-text
|
| 6 |
---
|
| 7 |
|
| 8 |
# R1-AQA --- Reinforcement Learning Outperforms Supervised Fine-Tuning: A Case Study on Audio Question Answering
|
|
|
|
| 75 |
response = processor.batch_decode(generated_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)
|
| 76 |
|
| 77 |
print(response)
|
| 78 |
+
```
|
|
|