File size: 908 Bytes
6ed7d0f
089be28
6ed7d0f
089be28
6ed7d0f
089be28
6ed7d0f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
# Data for Paper: *Dynamic Vocabularies for Learned Sparse Retrieval with Entities*

This guide explains how to download the data used in our paper.

---

## Setup Instructions

1. **Clone the DyVo repository**
   ```
   git clone https://github.com/thongnt99/DyVo
   ```

2. **Create a data directory inside the project**
   ```
   cd DyVo
   mkdir dyvo_data
   cd dyvo_data
   ```

3. **Download the data from Hugging Face**

   Make sure you have the Hugging Face CLI installed. If not, install it with:
   ```
   pip install huggingface_hub
   ```

   Then run:
   ```
   huggingface-cli download lsr42/dyvo_data
   ```

---

## Notes

- You may need to log in to Hugging Face before downloading:
  ```
  huggingface-cli login
  ```
- The downloaded files will be stored locally; check the Hugging Face CLI documentation for cache settings if needed.
- It is recommended to use Python 3.7 or later.

---