Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,30 @@
|
|
1 |
-
# WebLINX: Real-World Website Navigation with Multi-Turn Dialogue
|
2 |
|
3 |
-
*Xing Han
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# [WebLINX: Real-World Website Navigation with Multi-Turn Dialogue](https://mcgill-nlp.github.io/weblinx)
|
2 |
|
3 |
+
*Xing Han Lù, Zdeněk Kasner, Siva Reddy*
|
4 |
+
|
5 |
+
|
6 |
+
## Quickstart
|
7 |
+
|
8 |
+
To get started, simply install `datasets` with `pip install datasets` and load the chat data splits:
|
9 |
+
|
10 |
+
```python
|
11 |
+
from datasets import load_dataset
|
12 |
+
|
13 |
+
# Load the training, validation and test (IID) splits
|
14 |
+
train = load_dataset("McGill-NLP/weblinx", "train")
|
15 |
+
val = load_dataset("McGill-NLP/weblinx", "valid")
|
16 |
+
test = load_dataset("McGill-NLP/weblinx", "test")
|
17 |
+
|
18 |
+
# Load one of the 4 out-of-domain splits (web, vis, geo, cat)
|
19 |
+
ood = load_dataset("McGill-NLP/weblinx", "web")
|
20 |
+
```
|
21 |
+
|
22 |
+
## Raw Data
|
23 |
+
|
24 |
+
To use the raw data, you will need to use the `huggingface_hub`:
|
25 |
+
|
26 |
+
```python
|
27 |
+
from huggingface_hub import snapshot_download
|
28 |
+
|
29 |
+
snapshot_download(repo_id="McGill-NLP/WebLINX", repo_type="dataset", local_dir="./data/webtasks")
|
30 |
+
```
|