keentomato commited on
Commit
3411b46
·
verified ·
1 Parent(s): ba0f381

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +108 -1
README.md CHANGED
@@ -7,6 +7,113 @@ sdk: static
7
  pinned: false
8
  ---
9
 
10
- Edit this `README.md` markdown file to author your organization card.
11
 
 
12
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  pinned: false
8
  ---
9
 
10
+ # Human Behavior Atlas Resources
11
 
12
+ This repository hosts the official models and datasets released as part of the Human Behavior Atlas (HBA) project — a benchmark and foundation model ecosystem for unified multimodal social behavior understanding and reasoning.
13
 
14
+ The resources include:
15
+ - Unified behavioral foundation models
16
+ - Specialized downstream behavioral adapters
17
+ - Supervised fine-tuning checkpoints
18
+ - The Human Behavior Atlas benchmark datasets
19
+
20
+ ---
21
+
22
+ # Models
23
+
24
+ ## [OmniSapiens 2.0](https://huggingface.co/HumanBehaviorAtlas/OmniSapiens2.0)
25
+
26
+ **Repository:** `HumanBehaviorAtlas/OmniSapiens2.0`
27
+
28
+ **OmniSapiens 2.0** is the latest and strongest OmniSapiens foundation model for multimodal social behavior reasoning. The model is trained using **Heterogeneity-Aware Relative Policy Optimization (HARPO)** on the Human Behavior Atlas benchmark, enabling more balanced and consistent learning across diverse behavioral tasks and domains.
29
+
30
+ The model supports unified reasoning over:
31
+ - Emotion understanding
32
+ - Humor detection
33
+ - Sarcasm understanding
34
+ - Sentiment analysis
35
+ - Social reasoning
36
+ - Behavioral interpretation
37
+
38
+ This model represents the current state-of-the-art OmniSapiens release.
39
+
40
+ ---
41
+
42
+ ## [OmniSapiens SFT](https://huggingface.co/HumanBehaviorAtlas/omnisapiens_sft)
43
+
44
+ **Repository:** `HumanBehaviorAtlas/omnisapiens_sft`
45
+
46
+ **OmniSapiens SFT** is the supervised fine-tuned version of OmniSapiens trained on Human Behavior Atlas tasks using classification and QA-style supervision.
47
+
48
+ This model serves as:
49
+ - The supervised baseline prior to reasoning-RL training
50
+ - The initialization model for subsequent RL-based OmniSapiens variants
51
+ - A unified multimodal behavioral understanding model
52
+
53
+ ---
54
+
55
+ ## [BAM — Humour Detection Adapter](https://huggingface.co/HumanBehaviorAtlas/omnisapiens_bam_humour_detection)
56
+
57
+ **Repository:** `HumanBehaviorAtlas/omnisapiens_bam_humour_detection`
58
+
59
+ A specialized **Behavioral Adapter Module (BAM)** trained for multimodal humor detection tasks.
60
+
61
+ This adapter is designed for downstream humor understanding applications while retaining the broader OmniSapiens behavioral representations.
62
+
63
+ ---
64
+
65
+ ## [BAM — Sarcasm Detection Adapter](https://huggingface.co/HumanBehaviorAtlas/omnisapiens_bam_sarcasm_detection)
66
+
67
+ **Repository:** `HumanBehaviorAtlas/omnisapiens_bam_sarcasm_detection`
68
+
69
+ A specialized **Behavioral Adapter Module (BAM)** optimized for sarcasm detection and sarcastic intent understanding across multimodal behavioral inputs.
70
+
71
+ ---
72
+
73
+ ## [BAM — Sentiment Polarity (MOSEI) Adapter](https://huggingface.co/HumanBehaviorAtlas/omnisapiens_bam_sentiment_polarity_mosei)
74
+
75
+ **Repository:** `HumanBehaviorAtlas/omnisapiens_bam_sentiment_polarity_mosei`
76
+
77
+ A specialized **Behavioral Adapter Module (BAM)** trained for sentiment polarity prediction on the MOSEI benchmark.
78
+
79
+ The adapter supports multimodal sentiment understanding using behavioral and expressive cues.
80
+
81
+ ---
82
+
83
+ # Datasets
84
+
85
+ ## [Human Behavior Atlas (Parquet Version)](https://huggingface.co/datasets/HumanBehaviorAtlas/human_behavior_atlas)
86
+
87
+ **Repository:** `HumanBehaviorAtlas/human_behavior_atlas`
88
+
89
+ The primary release of the **Human Behavior Atlas (HBA)** benchmark.
90
+
91
+ This version is distributed in **Parquet format**, which is generally easier and faster to use with the Hugging Face `datasets` library and most downstream training pipelines.
92
+
93
+ The benchmark contains diverse multimodal behavioral tasks spanning:
94
+ - Emotion recognition
95
+ - Humor understanding
96
+ - Sarcasm detection
97
+ - Sentiment analysis
98
+ - Intent reasoning
99
+ - Social reasoning
100
+ - Mental health related behavioral understanding
101
+
102
+
103
+ ---
104
+
105
+ ## [Human Behavior Atlas (TAR Version)](https://huggingface.co/datasets/HumanBehaviorAtlas/human_behavior_atlas_tar)
106
+
107
+ **Repository:** `HumanBehaviorAtlas/human_behavior_atlas_tar`
108
+
109
+ An alternative release of the Human Behavior Atlas benchmark distributed in **TAR file format**.
110
+
111
+ This version may be useful for:
112
+ - Custom preprocessing pipelines
113
+ - Streaming-based workflows
114
+ - Manual media extraction
115
+ - Large-scale storage systems
116
+
117
+ Most users may find the Parquet release (`human_behavior_atlas`) easier to download and integrate directly into training workflows.
118
+
119
+ ---