File size: 1,886 Bytes
2813c34
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
---
license: mit
task_categories:
- video-text-to-text
- question-answering
language:
- en
size_categories:
- 1K<n<10K
---

# LiFT: Leveraging Human Feedback for Text-to-Video Model Alignment

## Summary
This is the dataset proposed in our paper "LiFT: Leveraging Human Feedback for Text-to-Video Model Alignment". LiFT-HRA is a high-quality Human Preference Annotation dataset that can be used to train video-text-to-text reward models. All videos in the LiFT-HRA dataset have resolutions of at least 512×512.

Project: https://codegoat24.github.io/LiFT/

Code: https://github.com/CodeGoat24/LiFT

## Directory
```
DATA_PATH
└─ LiFT-HRA-data.json
└─ videos
    └─ HRA_part0.zip
    └─ HRA_part1.zip
    └─ HRA_part2.zip
```

## Usage
### Installation

1. Clone the github repository and navigate to LiFT folder
```bash
git clone https://github.com/CodeGoat24/LiFT.git
cd LiFT
```
2. Install packages
```
bash ./environment_setup.sh lift
```

### Training

**Dataset**

Please download this LiFT-HRA dataset and put it under `./dataset` directory. The data structure is like this:
```
dataset
├── LiFT-HRA
│  ├── LiFT-HRA-data.json
│  ├── videos
```

**Training**

LiFT-Critic-13b
```bash
bash LiFT_Critic/train/train_critic_13b.sh
```
LiFT-Critic-40b
```bash
bash LiFT_Critic/train/train_critic_40b.sh
```


## Model Weights
We provide pre-trained model weights LiFT-Critic on our LiFT-HRA dataset. Please refer to [here](https://huggingface.co/collections/Fudan-FUXI/lift-6756e628d83c390221e02857).


## Citation
If you find our dataset helpful, please cite our paper.

```bibtex
@article{LiFT,
  title={LiFT: Leveraging Human Feedback for Text-to-Video Model Alignment.},
  author={Wang, Yibin and Tan, Zhiyu, and Wang, Junyan and Yang, Xiaomeng and Jin, Cheng and Li, Hao},
  journal={arXiv preprint arXiv:2412.04814},
  year={2024}
}
```