Add library name, pipeline tag, and links to paper and code
#1
by nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,18 +1,25 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
| 2 |
language: en
|
| 3 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
| 4 |
tags:
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
datasets:
|
| 11 |
-
- keentomato/human_behavior_atlas
|
| 12 |
---
|
| 13 |
|
| 14 |
# OmniSapiens BAM — Sarcasm Detection
|
| 15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
Fine-tuned [Qwen2.5-Omni-7B](https://huggingface.co/Qwen/Qwen2.5-Omni-7B) for multimodal sarcasm detection on the MUStARD/MMSD benchmark. Uses LoRA adapters merged into the backbone and a lightweight classification head.
|
| 17 |
|
| 18 |
## Benchmark
|
|
@@ -165,4 +172,4 @@ with torch.no_grad():
|
|
| 165 |
|
| 166 |
label_name = global_classes[domain][pred_idx]["label"]
|
| 167 |
print(f"Predicted {domain}: {label_name}")
|
| 168 |
-
```
|
|
|
|
| 1 |
---
|
| 2 |
+
datasets:
|
| 3 |
+
- keentomato/human_behavior_atlas
|
| 4 |
language: en
|
| 5 |
license: apache-2.0
|
| 6 |
+
library_name: transformers
|
| 7 |
+
pipeline_tag: any-to-any
|
| 8 |
+
base_model: Qwen/Qwen2.5-Omni-7B
|
| 9 |
tags:
|
| 10 |
+
- human-behavior
|
| 11 |
+
- multimodal
|
| 12 |
+
- qwen2.5-omni
|
| 13 |
+
- sarcasm-detection
|
| 14 |
+
- sarcasm
|
|
|
|
|
|
|
| 15 |
---
|
| 16 |
|
| 17 |
# OmniSapiens BAM — Sarcasm Detection
|
| 18 |
|
| 19 |
+
This repository contains the fine-tuned model for sarcasm detection as presented in the paper [OmniSapiens: A Foundation Model for Social Behavior Processing via Heterogeneity-Aware Relative Policy Optimization](https://huggingface.co/papers/2602.10635).
|
| 20 |
+
|
| 21 |
+
**Code:** [MIT-MI/human_behavior_atlas](https://github.com/MIT-MI/human_behavior_atlas)
|
| 22 |
+
|
| 23 |
Fine-tuned [Qwen2.5-Omni-7B](https://huggingface.co/Qwen/Qwen2.5-Omni-7B) for multimodal sarcasm detection on the MUStARD/MMSD benchmark. Uses LoRA adapters merged into the backbone and a lightweight classification head.
|
| 24 |
|
| 25 |
## Benchmark
|
|
|
|
| 172 |
|
| 173 |
label_name = global_classes[domain][pred_idx]["label"]
|
| 174 |
print(f"Predicted {domain}: {label_name}")
|
| 175 |
+
```
|