Pravallika6/hit_dataset_grouped
收藏Hugging Face2026-03-24 更新2026-03-29 收录
下载链接:
https://hf-mirror.com/datasets/Pravallika6/hit_dataset_grouped
下载链接
链接失效反馈官方服务:
资源简介:
---
configs:
- config_name: default
data_files:
- split: train
path: train.parquet
- split: validation
path: val.parquet
- split: test
path: test.parquet
---
# HiT Grouped Dataset
Grouped (child, parents, negatives) training data for cone-loss HiT training.
## Columns
- `child` — question or trigger observation text
- `parent_1 parent_2 parent_3` — all true parent texts (padded by repeating last if fewer than 3)
- `negative_1 negative_2 negative_3 negative_4 negative_5 negative_6 negative_7 negative_8` — sampled negative texts from same-depth pool
## Structure
Built from the full alternating hierarchy:
```
depth 0 explanations
depth 0.5 questions
depth 1 explanations (trigger observations for depth-0.5 questions)
depth 1.5 questions
depth 2 explanations
depth 2.5 questions
depth 3 explanations
```
Two edge types per row:
- **answer edges**: child=question, parents=explanations at depth n
- **trigger edges**: child=explanation, parents=questions at depth n
## Usage
```python
HierarchyTransformerLoss(n_parents=3, n_negatives=8)
```
提供机构:
Pravallika6



